mirror of
https://github.com/moparisthebest/android.moparisthebest.org
synced 2024-10-31 23:35:00 -04:00
23 lines
325 B
Ruby
23 lines
325 B
Ruby
source :rubygems
|
|
gemspec
|
|
|
|
group :debug do
|
|
gem 'ruby-debug19'
|
|
end
|
|
|
|
group :test do
|
|
gem 'guard'
|
|
gem 'guard-rspec'
|
|
gem 'guard-cucumber'
|
|
|
|
gem 'fakefs', git:'git://github.com/defunkt/fakefs.git'
|
|
|
|
#if we are on travis ci ignore these
|
|
unless ENV["CI"]
|
|
gem 'rb-fsevent'
|
|
gem 'ruby_gntp', '~> 0.3.4'
|
|
end
|
|
end
|
|
|
|
|