@@ -5,13 +5,12 @@ gemspec
5
5
# We need a newish Rake since Active Job sets its test tasks' descriptions.
6
6
gem 'rake' , '>= 10.3'
7
7
8
- # Active Job depends on the URI::GID::MissingModelIDError, which isn't released yet.
8
+ # Active Job depends on URI::GID::MissingModelIDError, which isn't released yet.
9
9
gem 'globalid' , github : 'rails/globalid' , branch : 'master'
10
10
gem 'rack' , github : 'rack/rack' , branch : 'master'
11
11
12
- # This needs to be with require false as it is
13
- # loaded after loading the test library to
14
- # ensure correct loading order
12
+ # This needs to be with require false to ensure correct loading order, as has to
13
+ # be loaded after loading the test library.
15
14
gem 'mocha' , '~> 0.14' , require : false
16
15
17
16
gem 'rack-cache' , '~> 1.2'
@@ -26,15 +25,15 @@ gem 'sprockets-rails', '~> 3.0.0.beta3', github: 'rails/sprockets-rails', branch
26
25
gem 'sass-rails' , github : 'rails/sass-rails' , branch : 'master'
27
26
28
27
# require: false so bcrypt is loaded only when has_secure_password is used.
29
- # This is to avoid ActiveModel (and by extension the entire framework)
28
+ # This is to avoid Active Model (and by extension the entire framework)
30
29
# being dependent on a binary library.
31
30
gem 'bcrypt' , '~> 3.1.10' , require : false
32
31
33
- # This needs to be with require false to avoid
34
- # it being automatically loaded by sprockets
32
+ # This needs to be with require false to avoid it being automatically loaded by
33
+ # sprockets.
35
34
gem 'uglifier' , '>= 1.3.0' , require : false
36
35
37
- # Track stable branch of sass because it doesn't have circular require warnings
36
+ # Track stable branch of sass because it doesn't have circular require warnings.
38
37
gem 'sass' , github : 'sass/sass' , branch : 'stable' , require : false
39
38
40
39
group :doc do
@@ -44,10 +43,10 @@ group :doc do
44
43
gem 'kindlerb' , '0.1.1'
45
44
end
46
45
47
- # ActiveSupport
46
+ # Active Support.
48
47
gem 'dalli' , '>= 2.2.1'
49
48
50
- # ActiveJob
49
+ # Active Job.
51
50
group :job do
52
51
gem 'resque' , require : false
53
52
gem 'resque-scheduler' , require : false
@@ -64,12 +63,12 @@ group :job do
64
63
gem 'sequel' , require : false
65
64
end
66
65
67
- # Add your own local bundler stuff
66
+ # Add your own local bundler stuff.
68
67
local_gemfile = File . dirname ( __FILE__ ) + "/.Gemfile"
69
68
instance_eval File . read local_gemfile if File . exist? local_gemfile
70
69
71
70
group :test do
72
- # FIX: Our test suite isn't ready to run in random order yet
71
+ # FIX: Our test suite isn't ready to run in random order yet.
73
72
gem 'minitest' , '< 5.3.4'
74
73
75
74
platforms :mri do
83
82
platforms :ruby do
84
83
gem 'nokogiri' , '>= 1.6.7.rc3'
85
84
86
- # Needed for compiling the ActionDispatch::Journey parser
85
+ # Needed for compiling the ActionDispatch::Journey parser.
87
86
gem 'racc' , '>=1.4.6' , require : false
88
87
89
- # ActiveRecord
88
+ # Active Record.
90
89
gem 'sqlite3' , '~> 1.3.6'
91
90
92
91
group :db do
@@ -114,19 +113,19 @@ platforms :jruby do
114
113
end
115
114
116
115
platforms :rbx do
117
- # The rubysl-yaml gem doesn't ship with Psych by default
118
- # as it needs libyaml that isn't always available.
116
+ # The rubysl-yaml gem doesn't ship with Psych by default as it needs
117
+ # libyaml that isn't always available.
119
118
gem 'psych' , '~> 2.0'
120
119
end
121
120
122
- # gems that are necessary for ActiveRecord tests with Oracle database
121
+ # Gems that are necessary for Active Record tests with Oracle.
123
122
if ENV [ 'ORACLE_ENHANCED' ]
124
123
platforms :ruby do
125
124
gem 'ruby-oci8' , '~> 2.2'
126
125
end
127
126
gem 'activerecord-oracle_enhanced-adapter' , github : 'rsim/oracle-enhanced' , branch : 'master'
128
127
end
129
128
130
- # A gem necessary for ActiveRecord tests with IBM DB
129
+ # A gem necessary for Active Record tests with IBM DB.
131
130
gem 'ibm_db' if ENV [ 'IBM_DB' ]
132
131
gem 'tzinfo-data' , platforms : [ :mingw , :mswin , :x64_mingw , :jruby ]
0 commit comments