Skip to content

Commit c7e9192

Browse files
author
Bren Briggs
committed
modulesync 0.13.0
1 parent 5c096e0 commit c7e9192

File tree

3 files changed

+9
-13
lines changed

3 files changed

+9
-13
lines changed

.github/CONTRIBUTING.md

+7-2
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,11 @@ check various syntax and style things. You can run these locally with:
5252
bundle exec rake lint
5353
bundle exec rake validate
5454

55+
It will also run some [Rubocop](http://batsov.com/rubocop/) tests
56+
against it. You can run those locally ahead of time with:
57+
58+
bundle exec rake rubocop
59+
5560
## Running the unit tests
5661

5762
The unit test suite covers most of the code, as mentioned above please
@@ -85,9 +90,9 @@ with:
8590
bundle exec rake acceptance
8691

8792
This will run the tests on an Ubuntu 12.04 virtual machine. You can also
88-
run the integration tests against Centos 6.5 with.
93+
run the integration tests against Centos 6.6 with.
8994

90-
BEAKER_set=centos-64-x64 bundle exec rake acceptances
95+
BEAKER_set=centos-66-x64 bundle exec rake acceptances
9196

9297
If you don't want to have to recreate the virtual machine every time you
9398
can use `BEAKER_DESTROY=no` and `BEAKER_PROVISION=no`. On the first run you will

.msync.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
modulesync_config_version: '0.12.8'
1+
modulesync_config_version: '0.13.0'

Rakefile

+1-10
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,7 @@ require 'puppet_blacksmith/rake_tasks'
33
require 'voxpupuli/release/rake_tasks'
44
require 'puppet-strings/rake_tasks'
55

6-
if RUBY_VERSION >= '2.3.0'
7-
require 'rubocop/rake_task'
8-
9-
RuboCop::RakeTask.new(:rubocop) do |task|
10-
# These make the rubocop experience maybe slightly less terrible
11-
task.options = ['-D', '-S', '-E']
12-
end
13-
end
14-
15-
PuppetLint.configuration.log_format = '%{path}:%{linenumber}:%{check}:%{KIND}:%{message}'
6+
PuppetLint.configuration.log_format = '%{path}:%{line}:%{check}:%{KIND}:%{message}'
167
PuppetLint.configuration.fail_on_warnings = true
178
PuppetLint.configuration.send('relative')
189
PuppetLint.configuration.send('disable_140chars')

0 commit comments

Comments
 (0)