forked from CanCanCommunity/cancancan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAppraisals
104 lines (83 loc) · 2.53 KB
/
Appraisals
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
appraise "activerecord_3.2" do
gem "activerecord", "~> 3.2.0", :require => "active_record"
gem "actionpack", "~> 3.2.0", :require => "action_pack"
gemfile.platforms :jruby do
gem "activerecord-jdbcsqlite3-adapter"
gem "jdbc-sqlite3"
end
gemfile.platforms :ruby, :mswin, :mingw do
gem "sqlite3"
end
end
appraise "activerecord_4.0" do
gem "activerecord", "~> 4.0.5", :require => "active_record"
gem "activesupport", "~> 4.0.5", :require => "active_support/all"
gem "actionpack", "~> 4.0.5", :require => "action_pack"
gemfile.platforms :jruby do
gem "activerecord-jdbcsqlite3-adapter"
gem "jdbc-sqlite3"
end
gemfile.platforms :ruby, :mswin, :mingw do
gem "sqlite3"
end
end
appraise "activerecord_4.1" do
gem "activerecord", "~> 4.1.1", :require => "active_record"
gem "activesupport", "~> 4.1.1", :require => "active_support/all"
gem "actionpack", "~> 4.1.1", :require => "action_pack"
gemfile.platforms :jruby do
gem "activerecord-jdbcsqlite3-adapter"
gem "jdbc-sqlite3"
end
gemfile.platforms :ruby, :mswin, :mingw do
gem "sqlite3"
end
end
appraise "activerecord_4.2" do
gem "activerecord", "~> 4.2.0", :require => "active_record"
gem 'activesupport', '~> 4.2.0', :require => 'active_support/all'
gem "actionpack", "~> 4.2.0", :require => "action_pack"
gemfile.platforms :jruby do
gem "activerecord-jdbcsqlite3-adapter"
gem "jdbc-sqlite3"
end
gemfile.platforms :ruby, :mswin, :mingw do
gem "sqlite3"
gem "pg"
end
end
appraise "activerecord_5.0" do
gem "activerecord", "~> 5.0.0.rc1", :require => "active_record"
gem 'activesupport', '~> 5.0.0.rc1', :require => 'active_support/all'
gem "actionpack", "~> 5.0.0.rc1", :require => "action_pack"
gemfile.platforms :jruby do
gem "activerecord-jdbcsqlite3-adapter"
gem "jdbc-sqlite3"
end
gemfile.platforms :ruby, :mswin, :mingw do
gem "sqlite3"
gem "pg"
end
end
appraise "mongoid_2.x" do
gem "activesupport", "~> 3.0", :require => "active_support/all"
gem "actionpack", "~> 3.0", :require => "action_pack"
gem "mongoid", "~> 2.0.0"
gemfile.platforms :ruby, :mswin, :mingw do
gem "bson_ext", "~> 1.1"
end
gemfile.platforms :jruby do
gem "mongo", "~> 1.9.2"
end
end
appraise "sequel_3.x" do
gem "sequel", "~> 3.48.0"
gem "activesupport", "~> 3.0", :require => "active_support/all"
gem "actionpack", "~> 3.0", :require => "action_pack"
gemfile.platforms :jruby do
gem "jdbc-sqlite3"
end
gemfile.platforms :ruby, :mswin, :mingw do
gem "sqlite3"
end
end