File: Gemfile

package info (click to toggle)
ruby-jekyll-data 1.1.1-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 420 kB
  • sloc: ruby: 909; sh: 95; makefile: 10
file content (18 lines) | stat: -rw-r--r-- 580 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# frozen_string_literal: true

source "https://rubygems.org"
gemspec

gem "jekyll", ENV["JEKYLL_VERSION"] if ENV["JEKYLL_VERSION"]

group :test do
  gem "activesupport", "~> 4.2" if RUBY_VERSION < "2.2.2"
  gem "another-test-plugin", :path => File.expand_path("test/fixtures/another-test-plugin", __dir__)
  gem "minitest-profile"
  gem "minitest-reporters"
  gem "rspec"
  gem "rspec-mocks"
  gem "shoulda"
  gem "test-plugin", :path => File.expand_path("test/fixtures/test-plugin", __dir__)
  gem "test-theme", :path => File.expand_path("test/fixtures/test-theme", __dir__)
end