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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 487664de95ea55c4bca12a7ac0c47081bb5ae91c
4
- data.tar.gz: a95b87e1db1489398af2c870bfe67b86da9f7918
3
+ metadata.gz: d314caec3ff7b313e662dd240722270a2f78e4ae
4
+ data.tar.gz: 211bfd22dbd6fe5231099c8a35b99329fe464505
5
5
  SHA512:
6
- metadata.gz: 159d576a27bef2a42d1d5ac4558c8e7a7f54ea4aa5c162edbcb658b835efacf8b98170dc48c4a7191ba02f9f434b2cb2170dc53c2ba44d3a08ca0458a9e13301
7
- data.tar.gz: 60fecace861307fc56e6ebf4c3e62a7482fb4ab946cecbdb4c09fcd2a6e35a0477f2a79753e307db4724ee9ab22ddd1fdfaed980859ac1be1d49d30a81e8dc18
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
- spec.bindir = "exe"
20
- spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
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
@@ -1,3 +1,3 @@
1
1
  module Hsp
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
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.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Preston Lee
8
8
  autorequire:
9
- bindir: exe
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__)
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