rultor 0.3.1 → 0.3.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.
- data/.rultor.yml +3 -1
- data/README.md +2 -1
- data/features/step_definitions/steps.rb +1 -1
- data/lib/rultor/version.rb +1 -1
- data/rubygems.yml.asc +17 -0
- data/rultor.gemspec +2 -2
- metadata +3 -3
- data/.coveralls.yml +0 -2
data/.rultor.yml
CHANGED
data/README.md
CHANGED
|
@@ -31,4 +31,5 @@ Read more about Rultor [`decrypt`](http://doc.rultor.com/reference.html#decrypt)
|
|
|
31
31
|
configuration option.
|
|
32
32
|
|
|
33
33
|
Make sure you have [gpg](https://www.gnupg.org/documentation/manpage.html) and
|
|
34
|
-
[bcrypt](http://bcrypt.sourceforge.net/) installed on your machine
|
|
34
|
+
[bcrypt](http://bcrypt.sourceforge.net/) installed on your machine
|
|
35
|
+
(only Unix or Mac OS at the moment).
|
|
@@ -51,7 +51,7 @@ Given(/^I have a "([^"]*)" file with content:$/) do |file, text|
|
|
|
51
51
|
end
|
|
52
52
|
end
|
|
53
53
|
|
|
54
|
-
When(
|
|
54
|
+
When(%r{^I run bin\/rultor with "([^"]*)"$}) do |arg|
|
|
55
55
|
home = File.join(File.dirname(__FILE__), '../..')
|
|
56
56
|
@stdout = `ruby -I#{home}/lib #{home}/bin/rultor #{arg} 2>&1`
|
|
57
57
|
@exitstatus = $CHILD_STATUS.exitstatus
|
data/lib/rultor/version.rb
CHANGED
data/rubygems.yml.asc
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
-----BEGIN PGP MESSAGE-----
|
|
2
|
+
Version: GnuPG v1
|
|
3
|
+
|
|
4
|
+
hQEMA5qETcGag5w6AQf+Ms1RuzaGtKizjG67IuzrmB0sVKPuCBvs/k/cuoVWvjW9
|
|
5
|
+
0N/OKco0umEz13RB1DhwjQb3/xkdcsCZLY90pVp42i6BldgCKGx0CM4QQenohEQa
|
|
6
|
+
wqQKDrfeKDrLWXNE+SXs0KVVXPNu6gQEVjKni+wJNuMnJg+9OSeBKHbN29mK6mnh
|
|
7
|
+
JIG//GmRY8uBJ/bcTRc1IFR9GLxXDgiXCu3GoFE3tVLjiArQVrj7FIuhVMTY/3na
|
|
8
|
+
w/xZF3m/MTpY1WpeGZTEjHWH9U1hucrYOX+B2z7Gud2bXjHpibSNwtuV/eQvDZtO
|
|
9
|
+
cge7dpN948lQom6mn6TPz1MyEsYiycpAa9NVW81e9NLARwH8w4VBxE+54gneCS2k
|
|
10
|
+
EiQBXi5Dh1sv+3Xqz7lEpEdbsoS3/oAdCLFPS66XGXDUQIvKHsHg7WtvmcdTP9Nk
|
|
11
|
+
oPqhLDapG0dFNM8IdcQDZ+VfuPhA9p5egxxjhpUz5OhVmBvpkKMl/L8PIYj2q2U8
|
|
12
|
+
Q2T0Py1xafbd+1bIn9NeV+oVUyWYIytP/aKW09nskKtU6XcFNUGrtmubn1/Euv7o
|
|
13
|
+
DFfAugnr8gm9yay7QEB64G39Ev99oHJWKL2fa7DLxoeZGvV33u0a3SQCeuqrA+8m
|
|
14
|
+
8GW1lOgZq9Ov7gQs4JaqBRBmw8KK9xeMjaM77XpicFZz+y1ohAMPzjsHyRMBMqlC
|
|
15
|
+
vjyprZCjzofs
|
|
16
|
+
=44M9
|
|
17
|
+
-----END PGP MESSAGE-----
|
data/rultor.gemspec
CHANGED
|
@@ -48,8 +48,8 @@ Gem::Specification.new do |s|
|
|
|
48
48
|
s.email = 'yegor@teamed.io'
|
|
49
49
|
s.homepage = 'http://github.com/yegor256/rultor-remote'
|
|
50
50
|
s.files = `git ls-files`.split($RS)
|
|
51
|
-
s.executables = s.files.grep(
|
|
52
|
-
s.test_files = s.files.grep(
|
|
51
|
+
s.executables = s.files.grep(%r{^bin\/}) { |f| File.basename(f) }
|
|
52
|
+
s.test_files = s.files.grep(%r{^(test|spec|features)\/})
|
|
53
53
|
s.rdoc_options = ['--charset=UTF-8']
|
|
54
54
|
s.extra_rdoc_files = %w(README.md LICENSE.txt)
|
|
55
55
|
s.add_runtime_dependency 'rake', '~> 10.1'
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rultor
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.2
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date:
|
|
12
|
+
date: 2015-05-10 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: rake
|
|
@@ -188,7 +188,6 @@ extra_rdoc_files:
|
|
|
188
188
|
- README.md
|
|
189
189
|
- LICENSE.txt
|
|
190
190
|
files:
|
|
191
|
-
- .coveralls.yml
|
|
192
191
|
- .gitignore
|
|
193
192
|
- .rubocop.yml
|
|
194
193
|
- .rultor.yml
|
|
@@ -209,6 +208,7 @@ files:
|
|
|
209
208
|
- lib/rultor.rb
|
|
210
209
|
- lib/rultor/encrypt.rb
|
|
211
210
|
- lib/rultor/version.rb
|
|
211
|
+
- rubygems.yml.asc
|
|
212
212
|
- rultor.gemspec
|
|
213
213
|
- test/test_encrypt.rb
|
|
214
214
|
- test/test_rultor.rb
|
data/.coveralls.yml
DELETED