Sha256: 40d848c82001d1e708f8c11f1f97d1cebb2b221a9cd136b8adace253dfdea8a4
Contents?: true
Size: 1.03 KB
Versions: 2
Compression:
Stored size: 1.03 KB
Contents
source "http://rubygems.org" # Declare your gem's dependencies in axlsx_rails.gemspec. # Bundler will treat runtime dependencies like base dependencies, and # development dependencies will be added by default to the :development group. gemspec ENV["RAILS_VERSION"] ||= '4.2' case ENV['RAILS_VERSION'] when '5.0' gem 'rails', "~> 5.0.0" gem 'responders', '~> 2.0' when '4.2' gem 'rails', "~> 4.2.0" gem 'responders', '~> 2.0' when '4.1' gem 'rails', "~> 4.1.0" when '4.0' gem 'rails', "~> 4.0.0" when '3.1', '3.2' gem 'rails', "~> #{ENV['RAILS_VERSION']}.0" end # jquery-rails is used by the dummy application gem "jquery-rails" gem "thin" # Declare any dependencies that are still in development here instead of in # your gemspec. These might include edge Rails or gems from your path or # Git. Remember to move these dependencies to your gemspec before releasing # your gem to rubygems.org. gem 'acts_as_xlsx', git: 'git://github.com/straydogstudio/acts_as_xlsx.git' gem 'capybara', '~> 2.1' # To use debugger # gem 'pry-debugger'
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
axlsx_rails-0.5.1 | Gemfile |
axlsx_rails-0.5.0 | Gemfile |