activerecord-collation 0.0.3 → 0.0.4
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 +12 -0
- data/lib/active_record/collation/schema_statements.rb +1 -1
- data/lib/active_record/collation/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 19caa690f9cdcda4843b050d3198b615f3deadb02eaabbce0b41a79de790f3c5
|
|
4
|
+
data.tar.gz: 578b13518517a24792323cfb465c4c25b3b0984b0fd015335c1e117a0685246a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e97fc7ecd7ed660aa0598e6aac5b99805fc543208bfebe5449416c30fd1971c0f9c4b5ca893be225d2fd04920264231bc522a31e38e860248c66cf73c148c7c6
|
|
7
|
+
data.tar.gz: a30cfb063e46c9addbf1ffaaf0a5d4dbaa86eb96f66472e86a0e6c722b6f48b80b1b715831db41d71fbdba7d13f7bcb35061369db4f8e1a0f751a1a272c9e751
|
data/README.md
CHANGED
|
@@ -50,6 +50,18 @@ Arel::Nodes::InfixOperation.new(
|
|
|
50
50
|
Run tests in this repository with `rake`. Migrations are exercised by running them in the dummy application.
|
|
51
51
|
|
|
52
52
|
```
|
|
53
|
+
bundle install
|
|
54
|
+
cd test/dummy
|
|
55
|
+
rm -f db/schema.rb && RAILS_ENV=test bundle exec rake db:drop db:create db:migrate
|
|
56
|
+
cd ../../
|
|
57
|
+
bundle exec rake
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
If you also want to verify running tests on Rails Edge, you can set `BUNDLE_GEMFILE` and run everything again. Otherwise could technically also rely on GitHub Actions to run this for you.
|
|
61
|
+
|
|
62
|
+
```
|
|
63
|
+
export BUNDLE_GEMFILE=$(pwd)/Gemfile.edge
|
|
64
|
+
bundle install
|
|
53
65
|
cd test/dummy
|
|
54
66
|
rm -f db/schema.rb && RAILS_ENV=test bundle exec rake db:drop db:create db:migrate
|
|
55
67
|
cd ../../
|