protosum2 0.7.0 → 0.9.14

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: 6f18f4926217c8b3ebe00f57739bf87f3fb9179299c48dd4402fe580a9f1fa93
4
- data.tar.gz: ed72f9853fff1fbd200287380b80279dd28209b44b3c7adc7343b291e297e380
3
+ metadata.gz: 6aa5d1552adf619d95ffb5228e690f2d10c558d42ca7bae1643a9ba379187b65
4
+ data.tar.gz: bac005760b94a6b5b7e9e8fa2d8f7973b887fd0a6a8afff0500095c8e0e4beca
5
5
  SHA512:
6
- metadata.gz: 3409e5e800d9c60701e903c0180acba7600b5a7847735dfb0811647cba130c1d6cfc771e5258592015905d931b473ac76e30c2117e1229b79bd708f18623c72f
7
- data.tar.gz: cbb5d1787e271035a8f265c1bc1f840b976266fbebe6bcbc257ef7d942525eb1dbd4cd42f2156bd4fd2e2f8d9da7f9710661377b912f221c713de841c5da6b98
6
+ metadata.gz: 97be02e5675f0adfacba7ee4583715ed00914d12a0c807863e9603b2ccb414959c559e94edc5edd6ecc739cb31bd0aa9ca7501963f49bf65bc4a6ab1b6e98c9e
7
+ data.tar.gz: 5f304424a060fbd2f85a3740aa55a18382878f5b7a782d7be24c23808e92e292843f550b682c662b6d964657d27555eab5cada1b488936e6f52b5610d7e01162
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Protosum2
4
- VERSION = "0.7.0"
4
+ VERSION = "0.9.14"
5
5
  end
metadata CHANGED
@@ -1,11 +1,11 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: protosum2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.0
4
+ version: 0.9.14
5
5
  platform: ruby
6
6
  authors:
7
7
  - igsr5
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
11
  date: 2022-04-03 00:00:00.000000000 Z
@@ -17,7 +17,6 @@ executables: []
17
17
  extensions: []
18
18
  extra_rdoc_files: []
19
19
  files:
20
- - ".rubocop.yml"
21
20
  - CHANGELOG.md
22
21
  - Gemfile
23
22
  - Gemfile.lock
@@ -31,7 +30,6 @@ files:
31
30
  - lib/proto/user_pb.rb
32
31
  - lib/protosum2.rb
33
32
  - lib/protosum2/version.rb
34
- - protosum2.gemspec
35
33
  - sig/protosum2.rbs
36
34
  homepage: https://github.com/igsr5/protosum
37
35
  licenses: []
@@ -40,7 +38,7 @@ metadata:
40
38
  homepage_uri: https://github.com/igsr5/protosum
41
39
  source_code_uri: https://github.com/igsr5/protosum
42
40
  changelog_uri: https://github.com/igsr5/protosum
43
- post_install_message:
41
+ post_install_message:
44
42
  rdoc_options: []
45
43
  require_paths:
46
44
  - lib
@@ -55,8 +53,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
55
53
  - !ruby/object:Gem::Version
56
54
  version: '0'
57
55
  requirements: []
58
- rubygems_version: 3.3.3
59
- signing_key:
56
+ rubygems_version: 3.3.7
57
+ signing_key:
60
58
  specification_version: 4
61
59
  summary: Write a short summary, because RubyGems requires one.
62
60
  test_files: []
data/.rubocop.yml DELETED
@@ -1,13 +0,0 @@
1
- AllCops:
2
- TargetRubyVersion: 2.6
3
-
4
- Style/StringLiterals:
5
- Enabled: true
6
- EnforcedStyle: double_quotes
7
-
8
- Style/StringLiteralsInInterpolation:
9
- Enabled: true
10
- EnforcedStyle: double_quotes
11
-
12
- Layout/LineLength:
13
- Max: 120
data/protosum2.gemspec DELETED
@@ -1,38 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require_relative "lib/protosum2/version"
4
-
5
- Gem::Specification.new do |spec|
6
- spec.name = "protosum2"
7
- spec.version = Protosum2::VERSION
8
- spec.authors = ["igsr5"]
9
- spec.email = ["i@gsr5.dev"]
10
-
11
- spec.summary = "Write a short summary, because RubyGems requires one."
12
- spec.description = "Write a longer description or delete this line."
13
- spec.homepage = "https://github.com/igsr5/protosum"
14
- spec.required_ruby_version = ">= 2.6.0"
15
-
16
- spec.metadata["allowed_push_host"] = "https://rubygems.org"
17
-
18
- spec.metadata["homepage_uri"] = spec.homepage
19
- spec.metadata["source_code_uri"] = "https://github.com/igsr5/protosum"
20
- spec.metadata["changelog_uri"] = "https://github.com/igsr5/protosum"
21
-
22
- # Specify which files should be added to the gem when it is released.
23
- # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
24
- spec.files = Dir.chdir(File.expand_path(__dir__)) do
25
- `git ls-files -z`.split("\x0").reject do |f|
26
- (f == __FILE__) || f.match(%r{\A(?:(?:test|spec|features)/|\.(?:git|travis|circleci)|appveyor)})
27
- end
28
- end
29
- spec.bindir = "exe"
30
- spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
31
- spec.require_paths = ["lib"]
32
-
33
- # Uncomment to register a new dependency of your gem
34
- # spec.add_dependency "example-gem", "~> 1.0"
35
-
36
- # For more information and examples about making a new gem, check out our
37
- # guide at: https://bundler.io/guides/creating_gem.html
38
- end