terminal.com 1.0.0 → 1.0.1

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
  SHA1:
3
- metadata.gz: 8a544af551227712359d5f0929db2a7cd0f9353d
4
- data.tar.gz: 091fc1c5a5b923520d53df6df3388b3723fd92c5
3
+ metadata.gz: a0ae4c09c87db319236fe5ff29d710a10b40a8bb
4
+ data.tar.gz: 84b9c4192c909be2b64d4d54604f32781ae07843
5
5
  SHA512:
6
- metadata.gz: 668192eafa2b10a3800be223d081e0d466f99b5e126039f37d3b3465e5d521861a56ab3c5524bda289933ebab1199810f3e8573d0dbb6e3222b57e0179b11c6a
7
- data.tar.gz: 12be6ca48dffc0c3b627cff20d88d220d1be7999e3fdbab48d8341e5fcf6c596c9b634331a192bf06b275bab005253617ac8b94876c7c4bc0321c4f1da777ab5
6
+ metadata.gz: 2f431f5ace0c9c13469350e4e6ec74545b177068ff2fe276bfc4556edfbd52a8acce603ac9c3dc3f6d6549a6d7a569dda5f124e5f7296676872f809c8856296b
7
+ data.tar.gz: 16824980601239c24aaf9be677bb0965f5fcbe173315270924ad55dfe03038892f55f4d2927b1f9aa997ae6fac3ded768a23e60024be6461c8a3ade0a2dc6db5
data/bin/terminal.com CHANGED
@@ -47,11 +47,11 @@ end
47
47
  def usage
48
48
  if File.exist?(File.expand_path('../docs/help.txt', __dir__))
49
49
  # Running locally.
50
- puts File.read(File.expand_path('../docs/help.txt', __dir__))
50
+ File.read(File.expand_path('../docs/help.txt', __dir__))
51
51
  else
52
52
  # RubyGems installation.
53
53
  spec = Gem::Specification.find_by_name('terminal.com')
54
- puts File.read(File.join(spec.gem_dir, 'docs', 'help.txt'))
54
+ File.read(File.join(spec.gem_dir, 'docs', 'help.txt'))
55
55
  end
56
56
  end
57
57
 
data/lib/terminal.com.rb CHANGED
@@ -11,7 +11,7 @@ require 'time'
11
11
  module Terminal
12
12
 
13
13
  # The gem version.
14
- VERSION = '1.0.0'
14
+ VERSION = '1.0.1'
15
15
 
16
16
  # The Terminal.com API version.
17
17
  API_VERSION = 'v0.1'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: terminal.com
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - James C Russell