silent_bob 0.1.9 → 0.2.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fdb324c0ba18023ec4d33523e0fd909b6836af92ab3ea6d9f5461a79ad8b2b02
4
- data.tar.gz: 837b8df0f2f4d695beb6a27cf48d99fced0f1674246ee6c818cc42bbb2451219
3
+ metadata.gz: 986768288679ee58d74b76f8b1de40575a1756c9165163c4aaff86cf095098d3
4
+ data.tar.gz: fe01c69c986953d0dd65c7ad0fe97a9f2c0af635019ad5ae2997c70d0205f755
5
5
  SHA512:
6
- metadata.gz: aae15999b8ba0f2a47a7ee386fa9baddcfe6c2345492ff270492c30682c9aed18dcc16d563be57b6868e0b0a035c148e75ba381b15d91abf14796602dae7d1a9
7
- data.tar.gz: 91d580230af969e0c331d9a41140f3417d31aac0e5f6b31a6d255118c460d3f5c25ff1fc2c7208a58c7a4d6f23ae808f809f6a6783198a6c5697b9f9e10859d1
6
+ metadata.gz: 45f4414f378dfcadd0db0c698c3a8631fcd9865ecce565908f10e51d3c16ed80a173fdf632d5a91b13b2ef241baa1cfd20b0b9adf6ed8d7bcad83ec9e44f96fa
7
+ data.tar.gz: 4b30e0ef743490010ca3a6b59e9844bda527959797894e5393f45a1e0639c6e866fec5e5985ea6fd25bbac99c173faeedde3e427d87ba61e98eba972a560754d
@@ -1,14 +1,21 @@
1
1
  stages:
2
+ - test
2
3
  - deploy
3
4
 
5
+ run_rspec:
6
+ stage: test
7
+ image: ruby:2.6.4
8
+ script:
9
+ - 'gem install bundler --no-document'
10
+ - 'bundle install'
11
+ - 'bundle exec rspec'
12
+
4
13
  publish_gem:
5
14
  stage: deploy
6
15
  image: ruby:2.6.4
7
16
  script:
8
17
  - 'mkdir -p ~/.gem && echo -e "---\r\n:rubygems_api_key: $RUBYGEMS_API_KEY" > ~/.gem/credentials'
9
18
  - 'chmod 0600 ~/.gem/credentials'
10
- - 'echo $RUBYGEMS_API_KEY'
11
- - 'cat ~/.gem/credentials'
12
19
  - 'gem build silent_bob'
13
20
  - 'gem push "silent_bob-$(git describe --tags).gem"'
14
21
  allow_failure: true
data/.rspec CHANGED
@@ -1,3 +1,3 @@
1
- --format documentation
1
+ --format progress
2
2
  --color
3
3
  --require spec_helper
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- silent_bob (0.1.9)
4
+ silent_bob (0.2.0)
5
5
  http (~> 4.3)
6
6
  mail (~> 2.5)
7
7
 
@@ -1,7 +1,6 @@
1
1
  require 'silent_bob/version'
2
2
  require 'openssl'
3
3
  require 'http'
4
- require 'singleton'
5
4
  require 'base64'
6
5
  require 'silent_bob/configuration'
7
6
  require 'silent_bob/configuration_keeper'
@@ -1,3 +1,3 @@
1
1
  module SilentBob
2
- VERSION = '0.1.9'.freeze
2
+ VERSION = '0.2.0'.freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: silent_bob
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.9
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrey Lobanov
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-12-07 00:00:00.000000000 Z
11
+ date: 2020-12-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: http