tlopo-cli 0.1.0 → 0.1.1

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
  SHA1:
3
- metadata.gz: 1a5668d6843437f528a5a01290e8d0122e2556bf
4
- data.tar.gz: 569e1a684b49cf6a8d43a830be71463e41c13172
3
+ metadata.gz: 71d98ad3d3af2da55fd8c6671ff9be0590aa8965
4
+ data.tar.gz: 83c70b71fa58de6facd3843a8f6ee560b2591b6e
5
5
  SHA512:
6
- metadata.gz: c3c4c6d3a2ee22eba315154bafb17c5fb59ac5b2170ed1e41e1c77d5dd92b1649654433bf564128779b08814349ac4092f0778f18e62a5b0bba9741959d91c25
7
- data.tar.gz: c73e7b0a44ab46afa619f07d9bacf835c0fe066dca8abeb0ea83e1b7b0f7bcfc2a8d065781eca968d7e269f216c817f2144d42e25abf0f67a05ae1c3d41fcff5
6
+ metadata.gz: d92bd32276cfda1d2349127138d52a94bae1750c8958bc153559a4156bea62d527229da01e527818461835ea2b85826b578645ca5f7c60e327edb1be5348f79b
7
+ data.tar.gz: ea1eaa874de7c9ce03446fa282839f4c675e1b93de119e2419da51c56688509cfbbf345b98cb4c95c556f35d204d2b6dad240d1ae8137f9b8600fcce76cfba55
data/README.md CHANGED
@@ -110,6 +110,8 @@ cfg = {
110
110
  }
111
111
  ]
112
112
  }
113
+
114
+ Tlopo::Cli.new(config: cfg).run
113
115
  ```
114
116
  In action:
115
117
  ```bash
@@ -1,5 +1,5 @@
1
1
  module Tlopo
2
2
  class Cli
3
- VERSION = '0.1.0'.freeze
3
+ VERSION = '0.1.1'.freeze
4
4
  end
5
5
  end
@@ -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.0
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-01-21 00:00:00.000000000 Z
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.6.13
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
@@ -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__)
data/bin/setup DELETED
@@ -1,8 +0,0 @@
1
- #!/usr/bin/env bash
2
- set -euo pipefail
3
- IFS=$'\n\t'
4
- set -vx
5
-
6
- bundle install
7
-
8
- # Do any other automated setup that you need to do here