kaminari-jets 0.1.0

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: a408f3f770a23f327793453d6dd2ef1fc7286d38b880aa9813f49aecfd762f25
4
+ data.tar.gz: 77774b0176ea86b3c5964c09c9bcca0ff3df4bbadda0a4e17a4b80bfb415a108
5
+ SHA512:
6
+ metadata.gz: f726a11b93cb087b8da6d5679d29aba0d61cff005fe98f7d15f443f6a85d1da2f3d5c01c1788547090fcdb8b5af9718e6ba39454fe3afd325fab1ee0699a1efb
7
+ data.tar.gz: fa40e7bec35924906d4e434f2641f8c447696cebeee8c27b44b1309acf33ac8611b45cb016fc20787f6cf48db6197f174ce762a97286646fd9c46dee2bd52bb5
data/.codeclimate.yml ADDED
@@ -0,0 +1,19 @@
1
+ ---
2
+ engines:
3
+ duplication:
4
+ enabled: true
5
+ config:
6
+ languages:
7
+ - ruby
8
+ fixme:
9
+ enabled: true
10
+ rubocop:
11
+ enabled: true
12
+ ratings:
13
+ paths:
14
+ - "**.rb"
15
+ exclude_paths:
16
+ - test/
17
+ - "*/test/"
18
+ - "**/*.gemspec"
19
+ - "**/*.md"
data/.document ADDED
@@ -0,0 +1,2 @@
1
+ lib/**/*.rb
2
+ MIT-LICENSE
@@ -0,0 +1,107 @@
1
+ name: build
2
+
3
+ on:
4
+ - push
5
+ - pull_request
6
+
7
+ jobs:
8
+ build:
9
+ services:
10
+ postgresql:
11
+ image: postgres:9.6
12
+ ports:
13
+ - 5432:5432
14
+ env:
15
+ POSTGRES_PASSWORD: postgres
16
+ strategy:
17
+ fail-fast: true
18
+ matrix:
19
+ ruby_version:
20
+ - '3.0'
21
+ - '2.7'
22
+ - '2.6'
23
+ - '2.5'
24
+ - 'jruby-9.3.2.0'
25
+ gemfile:
26
+ - gemfiles/active_record_70.gemfile
27
+ - gemfiles/active_record_61.gemfile
28
+ - gemfiles/active_record_60.gemfile
29
+ - gemfiles/active_record_52.gemfile
30
+ - gemfiles/active_record_51.gemfile
31
+ - gemfiles/active_record_50.gemfile
32
+ - gemfiles/active_record_edge.gemfile
33
+ db:
34
+ - sqlite3
35
+ - postgresql
36
+ - mysql
37
+ exclude:
38
+ - ruby_version: '3.0'
39
+ gemfile: gemfiles/active_record_52.gemfile
40
+ - ruby_version: '3.0'
41
+ gemfile: gemfiles/active_record_51.gemfile
42
+ - ruby_version: '3.0'
43
+ gemfile: gemfiles/active_record_50.gemfile
44
+ - ruby_version: '2.7'
45
+ gemfile: gemfiles/active_record_52.gemfile
46
+ - ruby_version: '2.7'
47
+ gemfile: gemfiles/active_record_51.gemfile
48
+ - ruby_version: '2.7'
49
+ gemfile: gemfiles/active_record_50.gemfile
50
+ - ruby_version: '2.6'
51
+ gemfile: gemfiles/active_record_edge.gemfile
52
+ - ruby_version: '2.6'
53
+ gemfile: gemfiles/active_record_70.gemfile
54
+ - ruby_version: '2.5'
55
+ gemfile: gemfiles/active_record_edge.gemfile
56
+ - ruby_version: '2.5'
57
+ gemfile: gemfiles/active_record_70.gemfile
58
+ - ruby_version: 'jruby-9.3.2.0'
59
+ gemfile: gemfiles/active_record_edge.gemfile
60
+ include:
61
+ - ruby_version: 'ruby-head'
62
+ gemfile: gemfiles/active_record_edge.gemfile
63
+ db: sqlite3
64
+ - ruby_version: 'ruby-head'
65
+ gemfile: gemfiles/active_record_edge.gemfile
66
+ db: postgresql
67
+ - ruby_version: 'ruby-head'
68
+ gemfile: gemfiles/active_record_edge.gemfile
69
+ db: mysql
70
+ - ruby_version: '2.4'
71
+ gemfile: gemfiles/active_record_52.gemfile
72
+ db: sqlite3
73
+ - ruby_version: '2.3'
74
+ gemfile: gemfiles/active_record_52.gemfile
75
+ db: sqlite3
76
+ - ruby_version: '2.3'
77
+ gemfile: gemfiles/active_record_42.gemfile
78
+ db: sqlite3
79
+ - ruby_version: '2.3'
80
+ gemfile: gemfiles/active_record_41.gemfile
81
+ db: sqlite3
82
+ - ruby_version: '2.2'
83
+ gemfile: gemfiles/active_record_52.gemfile
84
+ db: sqlite3
85
+ - ruby_version: '2.1'
86
+ gemfile: gemfiles/active_record_42.gemfile
87
+ db: sqlite3
88
+ runs-on: ubuntu-18.04
89
+ env:
90
+ BUNDLE_GEMFILE: ${{ matrix.gemfile }}
91
+ DB: ${{ matrix.db }}
92
+ POSTGRES_PASSWORD: postgres # for passing the password to the Rails process
93
+ MYSQL_PASSWORD: root # for passing the password to the Rails process
94
+ steps:
95
+ - uses: actions/checkout@v2
96
+ - name: Install libmysqld-dev
97
+ run: sudo apt-get install libmysqld-dev
98
+ - name: Start local MySQL
99
+ run: sudo /etc/init.d/mysql start
100
+ - name: Set up Ruby
101
+ uses: ruby/setup-ruby@v1
102
+ with:
103
+ ruby-version: ${{ matrix.ruby_version }}
104
+ bundler-cache: true
105
+ continue-on-error: ${{ matrix.ruby_version == 'ruby-head' || matrix.ruby_version == 'jruby-9.3.2.0' || matrix.gemfile == 'gemfiles/active_record_edge.gemfile' }}
106
+ - run: bundle exec rake test
107
+ continue-on-error: ${{ matrix.ruby_version == 'ruby-head' || matrix.ruby_version == 'jruby-9.3.2.0' || matrix.gemfile == 'gemfiles/active_record_edge.gemfile' }}
data/.gitignore ADDED
@@ -0,0 +1,11 @@
1
+ *.gem
2
+ .bundle
3
+ Gemfile.lock
4
+ gemfiles/*.lock
5
+ coverage/*
6
+ pkg/*
7
+
8
+ doc
9
+ log
10
+ *.sqlite3
11
+ *.sqlite3-journal