forked from cforce/redmine_charts
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Gemfile.local
43 lines (41 loc) · 989 Bytes
/
Gemfile.local
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
chiliproject_file = File.dirname(__FILE__) + "/lib/chili_project.rb"
chiliproject = File.file?(chiliproject_file)
deps = Hash.new
@dependencies.map{|dep| deps[dep.name] = dep }
rails3 = Gem::Dependency.new('rails', '~>3.0')
RAILS_VERSION_IS_3 = rails3 =~ deps['rails']
group :test do
if RAILS_VERSION_IS_3
gem "rspec"
gem "rspec-rails"
else
gem 'capybara', '~> 1'
gem "rspec", "=1.3.1"
gem "rspec-rails", "=1.3.3"
end
platforms :mri_19, :mri_20, :mingw_19, :mingw_20 do
gem "simplecov"
gem "simplecov-rcov"
end
platforms :mri_18, :mingw_18 do
gem "rcov", "=0.9.11"
end
gem 'timecop'
end
group :development do
gem 'jeweler'
gem 'spork'
gem 'guard'
gem 'guard-rspec'
gem 'guard-spork'
platforms :mri do
gem 'rb-fsevent', '~> 0.9.1'
gem 'terminal-notifier-guard'
end
platforms :mingw do
gem 'rb-fchange'
gem 'wdm'
gem 'win32console'
gem 'rb-notifu'
end
end