rubicure 0.4.8 → 0.4.9
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 +7 -1
- data/lib/rubicure/girl.rb +2 -2
- data/lib/rubicure/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: 92ff5a2eae76eadd41e1804f29323491be9db326
|
4
|
+
data.tar.gz: 56635179b78a9749efd1c4db8e577258d0b64b55
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9e9259b460de8ac4dfa4de57ae2443ef36f37d5fbc192775326aa9402e4fafd520555872fc225c5de0e8edf998256b1d8544f4e935fca345b21d02fc79864733
|
7
|
+
data.tar.gz: b82267fda18128f382b077a270a4aed6c430310e7d06ebfb8dcfe6bc9cd92b57f6015a8a739ac1ab24f583f4155b133019a5a93837835d189efffcbfc895e56e
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,11 @@
|
|
1
1
|
## master
|
2
|
-
[full changelog](http://github.com/sue445/rubicure/compare/v0.4.
|
2
|
+
[full changelog](http://github.com/sue445/rubicure/compare/v0.4.9...master)
|
3
|
+
|
4
|
+
## v0.4.9
|
5
|
+
[full changelog](http://github.com/sue445/rubicure/compare/v0.4.8...v0.4.9)
|
6
|
+
|
7
|
+
* Use method instead of instance variable
|
8
|
+
* https://github.com/sue445/rubicure/pull/111
|
3
9
|
|
4
10
|
## v0.4.8
|
5
11
|
[full changelog](http://github.com/sue445/rubicure/compare/v0.4.7...v0.4.8)
|
data/lib/rubicure/girl.rb
CHANGED
@@ -21,7 +21,7 @@ module Rubicure
|
|
21
21
|
:transform_calls,
|
22
22
|
].freeze
|
23
23
|
|
24
|
-
|
24
|
+
attr_accessor :io
|
25
25
|
|
26
26
|
def current_state
|
27
27
|
@current_state ||= 0
|
@@ -190,7 +190,7 @@ module Rubicure
|
|
190
190
|
index = 0
|
191
191
|
message.each_line do |line|
|
192
192
|
sleep(self.class.sleep_sec) if index > 0
|
193
|
-
|
193
|
+
io.puts line
|
194
194
|
index += 1
|
195
195
|
end
|
196
196
|
end
|
data/lib/rubicure/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rubicure
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.9
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- sue445
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-08-
|
11
|
+
date: 2016-08-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|