File tree Expand file tree Collapse file tree 2 files changed +11
-10
lines changed
activerecord/lib/active_record/connection_adapters Expand file tree Collapse file tree 2 files changed +11
-10
lines changed Original file line number Diff line number Diff line change 1
- source ' http://rubygems.org'
1
+ source " http://rubygems.org"
2
2
3
3
gemspec
4
4
35
35
36
36
platforms :mri_19 do
37
37
# TODO: Remove the conditional when ruby-debug19 supports Ruby >= 1.9.3
38
- gem "ruby-debug19" , :require => ' ruby-debug' if RUBY_VERSION < "1.9.3"
38
+ gem "ruby-debug19" , :require => " ruby-debug" if RUBY_VERSION < "1.9.3"
39
39
end
40
40
41
41
platforms :ruby do
42
42
if ENV [ "RB_FSEVENT" ]
43
- gem ' rb-fsevent'
43
+ gem " rb-fsevent"
44
44
end
45
- gem ' json'
46
- gem ' yajl-ruby'
45
+ gem " json"
46
+ gem " yajl-ruby"
47
47
gem "nokogiri" , ">= 1.4.4"
48
48
49
49
group :test do
50
- gem 'ruby-prof'
50
+ gem "ruby-prof" if RUBY_VERSION < "1.9.3"
51
+
51
52
end
52
53
# AR
53
54
gem "sqlite3" , "~> 1.3.3"
54
55
55
56
group :db do
56
57
gem "pg" , ">= 0.11.0"
57
58
gem "mysql" , ">= 2.8.1"
58
- gem "mysql2" , ">= 0.3.4 "
59
+ gem "mysql2" , ">= 0.3.5 "
59
60
end
60
61
end
61
62
78
79
# gems that are necessary for ActiveRecord tests with Oracle database
79
80
if ENV [ 'ORACLE_ENHANCED_PATH' ] || ENV [ 'ORACLE_ENHANCED' ]
80
81
platforms :ruby do
81
- gem ' ruby-oci8' , ">= 2.0.4"
82
+ gem " ruby-oci8" , ">= 2.0.4"
82
83
end
83
84
if ENV [ 'ORACLE_ENHANCED_PATH' ]
84
- gem ' activerecord-oracle_enhanced-adapter' , :path => ENV [ 'ORACLE_ENHANCED_PATH' ]
85
+ gem " activerecord-oracle_enhanced-adapter" , :path => ENV [ 'ORACLE_ENHANCED_PATH' ]
85
86
else
86
87
gem "activerecord-oracle_enhanced-adapter" , :git => "git://github.com/rsim/oracle-enhanced.git"
87
88
end
Original file line number Diff line number Diff line change 1
1
# encoding: utf-8
2
2
3
- gem 'mysql2' , '~> 0.3.4 '
3
+ gem 'mysql2' , '~> 0.3.5 '
4
4
require 'mysql2'
5
5
6
6
module ActiveRecord
You can’t perform that action at this time.
0 commit comments