Sha256: 4399a2293a6419c31ab1ca9ad2cb9c87c0c68fe87afe3de40bca41aaa8f4fd10

Contents?: true

Size: 1.34 KB

Versions: 3

Compression:

Stored size: 1.34 KB

Contents

source 'http://rubygems.org'

group :development do
  gem 'jeweler', '~> 1.8'
  gem 'rspec', '~> 2.4'
  gem 'rdoc'

  if ENV['RAILS_GEM_VERSION']
    gem 'activerecord', "=#{ENV['RAILS_GEM_VERSION']}"
    gem 'actionpack', "=#{ENV['RAILS_GEM_VERSION']}"
    gem 'activesupport', "=#{ENV['RAILS_GEM_VERSION']}"
    case ENV['RAILS_GEM_VERSION']
    when /^2.0/
      gem 'composite_primary_keys', '=0.9.93'
    when /^2.1/
      gem 'composite_primary_keys', '=1.0.8'
    when /^2.2/
      gem 'composite_primary_keys', '=2.2.2'
    when /^2.3.3/
      gem 'composite_primary_keys', '=2.3.2'
    when /^3/
      gem 'railties', "=#{ENV['RAILS_GEM_VERSION']}"
    end
  else
    %w(activerecord activemodel activesupport actionpack railties).each do |gem_name|
      if ENV['RAILS_GEM_PATH']
        gem gem_name, :path => File.join(ENV['RAILS_GEM_PATH'], gem_name)
      else
        gem gem_name, :git => "git://github.com/rails/rails"
      end
    end

    if ENV['AREL_GEM_PATH']
      gem 'arel', :path => ENV['AREL_GEM_PATH']
    else
      gem 'arel', :git => "git://github.com/rails/arel"
    end

    if ENV['JOURNEY_GEM_PATH']
      gem 'journey', :path => ENV['JOURNEY_GEM_PATH']
    else
      gem "journey", :git => "git://github.com/rails/journey"
    end
  end

  gem 'ruby-plsql', '>=0.4.4'

  platforms :ruby do
    gem 'ruby-oci8', '>=2.0.4'
  end

end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
activerecord-oracle_enhanced-adapter-1.4.3 Gemfile
activerecord-oracle_enhanced-adapter-1.4.3.rc2 Gemfile
activerecord-oracle_enhanced-adapter-1.4.3.rc1 Gemfile