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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 15a7285d66344e5c446457a0087f020721a2146f
4
- data.tar.gz: 031805c8c44797156c92683bd534b02a8140c4bc
3
+ metadata.gz: 80561f12bb0ff0f01741cdb57baaea2d56513800
4
+ data.tar.gz: aea47ce92d3d24b3f8ac017f2aad48a8e71213da
5
5
  SHA512:
6
- metadata.gz: f6cdc5c1a0feb0a1771557d691c6c7ff22292326f2a7fba3d9904811c8f0ce61f6905f3f5ebc38d2a8123e6e6e130bb8381c22dc4cd74d656b0b5136dea7552d
7
- data.tar.gz: 3d0c51c1210d0ffdf89ef0cf3a2cac23864264f2eaced0a10778f9e8997190ceb26a7e0764af8913b7fc9c02af9b461b8d0909c07e2f2246290212d2b9a4f4f3
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#ssh\_exec` which executes a command on the server via SSH.
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
@@ -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
@@ -1,3 +1,3 @@
1
1
  module Infrataster
2
- VERSION = "0.1.10"
2
+ VERSION = "0.1.11"
3
3
  end
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.10
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-21 00:00:00.000000000 Z
11
+ date: 2014-05-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rspec