infrataster 0.1.10 → 0.1.11
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/CHANGELOG.md +4 -1
- data/README.md +7 -0
- data/lib/infrataster/server.rb +1 -1
- data/lib/infrataster/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 80561f12bb0ff0f01741cdb57baaea2d56513800
|
|
4
|
+
data.tar.gz: aea47ce92d3d24b3f8ac017f2aad48a8e71213da
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f5ca242ca143cb319d2bbc36f99d4261ecf3ea06092ef91006e89847bc6d618ff4f4ed736fe2915b23f87415f9458c75740edb3deb972da58a7395040a091fd7
|
|
7
|
+
data.tar.gz: 9bdfabefd96a457c42b735b5510c77b3c87c9e8a53b4f1c8e86effb677f3f2e0cfb8355e77e8b67ef94dcf0a3ce3bf88e8065e46e70edf5c37abe016a11c0b0a
|
data/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
# Infrataster Changelog
|
|
2
|
+
## v0.1.11
|
|
3
|
+
|
|
4
|
+
* Slight bug fixes
|
|
2
5
|
|
|
3
6
|
## v0.1.10
|
|
4
7
|
|
|
@@ -18,7 +21,7 @@
|
|
|
18
21
|
|
|
19
22
|
## v0.1.6
|
|
20
23
|
|
|
21
|
-
* Implement `Server#
|
|
24
|
+
* Implement `Server#ssh_exec` which executes a command on the server via SSH.
|
|
22
25
|
|
|
23
26
|
## v0.1.5
|
|
24
27
|
|
data/README.md
CHANGED
|
@@ -6,6 +6,7 @@
|
|
|
6
6
|
|
|
7
7
|
Infrastructure Behavior Testing Framework.
|
|
8
8
|
|
|
9
|
+
|
|
9
10
|
## Basic Usage with Vagrant
|
|
10
11
|
|
|
11
12
|
First, create `Gemfile`:
|
|
@@ -270,6 +271,12 @@ $ bundle exec rake spec:integration
|
|
|
270
271
|
|
|
271
272
|
## Presentations
|
|
272
273
|
|
|
274
|
+
* https://speakerdeck.com/ryotarai/introducing-infrataster
|
|
275
|
+
|
|
276
|
+
<a href="https://speakerdeck.com/ryotarai/introducing-infrataster">
|
|
277
|
+
<img src="http://i.gyazo.com/305b8b041acd3569268ece4e07e2517a.png" alt="Introducing Infrataster" width="300px">
|
|
278
|
+
</a>
|
|
279
|
+
|
|
273
280
|
* https://speakerdeck.com/ryotarai/infrataster-infra-behavior-testing-framework-number-oedo04
|
|
274
281
|
|
|
275
282
|
## Changelog
|
data/lib/infrataster/server.rb
CHANGED
|
@@ -138,7 +138,7 @@ module Infrataster
|
|
|
138
138
|
|
|
139
139
|
def fetch_all_addresses
|
|
140
140
|
result = []
|
|
141
|
-
ssh_exec('ip addr').each_line do |line|
|
|
141
|
+
ssh_exec('PATH="/sbin:$PATH" ip addr').each_line do |line|
|
|
142
142
|
#inet 10.0.2.15/24 brd 10.0.2.255 scope global eth0
|
|
143
143
|
if %r{inet ([^/]+)} =~ line
|
|
144
144
|
result << $1
|
data/lib/infrataster/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: infrataster
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.11
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ryota Arai
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-05-
|
|
11
|
+
date: 2014-05-29 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rspec
|