universa_tools 0.1.2 → 0.1.3

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: 473e4cba34a2ce408431e8dce38eee9a04d7f2da7dc461360bce89ad5d6825b2
4
- data.tar.gz: 1e9a87e9b9f0616ca699a0ad413c9d33e4c96c16ea33e8f0ecb5d943e77f6a40
3
+ metadata.gz: 5f02a1207b195576773efc0c3cb78f8b1dc368c164e38b49024f1fe545d714d2
4
+ data.tar.gz: 21fdb60b9ff17182cef5c88fae6a1b60b549fcc5b6d805f68e6f658c02874ff1
5
5
  SHA512:
6
- metadata.gz: 3361b5c3726903434c2cc4a8b5bc5ab40ee74660409cf3d7465f75e6bb3cb75ea19629d05332c61959bbf565be038c20a47e6abf7193195f2d28dea2225b3c81
7
- data.tar.gz: 354215b2f1ea6575c29e97e67601913f3ff2f6df78020ee82ef6ab5f579c6a57c55aee976465c4977751679a019a23aa10b5e2e4dfdc9db56f7626076a3597b2
6
+ metadata.gz: b57160bfded93d70be7221b9ea6fc9bc2723a77532da5e1410e23a402393855d461c0e8eeb6700bbfe921364d92a2451ac9929c484fb883e8992ce29a081e88d
7
+ data.tar.gz: 7b775b905678873dbd1c8555dab5df456789b440aee4e2b4971256386b5cf9635adc8b166c150b50be1c8215ce51a0b2b01a6242f75be8529efe670a5419788b
data/.idea/workspace.xml CHANGED
@@ -4,6 +4,7 @@
4
4
  <list default="true" id="b5de240c-a3f4-4e4f-a942-24748bb7a400" name="Default Changelist" comment="">
5
5
  <change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
6
6
  <change beforePath="$PROJECT_DIR$/lib/universa_tools/uniring.rb" beforeDir="false" afterPath="$PROJECT_DIR$/lib/universa_tools/uniring.rb" afterDir="false" />
7
+ <change beforePath="$PROJECT_DIR$/universa_tools.gemspec" beforeDir="false" afterPath="$PROJECT_DIR$/universa_tools.gemspec" afterDir="false" />
7
8
  </list>
8
9
  <option name="EXCLUDED_CONVERTED_TO_IGNORED" value="true" />
9
10
  <option name="SHOW_DIALOG" value="false" />
@@ -251,7 +252,7 @@
251
252
  <workItem from="1566484011256" duration="10407000" />
252
253
  <workItem from="1566652054854" duration="6251000" />
253
254
  <workItem from="1566918610808" duration="6926000" />
254
- <workItem from="1567097255700" duration="36546000" />
255
+ <workItem from="1567097255700" duration="37645000" />
255
256
  </task>
256
257
  <task id="LOCAL-00001" summary="initial">
257
258
  <created>1566484458753</created>
@@ -316,7 +317,14 @@
316
317
  <option name="project" value="LOCAL" />
317
318
  <updated>1567373962400</updated>
318
319
  </task>
319
- <option name="localTasksCounter" value="10" />
320
+ <task id="LOCAL-00010" summary="missing docs">
321
+ <created>1567374720298</created>
322
+ <option name="number" value="00010" />
323
+ <option name="presentableId" value="LOCAL-00010" />
324
+ <option name="project" value="LOCAL" />
325
+ <updated>1567374720298</updated>
326
+ </task>
327
+ <option name="localTasksCounter" value="11" />
320
328
  <servers />
321
329
  </component>
322
330
  <component name="TypeScriptGeneratedFilesManager">
@@ -345,7 +353,8 @@
345
353
  <MESSAGE value="spec fixed" />
346
354
  <MESSAGE value="more specs" />
347
355
  <MESSAGE value="first working version. KeyRing class and uniring CLI interface to it." />
348
- <option name="LAST_COMMIT_MESSAGE" value="first working version. KeyRing class and uniring CLI interface to it." />
356
+ <MESSAGE value="missing docs" />
357
+ <option name="LAST_COMMIT_MESSAGE" value="missing docs" />
349
358
  </component>
350
359
  <component name="XDebuggerManager">
351
360
  <breakpoint-manager>
@@ -44,7 +44,7 @@ class Uniring
44
44
  def init_opts &initializer
45
45
  @option_parser = OptionParser.new { |opts|
46
46
  opts.banner = <<-End
47
- #{ANSI.bold { "\nUniversa KeyRing tool #{UniversaTools::VERSION} over #{Universa::VERSION}" }}
47
+ #{ANSI.bold { "\nUniversa KeyRing tool #{UniversaTools::VERSION}, Universa core #{Universa::VERSION}" }}
48
48
  End
49
49
  @usage = <<-End
50
50
 
@@ -1,3 +1,3 @@
1
1
  module UniversaTools
2
- VERSION = "0.1.2"
2
+ VERSION = "0.1.3"
3
3
  end
@@ -10,9 +10,10 @@ Gem::Specification.new do |spec|
10
10
  spec.email = ["real.sergeych@gmail.com"]
11
11
 
12
12
  spec.summary = %q{Universa blockchain tools}
13
- spec.description = %q{Extended command line and library tools to deal with Universa blockchain. Based on unversa gem}
13
+ spec.description = %q{Extended command line and library tools to deal with Universa blockchain.}
14
14
  spec.homepage = "https://github.com/sergeych/universa_tools"
15
15
  spec.license = "MIT"
16
+ spec.required_ruby_version = '>= 2.6'
16
17
 
17
18
  # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
18
19
  # to allow pushing to a single host or delete this section to allow pushing to any host.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: universa_tools
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - sergeych
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-09-01 00:00:00.000000000 Z
11
+ date: 2019-09-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: universa
@@ -95,7 +95,6 @@ dependencies:
95
95
  - !ruby/object:Gem::Version
96
96
  version: '3.0'
97
97
  description: Extended command line and library tools to deal with Universa blockchain.
98
- Based on unversa gem
99
98
  email:
100
99
  - real.sergeych@gmail.com
101
100
  executables:
@@ -141,7 +140,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
141
140
  requirements:
142
141
  - - ">="
143
142
  - !ruby/object:Gem::Version
144
- version: '0'
143
+ version: '2.6'
145
144
  required_rubygems_version: !ruby/object:Gem::Requirement
146
145
  requirements:
147
146
  - - ">="