activerecord-postgresql-cursors 2.0.0 → 3.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/.github/workflows/main.yml +71 -0
- data/.rubocop-minitest.yml +240 -0
- data/.rubocop.yml +5683 -0
- data/.rubocop_todo.yml +26 -0
- data/FUNDING.yml +2 -0
- data/Gemfile +13 -16
- data/Guardfile +8 -10
- data/MIT-LICENSE +1 -2
- data/{README.rdoc → README.md} +12 -10
- data/Rakefile +5 -6
- data/activerecord-postgresql-cursors.gemspec +15 -15
- data/lib/active_record/postgresql_cursors/cursors.rb +4 -8
- data/lib/active_record/postgresql_cursors/version.rb +2 -2
- data/lib/activerecord-postgresql-cursors.rb +40 -34
- data/sonar-project.properties +17 -0
- data/test/ci/github/database.yml +10 -0
- data/test/{cursor_tests.rb → cursor_test.rb} +16 -11
- data/test/test_helper.rb +20 -25
- metadata +22 -19
- data/.travis.yml +0 -18
data/.travis.yml
DELETED
@@ -1,18 +0,0 @@
|
|
1
|
-
language: ruby
|
2
|
-
rvm:
|
3
|
-
- 2.5.0
|
4
|
-
- 2.4.3
|
5
|
-
- 2.3.6
|
6
|
-
- 2.2.9
|
7
|
-
- jruby
|
8
|
-
env:
|
9
|
-
- RAILS_VERSION=5.1
|
10
|
-
- RAILS_VERSION=4.2
|
11
|
-
matrix:
|
12
|
-
allow_failures:
|
13
|
-
- rvm: jruby
|
14
|
-
before_install:
|
15
|
-
- gem update --system
|
16
|
-
- gem install bundler
|
17
|
-
before_script:
|
18
|
-
- psql -c 'create database postgresql_cursors_unit_tests;' -U postgres
|