ruby_gpg2 0.4.0 → 0.5.0.pre.1

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: 77686b0ccde6e02f471d7f2d8bce18bae4ab5f6bcc503b8eb56c3402968ed50e
4
- data.tar.gz: 0bf54fa5f0ed8619a5737803eb25eeb34e44faf7ff5c3198d8d5e29daae5c81e
3
+ metadata.gz: 34efe02de77db166e3f2e7c231b5c5974af5a80b8a6c4abfa78099b9baef365f
4
+ data.tar.gz: 3c1dac38c7257a6de5382ce010149ac26d4504c93cf018d71e67c3e5c2f924ef
5
5
  SHA512:
6
- metadata.gz: ac037c0c92e905a541240fa91ef6029440f3acfbd2cd26606d0f1664e70d67bff2a4e9cb843bcc9edc2b7d93ed291262195c84b53b5630fb2655ac214c5b2371
7
- data.tar.gz: 15fa033931e65a5553cb31dd2ff2e2d70257e113f2fc176fb3cbb370ab94af1b8ae9ec6154865f4ee8226157d7134bca28a5ee95aa3b41df203e12bd383ca409
6
+ metadata.gz: 5a3cd6f2e71251d40644d97f9a16a70a39bebccdc631156ebf771792abece0f4c5ef3483d9241580d5395a1b698c48905bce9e0a03e79087fa8bbd98fa441f89
7
+ data.tar.gz: e635375476e14ee2f2e202eb9c9eb474207d2ec34cbdea4fd9c185c570a4f79fe4ac27075a0d38e88dcb78cfaa2f75758337f023c51f5a8bb174e7463c6494f6
@@ -1,24 +1,24 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- ruby_gpg2 (0.4.0)
4
+ ruby_gpg2 (0.5.0.pre.1)
5
5
  lino (>= 1.5)
6
6
 
7
7
  GEM
8
8
  remote: https://rubygems.org/
9
9
  specs:
10
- activesupport (6.0.3.4)
10
+ activesupport (6.1.0)
11
11
  concurrent-ruby (~> 1.0, >= 1.0.2)
12
- i18n (>= 0.7, < 2)
13
- minitest (~> 5.1)
14
- tzinfo (~> 1.1)
15
- zeitwerk (~> 2.2, >= 2.2.2)
12
+ i18n (>= 1.6, < 2)
13
+ minitest (>= 5.1)
14
+ tzinfo (~> 2.0)
15
+ zeitwerk (~> 2.3)
16
16
  addressable (2.7.0)
17
17
  public_suffix (>= 2.0.2, < 5.0)
18
18
  colored2 (3.1.2)
19
19
  concurrent-ruby (1.1.7)
20
20
  diff-lcs (1.4.4)
21
- excon (0.78.0)
21
+ excon (0.78.1)
22
22
  faraday (1.1.0)
23
23
  multipart-post (>= 1.2, < 3)
24
24
  ruby2_keywords
@@ -37,7 +37,7 @@ GEM
37
37
  sawyer (~> 0.8.0, >= 0.5.3)
38
38
  open4 (1.3.4)
39
39
  public_suffix (4.0.6)
40
- rake (13.0.1)
40
+ rake (13.0.2)
41
41
  rake_circle_ci (0.7.0)
42
42
  colored2 (~> 3.1)
43
43
  excon (~> 0.72)
@@ -73,13 +73,14 @@ GEM
73
73
  addressable (>= 2.3.5)
74
74
  faraday (> 0.8, < 2.0)
75
75
  sshkey (2.0.0)
76
- thread_safe (0.3.6)
77
- tzinfo (1.2.8)
78
- thread_safe (~> 0.1)
79
- zeitwerk (2.4.1)
76
+ tzinfo (2.0.4)
77
+ concurrent-ruby (~> 1.0)
78
+ zeitwerk (2.4.2)
80
79
 
81
80
  PLATFORMS
82
81
  ruby
82
+ x86_64-darwin-19
83
+ x86_64-linux
83
84
 
84
85
  DEPENDENCIES
85
86
  bundler (~> 2.1)
@@ -92,4 +93,4 @@ DEPENDENCIES
92
93
  ruby_gpg2!
93
94
 
94
95
  BUNDLED WITH
95
- 2.1.4
96
+ 2.2.2
data/Rakefile CHANGED
@@ -73,8 +73,5 @@ task :release do
73
73
  end
74
74
 
75
75
  def bump_version_for(version_type)
76
- sh "gem bump --version #{version_type} " +
77
- "&& bundle install " +
78
- "&& export LAST_MESSAGE=\"$(git log -1 --pretty=%B)\" " +
79
- "&& git commit -a --amend -m \"${LAST_MESSAGE} [ci skip]\""
76
+ sh "gem bump --version #{version_type}"
80
77
  end
@@ -1,3 +1,3 @@
1
1
  module RubyGPG2
2
- VERSION = '0.4.0'
2
+ VERSION = '0.5.0.pre.1'
3
3
  end
@@ -10,6 +10,11 @@ PROJECT_DIR="$( cd "$SCRIPT_DIR/../../.." && pwd )"
10
10
  cd "$PROJECT_DIR"
11
11
 
12
12
  ./go version:bump[pre]
13
+
14
+ bundle install
15
+ LAST_MESSAGE="$(git log -1 --pretty=%B)"
16
+ git commit -a --amend -m "${LAST_MESSAGE} [ci skip]"
17
+
13
18
  ./go release
14
19
 
15
20
  git status
@@ -12,6 +12,11 @@ cd "$PROJECT_DIR"
12
12
  git pull
13
13
 
14
14
  ./go version:bump[minor]
15
+
16
+ bundle install
17
+ LAST_MESSAGE="$(git log -1 --pretty=%B)"
18
+ git commit -a --amend -m "${LAST_MESSAGE} [ci skip]"
19
+
15
20
  ./go release
16
21
 
17
22
  git status
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby_gpg2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.5.0.pre.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Toby Clemson
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-11-24 00:00:00.000000000 Z
11
+ date: 2020-12-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: lino
@@ -223,9 +223,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
223
223
  version: '2.6'
224
224
  required_rubygems_version: !ruby/object:Gem::Requirement
225
225
  requirements:
226
- - - ">="
226
+ - - ">"
227
227
  - !ruby/object:Gem::Version
228
- version: '0'
228
+ version: 1.3.1
229
229
  requirements: []
230
230
  rubygems_version: 3.0.1
231
231
  signing_key: