mirror of
https://github.com/moparisthebest/android.moparisthebest.org
synced 2024-11-01 15:55:03 -04:00
23 lines
347 B
Ruby
23 lines
347 B
Ruby
source :rubygems
|
|
gemspec
|
|
|
|
gem 'rake'
|
|
gem 'rdoc'
|
|
|
|
# group :debug do
|
|
# gem 'ruby-debug19'
|
|
# end
|
|
|
|
group :test do
|
|
gem 'guard'
|
|
gem 'guard-rspec'
|
|
gem 'guard-cucumber'
|
|
gem 'fakefs'
|
|
gem 'webmock'
|
|
gem 'aruba', '~> 0.4.11'
|
|
#if we are on travis ci ignore these
|
|
unless ENV["CI"]
|
|
gem 'rb-fsevent'
|
|
gem 'ruby_gntp', '~> 0.3.4'
|
|
end
|
|
end |