sherpa-cli 0.2.0 → 0.3.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: 0be5aa733f3d96df1cc044760bb29e06b21858f2
4
- data.tar.gz: 821fac8c794e4f20974c37034c13c3658aebce00
3
+ metadata.gz: 3b55977c7c9ee8d75c0bc552ad8fe0b970da6fc9
4
+ data.tar.gz: 40ae022379315df0c072a21d41e32163a126803d
5
5
  SHA512:
6
- metadata.gz: f396424086909e2d49d0f028a2285940d524b635d602cfac2826d93de00426fd827e6c3d2255e1665622afc4ab75bc7d99d2bb077754ff4b14d60618b949ed46
7
- data.tar.gz: ea2bab60ae8617656217ac19dcbbe019aa830dc34cb890104153a2b72e81c692c6edd074dc3739e0534dfe3df48d04cb975441aae51376182fe51ebdb29721ba
6
+ metadata.gz: 1d247289f0c2f3561f90e35597e71e91bdcf1899ff563495560fcf4d448a0d334edc2f7e63f814c3379e5c01597f1226d974269c0955a8858b11e3cbeec96248
7
+ data.tar.gz: 7557034b4b9ee0ef5762b2619ca8a028ecb865b9948e3a5d39d90986e55eab72805ce110dcfc306d1d06a4c9f07597b9f2b93b12841a512d81d920cb3d4c63fc
@@ -1,3 +1,3 @@
1
1
  module Sherpa
2
- VERSION = "0.2.0"
2
+ VERSION = "0.3.1"
3
3
  end
data/sherpa.gemspec CHANGED
@@ -15,8 +15,7 @@ Gem::Specification.new do |spec|
15
15
  spec.license = "MIT"
16
16
 
17
17
  spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
18
- spec.bindir = "exe"
19
- spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
18
+ spec.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
20
19
  spec.require_paths = ["lib"]
21
20
  spec.required_ruby_version = "~> 2.2"
22
21
 
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sherpa-cli
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael Stock
8
8
  - Andrew Seward
9
9
  autorequire:
10
- bindir: exe
10
+ bindir: bin
11
11
  cert_chain: []
12
12
  date: 2016-01-19 00:00:00.000000000 Z
13
13
  dependencies:
@@ -127,7 +127,8 @@ description: Allows interaction with Sherpa service via a command prompt applica
127
127
  email:
128
128
  - mikeastock@gmail.com
129
129
  - awswrd@gmail.com
130
- executables: []
130
+ executables:
131
+ - sherpa
131
132
  extensions: []
132
133
  extra_rdoc_files: []
133
134
  files:
@@ -138,9 +139,6 @@ files:
138
139
  - LICENSE.txt
139
140
  - README.md
140
141
  - Rakefile
141
- - bin/console
142
- - bin/rspec
143
- - bin/setup
144
142
  - bin/sherpa
145
143
  - circle.yml
146
144
  - lib/sherpa.rb
data/bin/console DELETED
@@ -1,14 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- require "bundler/setup"
4
- require "sherpa"
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
data/bin/rspec DELETED
@@ -1,16 +0,0 @@
1
- #!/usr/bin/env ruby
2
- #
3
- # This file was generated by Bundler.
4
- #
5
- # The application 'rspec' is installed as part of a gem, and
6
- # this file is here to facilitate running it.
7
- #
8
-
9
- require 'pathname'
10
- ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11
- Pathname.new(__FILE__).realpath)
12
-
13
- require 'rubygems'
14
- require 'bundler/setup'
15
-
16
- load Gem.bin_path('rspec-core', 'rspec')
data/bin/setup DELETED
@@ -1,7 +0,0 @@
1
- #!/bin/bash
2
- set -euo pipefail
3
- IFS=$'\n\t'
4
-
5
- bundle install
6
-
7
- # Do any other automated setup that you need to do here