hsp 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 +4 -4
- data/hsp.gemspec +2 -2
- data/lib/hsp/version.rb +1 -1
- metadata +4 -5
- 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: d314caec3ff7b313e662dd240722270a2f78e4ae
|
4
|
+
data.tar.gz: 211bfd22dbd6fe5231099c8a35b99329fe464505
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b0347cf49baae881a96cb74b7a8ee8331991822b127950cae8c57cc840e4a9af0e87b169b61531089013a2991979552728eb4e28d55d6acd672874379d7a3143
|
7
|
+
data.tar.gz: f4c4d0b450dd8eccc1096fa1c9fd2b9e85598f2b63d8040c85e00599b690e0bd3a8d56ba6597da2c433074270a80dbd741d47a1453f31e20e5d9b0334d123710
|
data/hsp.gemspec
CHANGED
@@ -16,8 +16,8 @@ Gem::Specification.new do |spec|
|
|
16
16
|
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
17
17
|
f.match(%r{^(test|spec|features)/})
|
18
18
|
end
|
19
|
-
|
20
|
-
spec.executables = spec.files.grep(%r{^
|
19
|
+
|
20
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
21
21
|
spec.require_paths = ["lib"]
|
22
22
|
|
23
23
|
spec.add_dependency "thor", '>= 0.19.4'
|
data/lib/hsp/version.rb
CHANGED
metadata
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: hsp
|
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
|
- Preston Lee
|
8
8
|
autorequire:
|
9
|
-
bindir:
|
9
|
+
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
date: 2017-03-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
@@ -112,7 +112,8 @@ description: Command line utilities for interacting with an account on the publi
|
|
112
112
|
HSPC Marketplace, or any alternative deployment.
|
113
113
|
email:
|
114
114
|
- preston.lee@prestonlee.com
|
115
|
-
executables:
|
115
|
+
executables:
|
116
|
+
- hsp
|
116
117
|
extensions: []
|
117
118
|
extra_rdoc_files: []
|
118
119
|
files:
|
@@ -122,9 +123,7 @@ files:
|
|
122
123
|
- Gemfile
|
123
124
|
- README.md
|
124
125
|
- Rakefile
|
125
|
-
- bin/console
|
126
126
|
- bin/hsp
|
127
|
-
- bin/setup
|
128
127
|
- hsp.gemspec
|
129
128
|
- lib/hsp.rb
|
130
129
|
- lib/hsp/agent.rb
|
data/bin/console
DELETED
@@ -1,14 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
|
3
|
-
require "bundler/setup"
|
4
|
-
require "hsp"
|
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__)
|