tlopo-cli 0.1.0 → 0.1.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 +4 -4
- data/README.md +2 -0
- data/lib/tlopo/cli/version.rb +1 -1
- data/tlopo-cli.gemspec +1 -1
- metadata +4 -8
- data/bin/console +0 -14
- data/bin/setup +0 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 71d98ad3d3af2da55fd8c6671ff9be0590aa8965
|
|
4
|
+
data.tar.gz: 83c70b71fa58de6facd3843a8f6ee560b2591b6e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d92bd32276cfda1d2349127138d52a94bae1750c8958bc153559a4156bea62d527229da01e527818461835ea2b85826b578645ca5f7c60e327edb1be5348f79b
|
|
7
|
+
data.tar.gz: ea1eaa874de7c9ce03446fa282839f4c675e1b93de119e2419da51c56688509cfbbf345b98cb4c95c556f35d204d2b6dad240d1ae8137f9b8600fcce76cfba55
|
data/README.md
CHANGED
data/lib/tlopo/cli/version.rb
CHANGED
data/tlopo-cli.gemspec
CHANGED
|
@@ -17,7 +17,7 @@ Gem::Specification.new do |spec|
|
|
|
17
17
|
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
|
|
18
18
|
# to allow pushing to a single host or delete this section to allow pushing to any host.
|
|
19
19
|
if spec.respond_to?(:metadata)
|
|
20
|
-
#spec.metadata['allowed_push_host'] = "TODO: Set to 'http://mygemserver.com'"
|
|
20
|
+
# spec.metadata['allowed_push_host'] = "TODO: Set to 'http://mygemserver.com'"
|
|
21
21
|
else
|
|
22
22
|
raise 'RubyGems 2.0 or newer is required to protect against ' \
|
|
23
23
|
'public gem pushes.'
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: tlopo-cli
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tiago Lopo Da Silva
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-
|
|
11
|
+
date: 2018-02-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -111,9 +111,7 @@ dependencies:
|
|
|
111
111
|
description: A library to speed up CLI apps development
|
|
112
112
|
email:
|
|
113
113
|
- tiagolopo@yahoo.com.br
|
|
114
|
-
executables:
|
|
115
|
-
- console
|
|
116
|
-
- setup
|
|
114
|
+
executables: []
|
|
117
115
|
extensions: []
|
|
118
116
|
extra_rdoc_files: []
|
|
119
117
|
files:
|
|
@@ -125,8 +123,6 @@ files:
|
|
|
125
123
|
- LICENSE.txt
|
|
126
124
|
- README.md
|
|
127
125
|
- Rakefile
|
|
128
|
-
- bin/console
|
|
129
|
-
- bin/setup
|
|
130
126
|
- exe/tlopo-cli
|
|
131
127
|
- lib/tlopo/cli.rb
|
|
132
128
|
- lib/tlopo/cli/version.rb
|
|
@@ -151,7 +147,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
151
147
|
version: '0'
|
|
152
148
|
requirements: []
|
|
153
149
|
rubyforge_project:
|
|
154
|
-
rubygems_version: 2.
|
|
150
|
+
rubygems_version: 2.5.1
|
|
155
151
|
signing_key:
|
|
156
152
|
specification_version: 4
|
|
157
153
|
summary: A library to speed up CLI apps development
|
data/bin/console
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env ruby
|
|
2
|
-
|
|
3
|
-
require 'bundler/setup'
|
|
4
|
-
require 'tlopo/cli'
|
|
5
|
-
|
|
6
|
-
# You can add fixtures and/or initialization code here to make experimenting
|
|
7
|
-
# with your gem easier. You can also use a different console, if you like.
|
|
8
|
-
|
|
9
|
-
# (If you use this, don't forget to add pry to your Gemfile!)
|
|
10
|
-
# require "pry"
|
|
11
|
-
# Pry.start
|
|
12
|
-
|
|
13
|
-
require 'irb'
|
|
14
|
-
IRB.start(__FILE__)
|