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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: cbab3f52787ff0b165f9482186771b07ff673df1
4
- data.tar.gz: ce6eb63e3621d595f814c8806728bfe9b43fae7b
3
+ metadata.gz: 275f1a0fa8f2b50676a512e6f06a1ee4831766a5
4
+ data.tar.gz: 99c850dc1bc237a36496a0abc97544c643fc1bc3
5
5
  SHA512:
6
- metadata.gz: 4b198258dc8f5226a08563b77d1826af3f56eea705c35632d85bbca4d9e49be216c17fc5b776404fe7caac50ac2e84aa1d5c507493faf4edbaf110b276a1c3bc
7
- data.tar.gz: f790fdeb14e59ce702f5569ea4043fd4747acfd6bc91934ed86646be290bd7e7d98782e049c0da198e9446f9b83d20e7724e7d17e8229502825172bc8d940077
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, rubocop, unit and integration tests'
7
- task test: %w(test:cane test:rubocop spec:unit spec:integration)
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|
@@ -1,3 +1,3 @@
1
1
  module Percheron
2
- VERSION = '0.7.0'
2
+ VERSION = '0.7.1'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: percheron
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.0
4
+ version: 0.7.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ash McKenzie