forked from NUBIC/bcdatabase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
27 lines (22 loc) · 843 Bytes
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
source "http://rubygems.org"
gemspec
# for testing against different major releases of ActiveSupport
if ENV['ACTIVESUPPORT_VERSION']
version = case ENV['ACTIVESUPPORT_VERSION']
when /2.3$/ then '~> 2.3.0'
when /3.0$/ then '~> 3.0.0'
when /3.1$/ then '~> 3.1.0'
when /3.2$/ then '~> 3.2.0'
else raise "Unsupported ActiveSupport version #{ENV['ACTIVESUPPORT_VERSION']}"
end
gem 'activesupport', version
end
group :development do
# For yard's markdown support
platforms :jruby do; gem 'maruku'; end
platforms :ruby_18, :ruby_19 do; gem 'rdiscount'; end
end
# This is specified here rather than in the gemspec so as not to have
# to release multiple versions of the gem. The requirement is
# documented in the README.
gem 'jruby-openssl', :platform => 'jruby'