c4 0.1.1 → 0.1.5
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/.gitlab-ci.yml +12 -0
- data/Gemfile.lock +2 -2
- data/lib/c4/version.rb +1 -1
- metadata +2 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9ea300d10d7612076f7efb5f18cfbfd763e674891d04f850674e3eaa4f2848b5
|
|
4
|
+
data.tar.gz: 80c62666aa92cc084e374ce707d533d38a4654d7accc5f13b883d30fffea23aa
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 73d105ebb9ce2a126d9ed4bf54fb172d44bc3cdcdc8f185bfd5388b295a33b7c872a4804ac4cffee892350565bdb9ca9a53fcd2dd5ef8bc660095057aba8c231
|
|
7
|
+
data.tar.gz: b76aff003e7af64788a1f235417eda15d8c3b49ab601b7efcc669ad1a72ca088b660a510fcef3ba76541bfbc006652acdd3bf6baabca6ad1bb71af637faae2b8
|
data/.gitlab-ci.yml
CHANGED
|
@@ -25,3 +25,15 @@ build:
|
|
|
25
25
|
stage: build
|
|
26
26
|
script:
|
|
27
27
|
- gem build c4.gemspec
|
|
28
|
+
|
|
29
|
+
push:
|
|
30
|
+
stage: deploy
|
|
31
|
+
script:
|
|
32
|
+
- touch ~/.gem/credentials
|
|
33
|
+
- echo '---' >> ~/.gem/credentials
|
|
34
|
+
- 'echo ":rubygems_api_key: ${RUBYGEMS_API_KEY}" >> ~/.gem/credentials'
|
|
35
|
+
- chmod 0600 ~/.gem/credentials
|
|
36
|
+
- gem build c4.gemspec
|
|
37
|
+
- gem push c4-${CI_COMMIT_TAG}.gem
|
|
38
|
+
only:
|
|
39
|
+
- tags
|
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
c4 (0.1.
|
|
4
|
+
c4 (0.1.5)
|
|
5
5
|
require_all (~> 2.0)
|
|
6
6
|
thor (~> 0.20)
|
|
7
7
|
|
|
@@ -47,7 +47,7 @@ GEM
|
|
|
47
47
|
json (>= 1.8, < 3)
|
|
48
48
|
simplecov-html (~> 0.10.0)
|
|
49
49
|
simplecov-html (0.10.2)
|
|
50
|
-
thor (0.20.
|
|
50
|
+
thor (0.20.3)
|
|
51
51
|
unicode-display_width (1.4.1)
|
|
52
52
|
|
|
53
53
|
PLATFORMS
|
data/lib/c4/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: c4
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Akihiko Itoh
|
|
@@ -162,8 +162,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
162
162
|
- !ruby/object:Gem::Version
|
|
163
163
|
version: '0'
|
|
164
164
|
requirements: []
|
|
165
|
-
|
|
166
|
-
rubygems_version: 2.7.6
|
|
165
|
+
rubygems_version: 3.0.2
|
|
167
166
|
signing_key:
|
|
168
167
|
specification_version: 4
|
|
169
168
|
summary: A command line connect four.
|