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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4030382ddc37e42c183e0c718597e127a923626e33d4d20d1454ee79523b8980
4
- data.tar.gz: eb336c834feab12f38a41283acf6c35ed379fcdb3a8ba55ed3b4b9887094debd
3
+ metadata.gz: 19caa690f9cdcda4843b050d3198b615f3deadb02eaabbce0b41a79de790f3c5
4
+ data.tar.gz: 578b13518517a24792323cfb465c4c25b3b0984b0fd015335c1e117a0685246a
5
5
  SHA512:
6
- metadata.gz: 566a00cac7e367909daa3b196f7b9dc7308151f176ed73d880746cb96066914126543ac693e4c5f2c6903a321d318967a5b4c9ca11138ac175a64a2b8629fc77
7
- data.tar.gz: 54b78aadfe34f5a3da6df6494f62ddf38e1f46d4c81d7318614038ef1067a066a69dc34b55b04c6d4ed0fd92adb5d4bf470362ae48fdba0f4a0a0f571c38317b
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 ../../
@@ -18,7 +18,7 @@ module ActiveRecord
18
18
  end
19
19
 
20
20
  def collations
21
- internal_exec_query(collations_sql, 'SCHEMA')
21
+ select_all(collations_sql, 'SCHEMA')
22
22
  end
23
23
 
24
24
  private
@@ -2,6 +2,6 @@
2
2
 
3
3
  module ActiveRecord
4
4
  module Collation
5
- VERSION = '0.0.3'
5
+ VERSION = '0.0.4'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: activerecord-collation
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Manfred Stienstra