chelsea 0.0.36 → 0.0.37
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/.circleci/config.yml +16 -8
- data/Dockerfile +1 -1
- data/lib/chelsea/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c9b9bb924bd0b4c64c8a62017536ae61b57ba35ad1c485c160b2dbdd0f1286ee
|
|
4
|
+
data.tar.gz: 2737e9ae4d4600db64e5d75c47b163c8158b3246f48b1e4d45909b3d4dbc3646
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1c938993e660bb862a0c8b7792a96e677f79d8b519d6bdc02caf2b94860b5d03c3f70003a3b8ca6445ac0d96c5c49f93b6f9274b7047a557ddff60439c4e32a6
|
|
7
|
+
data.tar.gz: f3ec168507492844982202fd814e000fe55cb5b53f5fe37a567a97d07755ae50d75455fe286220feedc400645b2ee47abeeed6c8f77d1b4158a094f921d525c9
|
data/.circleci/config.yml
CHANGED
|
@@ -15,17 +15,23 @@
|
|
|
15
15
|
#
|
|
16
16
|
|
|
17
17
|
version: 2.1
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
18
|
+
|
|
19
|
+
executors:
|
|
20
|
+
ruby_executor:
|
|
21
|
+
docker:
|
|
21
22
|
- image: circleci/ruby:2.6.6-stretch
|
|
22
|
-
|
|
23
|
-
|
|
23
|
+
# - image: cimg/ruby:3.2
|
|
24
|
+
|
|
25
|
+
jobs:
|
|
26
|
+
build:
|
|
27
|
+
executor: ruby_executor
|
|
28
|
+
environment:
|
|
29
|
+
BUNDLE_PATH: vendor/bundle
|
|
24
30
|
steps:
|
|
25
31
|
- checkout
|
|
26
32
|
- run:
|
|
27
33
|
name: Install bundler
|
|
28
|
-
command: gem install bundler
|
|
34
|
+
command: gem install bundler -v 2.4.22
|
|
29
35
|
- run:
|
|
30
36
|
name: Which bundler?
|
|
31
37
|
command: bundle -v
|
|
@@ -54,6 +60,9 @@ jobs:
|
|
|
54
60
|
- run:
|
|
55
61
|
name: Build gem
|
|
56
62
|
command: gem build chelsea.gemspec
|
|
63
|
+
- run:
|
|
64
|
+
name: Install gem domain_name (required due to older ruby)
|
|
65
|
+
command: gem install domain_name -v 0.5.20190701
|
|
57
66
|
- run:
|
|
58
67
|
name: Install gem
|
|
59
68
|
command: gem install ./chelsea-*.gem
|
|
@@ -66,8 +75,7 @@ jobs:
|
|
|
66
75
|
- store_test_results:
|
|
67
76
|
path: test_results
|
|
68
77
|
release:
|
|
69
|
-
|
|
70
|
-
- image: circleci/ruby:2.6.6-stretch
|
|
78
|
+
executor: ruby_executor
|
|
71
79
|
steps:
|
|
72
80
|
- add_ssh_keys:
|
|
73
81
|
fingerprints:
|
data/Dockerfile
CHANGED
data/lib/chelsea/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: chelsea
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.37
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Allister Beharry
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-
|
|
11
|
+
date: 2023-12-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|