-
HIGUCHI Daisuke (VDR dai) authoredHIGUCHI Daisuke (VDR dai) authored
This project manages its dependencies using Bundler.
Learn more
Gemfile 955 B
# A sample Gemfile
source 'https://rubygems.org'
def activerecord?
adapter.nil? || adapter == 'activerecord'
end
def datamapper?
adapter == 'datamapper'
end
def mongoid?
if RUBY_VERSION > '1.8.x'
adapter == 'mongoid'
else
puts 'Mongoid requires Ruby higher than 1.8.x'
end
end
def adapter
ENV['ADAPTER']
end
group :development do
# Standard gems across gemfiles
gem 'jeweler', '2.3.7'
gem 'travis-lint', '1.7.0'
# Can I state that I really dislike camelcased gem names?
gem 'RedCloth', '4.2.9'
gem 'sqlite3', '1.3.10'
gem 'test-unit', '3.0.9'
if activerecord?
gem 'activerecord', '5.1.4'
end
if datamapper?
gem 'dm-core', '1.2.1'
gem 'dm-migrations', '1.2.0'
gem 'dm-sqlite-adapter', '1.2.0'
gem 'dm-validations', '1.2.0'
end
if mongoid?
gem 'mongoid', '3.1.6'
gem 'i18n', '0.6.1'
else
# Everyone else can get the most up-to-date I18n
gem 'i18n', '0.7.0'
end
end