forked from duritong/trocla
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
50 lines (45 loc) · 1021 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
source "http://rubygems.org"
# Add dependencies required to use your gem here.
# Example:
# gem "activesupport", ">= 2.3.5"
if RUBY_VERSION.to_f <= 2.2
gem 'rack', '< 2.0'
end
if RUBY_VERSION.to_f < 2.1
gem 'nokogiri', '< 1.7'
end
if RUBY_VERSION.to_f > 1.8
gem "moneta"
gem "highline"
else
gem "moneta", "~> 0.7.20"
gem "highline", "~> 1.6.2"
gem 'rake', '< 11'
gem 'git', '< 1.3'
end
if defined?(RUBY_ENGINE) && (RUBY_ENGINE == 'jruby')
gem 'jruby-openssl'
end
gem "bcrypt"
# Add dependencies to develop your gem here.
# Include everything needed to run rake, tests, features, etc.
group :development do
if RUBY_VERSION.to_f > 1.8
gem "rspec"
gem "rdoc"
if RUBY_VERSION.to_f < 2.2
gem 'jeweler', '< 2.2'
else
gem "jeweler"
end
if RUBY_VERSION.to_f < 2.0
gem 'public_suffix', '~> 1.4.6'
end
else
gem "rspec", "~> 2.4"
gem "rdoc", "~> 3.8"
gem "jeweler", "~> 1.6"
gem "addressable", "~> 2.3.8"
end
gem 'rspec-pending_for'
end