forked from rsim/oracle-enhanced
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
52 lines (45 loc) · 1.34 KB
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
source 'http://rubygems.org'
group :development do
gem 'jeweler', '~> 1.5.1'
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