percheron 0.7.0 → 0.7.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +8 -0
- data/Rakefile +5 -2
- data/lib/percheron/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 275f1a0fa8f2b50676a512e6f06a1ee4831766a5
|
4
|
+
data.tar.gz: 99c850dc1bc237a36496a0abc97544c643fc1bc3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 24428f1616dfacdf8f6d593634b262ba32e1a57502970fc45722985f94154bc6f89f7426ff15fdb2cf45300b60bb55469c0830900f78d8643b99a6b6806a6dfb
|
7
|
+
data.tar.gz: 6be1aaa7380e32af478b7f08414edea06a17165d977d6e983ce69eda7cffc724356583461e62f01c5f42aea82902e5776564802a8a711c03a3a74089523df3b9
|
data/README.md
CHANGED
@@ -41,6 +41,7 @@ TODO
|
|
41
41
|
|
42
42
|
* Rails - https://github.com/ashmckenzie/percheron-rails#quickstart
|
43
43
|
* Torrent - https://github.com/ashmckenzie/percheron-torrent#quickstart
|
44
|
+
* SaltStack - https://github.com/ashmckenzie/percheron-saltstack#quickstart
|
44
45
|
|
45
46
|
## Testing
|
46
47
|
|
@@ -50,6 +51,13 @@ All (cane, RuboCop, unit and integration):
|
|
50
51
|
bundle exec test
|
51
52
|
```
|
52
53
|
|
54
|
+
Style (cane and RuboCop):
|
55
|
+
|
56
|
+
```shell
|
57
|
+
bundle exec test:style
|
58
|
+
```
|
59
|
+
|
60
|
+
|
53
61
|
## Contributing
|
54
62
|
|
55
63
|
1. Fork it ( https://github.com/ashmckenzie/percheron/fork )
|
data/Rakefile
CHANGED
@@ -3,8 +3,8 @@ require 'rspec/core/rake_task'
|
|
3
3
|
require 'cane/rake_task'
|
4
4
|
require 'rubocop/rake_task'
|
5
5
|
|
6
|
-
desc 'Run cane,
|
7
|
-
task test: %w(test:
|
6
|
+
desc 'Run cane, RuboCop, unit and integration tests'
|
7
|
+
task test: %w(test:style spec:unit spec:integration)
|
8
8
|
|
9
9
|
namespace :test do
|
10
10
|
desc 'Run cane'
|
@@ -12,6 +12,9 @@ namespace :test do
|
|
12
12
|
|
13
13
|
desc 'Run RuboCop'
|
14
14
|
RuboCop::RakeTask.new
|
15
|
+
|
16
|
+
desc 'Run cane and RuboCop'
|
17
|
+
task style: %w(test:cane test:rubocop)
|
15
18
|
end
|
16
19
|
|
17
20
|
RSpec::Core::RakeTask.new('spec') do |config|
|
data/lib/percheron/version.rb
CHANGED