itamae-specinfra-command 0.0.1 → 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile.lock +2 -2
- data/itamae-specinfra-command.gemspec +0 -9
- data/lib/itamae/specinfra/command/version.rb +1 -1
- metadata +3 -8
- data/bin/console +0 -14
- data/bin/setup +0 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1286fb5578f1428d4a0d7b38cbb74afd498073a72acc59561fde2d5be51f71f7
|
|
4
|
+
data.tar.gz: 7e05f9e0e6fef7e4879842bc7b6676da713258e869a9a98ed0ac47d85beda332
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7723888007e9007b5ccedeb47f76e4b7f628eb2674c58c5c5629899d8666ccf0b673a3891615e31ed9c0099eb0f38d5ae46421227e21bbcc29071b962390b0a6
|
|
7
|
+
data.tar.gz: baf4c4b8eaad753326c0db02fefe84c02d957008c2aeafb2061e5da880d1f1070333d2e1e626319246c0748b20f672463f31eb5d3a5b8eef67013039f399ca5c
|
data/Gemfile.lock
CHANGED
|
@@ -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
|
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.
|
|
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__)
|