cronos_chain 0.1.1 → 0.1.2

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: c7e158abf3b91d8fb248881289de1c94ad2c78c757dea50bd9dc68ca50dff5a7
4
- data.tar.gz: 4f68fc8768e7e997f2c20f0fa409885304d252e49d15ba771fc75b15961402e6
3
+ metadata.gz: c17774b2a384d6636ec9971db021af64f2899740a7c7fd5dceef99faea8c931c
4
+ data.tar.gz: 354041907741e94f959936ac14c771578aeaa73376a70f2f2f29312f67268326
5
5
  SHA512:
6
- metadata.gz: 7ac5d3c3a2b62e74da014308c37a588770029afe80c7bf6b270e1d91dae7ff07b525066a36025bd6a4ab10f118cb683b74ab58e15e6b022a46b0b6eef61b1f33
7
- data.tar.gz: e730f054d22bbb82dac240144d5c0aad32c434759150f657951393a9e4af248f78b55a8816d3aabad214131c8dda81145149a6fd93e89bc8477e9b2b58c4d4b8
6
+ metadata.gz: 5eb12fbd1676b4edb21ba3a8df3237d417d7b823dee2cb7df263741e795b1a6110229b592ecc7e1c2815508ea27cc41aa9585d864ed55e6c0c694fe053c77dbd
7
+ data.tar.gz: d41df6b46af951496721c54f0907998f92b62ab4c9e2c8031e6101b35e61860ff216008027ca4f368866c56b0d6c43e6f129e691ffb60baf864941c758cda6c5
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- cronos_chain (0.1.0)
4
+ cronos_chain (0.1.2)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -0,0 +1,39 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "lib/cronos_chain/version"
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = "cronos_chain"
7
+ spec.version = CronosChain::VERSION
8
+ spec.authors = ["menghuanwd"]
9
+ spec.email = ["651019063@qq.com"]
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://rubygems.org/gems/cronos_chain'
14
+ spec.required_ruby_version = ">= 2.4.0"
15
+
16
+ spec.metadata["allowed_push_host"] = 'https://rubygems.org'
17
+
18
+ # spec.metadata["homepage_uri"] = 'https://rubygems.org/gems/cronos_chain'
19
+ # spec.metadata["source_code_uri"] = 'https://github.com/menghuanwd/cronos_chain'
20
+ # spec.metadata["changelog_uri"] = 'https://github.com/menghuanwd/cronos_chain'
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, checkout our
37
+ # guide at: https://bundler.io/guides/creating_gem.html
38
+ end
39
+
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module CronosChain
4
- VERSION = "0.1.1"
4
+ VERSION = "0.1.2"
5
5
  end
metadata CHANGED
@@ -1,11 +1,11 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cronos_chain
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - menghuanwd
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
11
  date: 2022-04-01 00:00:00.000000000 Z
@@ -23,13 +23,14 @@ files:
23
23
  - Rakefile
24
24
  - bin/console
25
25
  - bin/setup
26
+ - cronos_chain.gemspec
26
27
  - lib/cronos_chain.rb
27
28
  - lib/cronos_chain/version.rb
28
29
  homepage: https://rubygems.org/gems/cronos_chain
29
30
  licenses: []
30
31
  metadata:
31
32
  allowed_push_host: https://rubygems.org
32
- post_install_message:
33
+ post_install_message:
33
34
  rdoc_options: []
34
35
  require_paths:
35
36
  - lib
@@ -45,7 +46,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
45
46
  version: '0'
46
47
  requirements: []
47
48
  rubygems_version: 3.0.6
48
- signing_key:
49
+ signing_key:
49
50
  specification_version: 4
50
51
  summary: Write a short summary, because RubyGems requires one.
51
52
  test_files: []