@@ -117,8 +117,8 @@ Proceed as with Rails; specify `ActiveRecord` in your Bundle along with the
117
117
chosen JDBC adapter(s), this time sample *Gemfile* for MySQL :
118
118
119
119
` ` ` ruby
120
- gem 'activerecord', '~> 5 .0.6 '
121
- gem 'activerecord-jdbcmysql-adapter', :platform => :jruby
120
+ gem 'activerecord', '~> 6 .0.3 '
121
+ gem 'activerecord-jdbcmysql-adapter', '~> 60.2', :platform => :jruby
122
122
` ` `
123
123
124
124
When you `require 'bundler/setup'` everything will be set up for you as expected.
@@ -127,13 +127,13 @@ When you `require 'bundler/setup'` everything will be set up for you as expected
127
127
128
128
Install the needed gems with JRuby, for example :
129
129
130
- gem install activerecord -v "~> 5 .0.6 "
131
- gem install activerecord-jdbc-adapter --ignore-dependencies
130
+ gem install activerecord -v "~> 6 .0.3 "
131
+ gem install activerecord-jdbc-adapter -v "~> 60.2" - -ignore-dependencies
132
132
133
133
If you wish to use the adapter for a specific database, you can install it
134
134
directly and the (jdbc-) driver gem (dependency) will be installed as well :
135
135
136
- jruby -S gem install activerecord-jdbcmysql-adapter
136
+ jruby -S gem install activerecord-jdbcmysql-adapter -v "~> 60.2"
137
137
138
138
Your program should include :
139
139
@@ -173,7 +173,7 @@ ask on the #JRuby IRC channel on http://freenode.net/ (try [web-chat][6]).
173
173
This project was originally written by [Nick Sieger](http://github.com/nicksieger)
174
174
and [Ola Bini](http://github.com/olabini) with lots of help from the JRuby community.
175
175
Polished 3.x compatibility and 4.x support (for AR-JDBC >= 1.3.0) was managed by
176
- [Karol Bucek](http://github.com/kares) among others. Support for Rails 6 was
176
+ [Karol Bucek](http://github.com/kares) among others. Support for Rails 6.0 and 6.1 was
177
177
contributed by [shellyBits GmbH](https://shellybits.ch/)
178
178
179
179
# # License
0 commit comments