itamae-specinfra-command 0.0.1 → 0.0.2

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
  SHA256:
3
- metadata.gz: 8b0140e3a5bf1c9c41b0fb5129d4d8fbaa8faf5c74c779151af4a7730448037e
4
- data.tar.gz: 4a0318decda851389be6b5cc7ed30a3a0fac9a2ee99f3fa505909ee2d152c882
3
+ metadata.gz: 1286fb5578f1428d4a0d7b38cbb74afd498073a72acc59561fde2d5be51f71f7
4
+ data.tar.gz: 7e05f9e0e6fef7e4879842bc7b6676da713258e869a9a98ed0ac47d85beda332
5
5
  SHA512:
6
- metadata.gz: '00608187fecd07ec4f0db500e1620fa5cba175ab2451286339f391913432efdede79104894f60391211bc2c7b3b68fe91484ce34c1be9b2d4b690de1135d8d53'
7
- data.tar.gz: a0e2c3e7cd07fe7806011a94176ce3acac3fd92d64ccd7a079e7ab8f08df73758723463f74557cfe0591a009d3dbcf66febb1a7b4b0c0e59e3f683ac91fa1950
6
+ metadata.gz: 7723888007e9007b5ccedeb47f76e4b7f628eb2674c58c5c5629899d8666ccf0b673a3891615e31ed9c0099eb0f38d5ae46421227e21bbcc29071b962390b0a6
7
+ data.tar.gz: baf4c4b8eaad753326c0db02fefe84c02d957008c2aeafb2061e5da880d1f1070333d2e1e626319246c0748b20f672463f31eb5d3a5b8eef67013039f399ca5c
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- itamae-specinfra-command (0.0.1)
4
+ itamae-specinfra-command (0.0.2)
5
5
  itamae
6
6
  specinfra
7
7
 
@@ -39,4 +39,4 @@ DEPENDENCIES
39
39
  rake (~> 10.0)
40
40
 
41
41
  BUNDLED WITH
42
- 1.16.0
42
+ 1.16.1
@@ -13,15 +13,6 @@ Gem::Specification.new do |spec|
13
13
  spec.homepage = 'https://github.com/ntrv/itamae-specinfra-command'
14
14
  spec.license = 'Apache'
15
15
 
16
- # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
17
- # to allow pushing to a single host or delete this section to allow pushing to any host.
18
- if spec.respond_to?(:metadata)
19
- spec.metadata['allowed_push_host'] = 'https://rubygems.org'
20
- else
21
- raise 'RubyGems 2.0 or newer is required to protect against ' \
22
- 'public gem pushes.'
23
- end
24
-
25
16
  spec.files = `git ls-files -z`.split("\x0").reject do |f|
26
17
  f.match(%r{^(test|spec|features)/})
27
18
  end
@@ -1,7 +1,7 @@
1
1
  module Itamae
2
2
  module Specinfra
3
3
  class Command
4
- VERSION = '0.0.1'
4
+ VERSION = '0.0.2'
5
5
  end
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: itamae-specinfra-command
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - ntrv
@@ -69,9 +69,7 @@ dependencies:
69
69
  description: Wrapper for using Specinfra Command in Itamae
70
70
  email:
71
71
  - hydrangea56@me.com
72
- executables:
73
- - console
74
- - setup
72
+ executables: []
75
73
  extensions: []
76
74
  extra_rdoc_files: []
77
75
  files:
@@ -81,16 +79,13 @@ files:
81
79
  - LICENSE
82
80
  - README.md
83
81
  - Rakefile
84
- - bin/console
85
- - bin/setup
86
82
  - itamae-specinfra-command.gemspec
87
83
  - lib/itamae/specinfra/command.rb
88
84
  - lib/itamae/specinfra/command/version.rb
89
85
  homepage: https://github.com/ntrv/itamae-specinfra-command
90
86
  licenses:
91
87
  - Apache
92
- metadata:
93
- allowed_push_host: https://rubygems.org
88
+ metadata: {}
94
89
  post_install_message:
95
90
  rdoc_options: []
96
91
  require_paths:
data/bin/console DELETED
@@ -1,14 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- require "bundler/setup"
4
- require "itamae/specinfra/command"
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