meez 0.0.8 → 0.0.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. checksums.yaml +8 -8
  2. data/lib/meez/meez.rb +7 -7
  3. metadata +1 -1
checksums.yaml CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- MmIyODg2Y2M4ODZjNjgzNGUyZWZhY2RiZTMyYjE1NTc3MWVlYzg3Mg==
4
+ MzMwOWFkMjlhNjZmYzFiNWU3ODcxNjQ1MjBjODlhNmRhYTViZGFiYQ==
5
5
  data.tar.gz: !binary |-
6
- ZDNiYTUzMDQ5NzkzOTFkMDQyMjg1ZjA2NjRiNjc4ZmExZDkzZGNmZg==
6
+ ODgxODRjZjdkZmJjMjJhNTM0OWY3Y2EyNTMyNmI2NzRmZmNkNWQ3Nw==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- YTJlNDVlMmFkZjJlZjgwNTE1NGFlMzE1ODY2ZjFjYmU4MmM2NWMyMzhjN2E2
10
- N2FjZTMyZDNjNDk4YmZiYjUxMDY5YmUxZDk3YzI1NmY2OWNiMDllMWVjM2Y4
11
- YWNmYjQxYjBhM2E2YTVkNzU4MGY2N2VjOWEwNzc4NzgyMDRlZWY=
9
+ MzUxN2I0OGMxZDk2ZTFjNmQwMGZiM2YyMGMxNmZmZmI1YjE0ODk0MDU2Y2Uw
10
+ MzQ0MmQ0ZGNhNDJjOWJmNzQ4ODA2ZjU5ZjkxOWIyYTI0YzZhMDdlMjhhZDk1
11
+ NmQwZDI4NTA2ZTRjMmYzYWEwNDZiMzlhMDA2YTU1MTkwZjA0ZjM=
12
12
  data.tar.gz: !binary |-
13
- MmM3NzU4ZTE4ZTc1OGY1NDU2MjNmOGZhNGUyMDI1MDc3NGFmMGE4NWFlOTI4
14
- ODI5MGEwNjk3ZjM1NjIzMDIwNjk4MGZhMTkyY2M4MWVjZDQ5MzBmN2IzMDQy
15
- NTI0YjBkYjE2NTFiOWVjYTIyMmY0NjU0YzFiZDJjODAxMjM1ZGY=
13
+ MWJkZmI4NDZhNTkwMTdmZDRlZDU1YzJiYmE5NzdiYWMzODhlNzhjZDBhNTgz
14
+ ZWFiMDdjNDI0YWQzZTc1NWYzNGE3MTMwN2M3NTk2NTVhODg5NDZmYzRkZGE0
15
+ MmE4MjkxMzViZmQxYWZhMjAzZDk2MGJlNDAwYTZhMjViNDNjMDI=
data/lib/meez/meez.rb CHANGED
@@ -139,12 +139,12 @@ require 'chef/application'
139
139
 
140
140
  ::LOG_LEVEL = :fatal
141
141
  ::UBUNTU_OPTS = {
142
- platform: 'ubuntu',
143
- version: '12.04',
144
- log_level: ::LOG_LEVEL
142
+ platform: 'ubuntu',
143
+ version: '12.04',
144
+ log_level: ::LOG_LEVEL
145
145
  }
146
146
  ::CHEFSPEC_OPTS = {
147
- log_level: ::LOG_LEVEL
147
+ log_level: ::LOG_LEVEL
148
148
  }
149
149
 
150
150
  def stub_resources
@@ -178,7 +178,7 @@ end
178
178
  end
179
179
 
180
180
  puts "\tAppend Gemfile"
181
- File.open(File.join(path, 'Gemfile'), 'a') { |f| f.write("gem 'chefspec', '~> 3.1.4'\n") }
181
+ File.open(File.join(path, 'Gemfile'), 'a') { |f| f.write("gem 'chefspec', '~> 3.2'\n") }
182
182
  File.open(File.join(path, 'Strainerfile'), 'a') { |f| f.write("chefspec: bundle exec rspec $SANDBOX/$COOKBOOK/test/unit/spec\n") }
183
183
  end
184
184
 
@@ -195,7 +195,7 @@ end
195
195
  puts '* Initializing Rubocop'
196
196
  path = File.join(options[:path], cookbook_name)
197
197
  puts "\tAppend Gemfile"
198
- File.open(File.join(path, 'Gemfile'), 'a') { |f| f.write("gem 'rubocop', '~> 0.16.0'\n") }
198
+ File.open(File.join(path, 'Gemfile'), 'a') { |f| f.write("gem 'rubocop', '~> 0.18'\n") }
199
199
  puts "\tAppend Strainerfile"
200
200
  File.open(File.join(path, 'Strainerfile'), 'a') { |f| f.write("rubocop: bundle exec rubocop $COOKBOOK\n") }
201
201
  end
@@ -204,7 +204,7 @@ end
204
204
  puts '* Initializing Knife'
205
205
  path = File.join(options[:path], cookbook_name)
206
206
  puts "\tAppend Gemfile"
207
- File.open(File.join(path, 'Gemfile'), 'a') { |f| f.write("gem 'chef', '~> 11.8.0'\n") }
207
+ File.open(File.join(path, 'Gemfile'), 'a') { |f| f.write("gem 'chef', '~> 11.8'\n") }
208
208
  puts "\tAppend Strainerfile"
209
209
  File.open(File.join(path, 'Strainerfile'), 'a') { |f| f.write("knife test: bundle exec knife cookbook test $COOKBOOK\n") }
210
210
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: meez
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.8
4
+ version: 0.0.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Paul Czarkowski