forked from rubyamf/rubyamf
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
33 lines (29 loc) · 718 Bytes
/
Copy pathGemfile
File metadata and controls
33 lines (29 loc) · 718 Bytes
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
source "http://rubygems.org"
gem 'rubyamf', :path => File.dirname(__FILE__)
gem 'rspec', '~>2.13.0'
gem 'rdoc'
gem 'rack', '~>1.0'
gem 'sqlite3'
gem "RocketAMF", :git => "git://github.com/rubyamf/rocketamf.git"
if (RUBY_VERSION.split('.').map(&:to_i) <=> [1, 9]) >= 0
gem 'simplecov'
else
gem 'rcov'
end
case "#{ENV['RAILS_VERSION']}"
when '2.3'
gem 'rails', '~>2.3'
gem 'composite_primary_keys', '~> 2.3'
when '3.0'
gem 'rails', '~>3.0.0'
gem 'composite_primary_keys', '~> 3.1.8'
when '3.1'
gem 'rails', '~>3.1.0'
gem 'composite_primary_keys', '~> 4'
when '3.2'
gem 'rails', '~>3.2.0'
gem 'composite_primary_keys', '~> 5'
else
gem 'rails', '~>4.0'
gem 'composite_primary_keys', '~> 6'
end