rultor 0.3.1 → 0.3.2

Sign up to get free protection for your applications and to get access to all the features.
data/.rultor.yml CHANGED
@@ -1,5 +1,7 @@
1
+ decrypt:
2
+ rubygems.yml: "repo/rubygems.yml.asc"
3
+
1
4
  assets:
2
- rubygems.yml: "yegor256/home#assets/rubygems.yml"
3
5
  s3cfg: "yegor256/home#assets/s3cfg"
4
6
 
5
7
  install: |
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(/^I run bin\/rultor with "([^"]*)"$/) do |arg|
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
@@ -33,5 +33,5 @@
33
33
  # Copyright:: Copyright (c) 2014 Yegor Bugayenko
34
34
  # License:: BSD
35
35
  module Rultor
36
- VERSION = '0.3.1'
36
+ VERSION = '0.3.2'
37
37
  end
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(/^bin\//) { |f| File.basename(f) }
52
- s.test_files = s.files.grep(/^(test|spec|features)\//)
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.1
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: 2014-11-07 00:00:00.000000000 Z
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
@@ -1,2 +0,0 @@
1
- service_name: travis-pro
2
- repo_token: RSacYiWLQuM3NVYduzPjnDMik2Tpv5gtc