nxt_support 0.1.16 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: dc57b2a558720860443c1ec7be7d71197a6b5f4be4d375774cf4f1061ca87f63
4
- data.tar.gz: f9265864f5bfd42780554dd6754619743b72ec6d933b990369e421ea5f8f7296
3
+ metadata.gz: 04156bb470e9230b1d2d6eb97b40ac553d6f54d945875eac31ed48148907ac29
4
+ data.tar.gz: 4daca280e15ef43fdd8e465b39ec9810930ad66fdd668ce300bdfb9431f47e71
5
5
  SHA512:
6
- metadata.gz: 6c8fbd5bccdecdd02f7e8624d7ff93d21b45de80f98e6d06ca1078c61202f49311e5c23210bf5533d815229ae53c7e3367855e028c78f6e09fa5dd464d973aa1
7
- data.tar.gz: 594a5ce6f93b3aac3af13e3a79c7d8c655a192890980070dbce6bd7ad32f898d1949f7497eabbb744e76e03786d8933a9f09b00a1493c3fecfef765d803ed894
6
+ metadata.gz: 36e8e83265ea3d5accc6ff7fdd67221ea4d88c8e9b451e92dc7cc7806c0e8f9e0c44ec609d25d1ef13c04acca86a20196f0bd36921a470502243ceca551af90c
7
+ data.tar.gz: bf5edfb86fdac8909c673405094179adcf0ca8200a7935c7bcde48e4e4b162f65cee2f7443b8cbec6b242c5f15120bd0da3c1b3cafff207f662c23ff89c8ccc4
data/.circleci/config.yml CHANGED
@@ -2,18 +2,31 @@
2
2
  #
3
3
  # Check https://circleci.com/docs/2.0/language-ruby/ for more details
4
4
  #
5
- version: 2
5
+ version: 2.1
6
+
7
+ workflows:
8
+ build:
9
+ jobs:
10
+ - build:
11
+ matrix:
12
+ parameters:
13
+ ruby-version: ["2.6.8", "2.7.4", "3.0.2"]
14
+
6
15
  jobs:
7
16
  build:
17
+ parameters:
18
+ ruby-version:
19
+ type: string
20
+
8
21
  docker:
9
22
  # specify the version you desire here
10
- - image: circleci/ruby:2.6.4-node
23
+ - image: circleci/ruby:<< parameters.ruby-version >>-node
11
24
 
12
25
  working_directory: ~/repo
13
26
 
14
27
  steps:
15
28
  - checkout
16
-
29
+
17
30
  - run:
18
31
  name: Install apt dependencies
19
32
  command: |
@@ -26,7 +39,7 @@ jobs:
26
39
  - restore_cache:
27
40
  keys:
28
41
  - v1-dependencies-{{ checksum "Gemfile.lock" }}
29
-
42
+
30
43
  - run: gem install bundler
31
44
 
32
45
  - run:
data/.ruby-version ADDED
@@ -0,0 +1 @@
1
+ 3.0.2
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- nxt_support (0.1.16)
4
+ nxt_support (0.2.0)
5
5
  activerecord
6
6
  activesupport
7
7
  nxt_init
@@ -10,12 +10,12 @@ PATH
10
10
  GEM
11
11
  remote: https://rubygems.org/
12
12
  specs:
13
- activemodel (6.1.3.2)
14
- activesupport (= 6.1.3.2)
15
- activerecord (6.1.3.2)
16
- activemodel (= 6.1.3.2)
17
- activesupport (= 6.1.3.2)
18
- activesupport (6.1.3.2)
13
+ activemodel (6.1.4.1)
14
+ activesupport (= 6.1.4.1)
15
+ activerecord (6.1.4.1)
16
+ activemodel (= 6.1.4.1)
17
+ activesupport (= 6.1.4.1)
18
+ activesupport (6.1.4.1)
19
19
  concurrent-ruby (~> 1.0, >= 1.0.2)
20
20
  i18n (>= 1.6, < 2)
21
21
  minitest (>= 5.1)
@@ -69,4 +69,4 @@ DEPENDENCIES
69
69
  sqlite3
70
70
 
71
71
  BUNDLED WITH
72
- 2.1.4
72
+ 2.2.25
@@ -1,3 +1,3 @@
1
1
  module NxtSupport
2
- VERSION = "0.1.16".freeze
2
+ VERSION = "0.2.0".freeze
3
3
  end
metadata CHANGED
@@ -1,17 +1,17 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nxt_support
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.16
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nils Sommer
8
8
  - Andreas Robecke
9
9
  - Nicolai Stoianov
10
10
  - Akihiko Ito
11
- autorequire:
11
+ autorequire:
12
12
  bindir: exe
13
13
  cert_chain: []
14
- date: 2021-06-15 00:00:00.000000000 Z
14
+ date: 2021-09-13 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: activerecord
@@ -139,7 +139,7 @@ dependencies:
139
139
  - - ">="
140
140
  - !ruby/object:Gem::Version
141
141
  version: '0'
142
- description:
142
+ description:
143
143
  email:
144
144
  - mail@nilssommer.de
145
145
  - a.robecke@getsafe.de
@@ -153,6 +153,7 @@ files:
153
153
  - ".editorconfig"
154
154
  - ".gitignore"
155
155
  - ".rspec"
156
+ - ".ruby-version"
156
157
  - ".ruby_version"
157
158
  - ".travis.yml"
158
159
  - CHANGELOG.md
@@ -197,7 +198,7 @@ metadata:
197
198
  homepage_uri: https://github.com/nxt-insurance/nxt_support
198
199
  source_code_uri: https://github.com/nxt-insurance/nxt_support
199
200
  changelog_uri: https://github.com/nxt-insurance/nxt_support/CHANGELOG.md
200
- post_install_message:
201
+ post_install_message:
201
202
  rdoc_options: []
202
203
  require_paths:
203
204
  - lib
@@ -212,8 +213,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
212
213
  - !ruby/object:Gem::Version
213
214
  version: '0'
214
215
  requirements: []
215
- rubygems_version: 3.0.3
216
- signing_key:
216
+ rubygems_version: 3.2.22
217
+ signing_key:
217
218
  specification_version: 4
218
219
  summary: Support through reusable Mixins and Helpers for Ruby on Rails Applications
219
220
  test_files: []