Sha256: a67f6ebda0aae013b40d40ef6b172d8b628e07c5c332671214ff69fb9a536472

Contents?: true

Size: 366 Bytes

Versions: 5

Compression:

Stored size: 366 Bytes

Contents

# This DRYs up the Gemfiles of our test applications.

def shared_test_application_gems(bundler)
  bundler.instance_eval do
    gem 'rails', '>= 3.0.0'
    gem 'sqlite3-ruby', :require => 'sqlite3'
    gem 'tabulous', :path => "../../.."
    group :test do
      gem 'capybara'
      gem 'launchy'
      gem 'redgreen' unless RUBY_VERSION >= "1.9"
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
tabulous-1.0.2 test/test_application_gemfile.rb
tabulous-1.0.1 test/test_application_gemfile.rb
tabulous-1.0.0 test/test_application_gemfile.rb
tabulous-0.0.2 test/test_application_gemfile.rb
tabulous-0.0.1 test/test_application_gemfile.rb