Skip to content

Commit d8a1b3a

Browse files
author
willmeek
authored
Merge pull request #436 from puppetlabs/maint_modsync_384f4c1
(maint) - modulesync 384f4c1
2 parents 0ba2e32 + a99bf12 commit d8a1b3a

File tree

3 files changed

+26
-19
lines changed

3 files changed

+26
-19
lines changed

.gitignore

+15-16
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,23 @@
1-
#This file is generated by ModuleSync, do not edit.
2-
pkg/
3-
Gemfile.lock
4-
Gemfile.local
5-
vendor/
6-
spec/fixtures/manifests/
7-
spec/fixtures/modules/
8-
log/
9-
junit/
10-
.vagrant/
1+
#This file is generated by ModuleSync, do not edit.Z
2+
*.iml
3+
.*.sw[op]
4+
.DS_Store
115
.bundle/
12-
coverage/
13-
log/
146
.idea/
157
.metadata
16-
*.iml
17-
.*.sw[op]
8+
.vagrant/
189
.yardoc
1910
.yardwarns
20-
.DS_Store
11+
Gemfile.local
12+
Gemfile.lock
13+
bin/
14+
coverage/
15+
doc/
16+
junit/
17+
log/
18+
pkg/
19+
spec/fixtures/manifests/
20+
spec/fixtures/modules/
2121
tmp/
2222
vendor/
23-
doc/
2423

.rubocop.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,4 +95,4 @@ Style/AsciiComments:
9595
Style/IfUnlessModifier:
9696
Enabled: false
9797
Style/SymbolProc:
98-
Enabled: false
98+
Enabled: false

Gemfile

+10-2
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,19 @@ def location_for(place_or_version, fake_version = nil)
2828
end
2929

3030
# Used for gem conditionals
31-
supports_windows = false
3231
ruby_version_segments = Gem::Version.new(RUBY_VERSION.dup).segments
3332
minor_version = "#{ruby_version_segments[0]}.#{ruby_version_segments[1]}"
3433

34+
# The following gems are not included by default as they require DevKit on Windows.
35+
# You should probably include them in a Gemfile.local or a ~/.gemfile
36+
#gem 'pry' #this may already be included in the gemfile
37+
#gem 'pry-stack_explorer', :require => false
38+
#if RUBY_VERSION =~ /^2/
39+
# gem 'pry-byebug'
40+
#else
41+
# gem 'pry-debugger'
42+
#end
43+
3544
group :development do
3645
gem "puppet-module-posix-default-r#{minor_version}", :require => false, :platforms => "ruby"
3746
gem "puppet-module-win-default-r#{minor_version}", :require => false, :platforms => ["mswin", "mingw", "x64_mingw"]
@@ -62,7 +71,6 @@ gem 'puppet', *location_for(ENV['PUPPET_GEM_VERSION'])
6271
gem 'facter', *location_for(ENV['FACTER_GEM_VERSION']) if ENV['FACTER_GEM_VERSION']
6372
gem 'hiera', *location_for(ENV['HIERA_GEM_VERSION']) if ENV['HIERA_GEM_VERSION']
6473

65-
6674
# Evaluate Gemfile.local if it exists
6775
if File.exists? "#{__FILE__}.local"
6876
eval(File.read("#{__FILE__}.local"), binding)

0 commit comments

Comments
 (0)