active_record_migrations 5.0.0.0.pre.optimistic → 5.0.0.1.pre.optimistic
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/lib/active_record_migrations.rb +4 -0
- data/lib/active_record_migrations/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0c2328cd7436b833ea5792737def813f1ccf6f61
|
4
|
+
data.tar.gz: 198fa286927c074400dcaa3df32b9ed16aa1fd11
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ecc7b2ed0818f9e7ce96b3c24f057a569092b6febd1ac23668152b093a0fd868ef99fed966a7f37b1bdc9a1c0689204e562da08b8a507da9a320d04e317de900
|
7
|
+
data.tar.gz: 1c38744b93d9ebd6ce8563667a6aa8b655e19fd996cc45a86a2130676c9ec7385bbf73934b22c8144b77d31ae8f32c71a2539f7ccb64654ea2cad73f9a62573e
|
data/README.md
CHANGED
@@ -14,7 +14,7 @@ with conflicts.
|
|
14
14
|
|
15
15
|
Add this line to your application's Gemfile (run `bundle init` if you don't have one):
|
16
16
|
|
17
|
-
gem 'active_record_migrations', '5.0.0.
|
17
|
+
gem 'active_record_migrations', '5.0.0.1.pre.optimistic'
|
18
18
|
gem 'sqlite3' # or 'pg', 'mysql2', ...
|
19
19
|
|
20
20
|
And then execute:
|
@@ -5,6 +5,10 @@ require 'rails'
|
|
5
5
|
require 'rails/application'
|
6
6
|
require 'active_record_migrations/configurations'
|
7
7
|
|
8
|
+
# those requires are missing from AR but are required:
|
9
|
+
require 'zlib'
|
10
|
+
require 'digest'
|
11
|
+
|
8
12
|
module ActiveRecordMigrations
|
9
13
|
include ActiveRecord::Tasks
|
10
14
|
|