nugrant 1.4.0 → 1.4.1

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG.md CHANGED
@@ -1,3 +1,8 @@
1
+ # 1.4.1 (December 15th, 2013)
2
+
3
+ * Fixed a superfluous warning message when using ruby >= 2.0.0 which is now the
4
+ default when installing Vagrant >= 1.4.0 (at least on Windows).
5
+
1
6
  # 1.4.0 (November 28th, 2013)
2
7
 
3
8
  * Adding support to export to an [autoenv](https://github.com/kennethreitz/autoenv)
data/Gemfile CHANGED
@@ -13,7 +13,7 @@ group :development do
13
13
  'v2' => {
14
14
  'home' => "~/.vagrant.d",
15
15
  'gem' => Proc.new do
16
- gem "vagrant", :git => "git://github.com/mitchellh/vagrant.git", :tag => "v1.3.5"
16
+ gem "vagrant", :git => "git://github.com/mitchellh/vagrant.git", :tag => "v1.4.0"
17
17
  end,
18
18
  },
19
19
  }
data/README.md CHANGED
@@ -63,7 +63,7 @@ container, please use this command instead:
63
63
 
64
64
  > gem install nugrant
65
65
 
66
- #### Version 1.y.z (latest version tested 1.1.3)
66
+ #### Version 1.y.z (latest version tested 1.4.0)
67
67
 
68
68
  In those versions, probably until 2.y.z is out, there
69
69
  is a new way to install and register plugin with the Vagrant
@@ -116,7 +116,7 @@ and the format of the parameters file.
116
116
  ### Vagrant
117
117
 
118
118
  All examples shown here are for Vagrant 1.1+. They have
119
- been tested with Vagrant 1.2.2. Keep this in mind when
119
+ been tested with Vagrant 1.4.0. Keep this in mind when
120
120
  copying examples.
121
121
 
122
122
  Let start with a small use case. Say the git repository you want
@@ -31,7 +31,7 @@ module Nugrant
31
31
  end
32
32
 
33
33
  def self.parse_yml(data_string)
34
- YAML::ENGINE.yamler = 'syck' if defined?(YAML::ENGINE)
34
+ YAML::ENGINE.yamler = 'syck' if (defined?(Syck) || defined?(YAML::Syck)) && defined?(YAML::ENGINE)
35
35
 
36
36
  YAML.load(data_string)
37
37
  end
@@ -1,3 +1,3 @@
1
1
  module Nugrant
2
- VERSION = "1.4.0"
2
+ VERSION = "1.4.1"
3
3
  end
metadata CHANGED
@@ -1,70 +1,77 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: nugrant
3
- version: !ruby/object:Gem::Version
4
- version: 1.4.0
3
+ version: !ruby/object:Gem::Version
4
+ hash: 5
5
+ prerelease:
6
+ segments:
7
+ - 1
8
+ - 4
9
+ - 1
10
+ version: 1.4.1
5
11
  platform: ruby
6
- authors:
12
+ authors:
7
13
  - Matthieu Vachon
8
14
  autorequire:
9
15
  bindir: bin
10
16
  cert_chain: []
11
- date: 2013-11-29 00:00:00.000000000 Z
12
- dependencies:
13
- - !ruby/object:Gem::Dependency
14
- name: multi_json
15
- requirement: !ruby/object:Gem::Requirement
16
- requirements:
17
+
18
+ date: 2013-12-16 00:00:00 Z
19
+ dependencies:
20
+ - !ruby/object:Gem::Dependency
21
+ prerelease: false
22
+ requirement: &id001 !ruby/object:Gem::Requirement
23
+ none: false
24
+ requirements:
17
25
  - - ~>
18
- - !ruby/object:Gem::Version
19
- version: '1.8'
26
+ - !ruby/object:Gem::Version
27
+ hash: 31
28
+ segments:
29
+ - 1
30
+ - 8
31
+ version: "1.8"
32
+ version_requirements: *id001
33
+ name: multi_json
20
34
  type: :runtime
35
+ - !ruby/object:Gem::Dependency
21
36
  prerelease: false
22
- version_requirements: !ruby/object:Gem::Requirement
23
- requirements:
24
- - - ~>
25
- - !ruby/object:Gem::Version
26
- version: '1.8'
27
- - !ruby/object:Gem::Dependency
37
+ requirement: &id002 !ruby/object:Gem::Requirement
38
+ none: false
39
+ requirements:
40
+ - - ">="
41
+ - !ruby/object:Gem::Version
42
+ hash: 3
43
+ segments:
44
+ - 0
45
+ version: "0"
46
+ version_requirements: *id002
28
47
  name: rake
29
- requirement: !ruby/object:Gem::Requirement
30
- requirements:
31
- - - ! '>='
32
- - !ruby/object:Gem::Version
33
- version: '0'
34
48
  type: :development
49
+ - !ruby/object:Gem::Dependency
35
50
  prerelease: false
36
- version_requirements: !ruby/object:Gem::Requirement
37
- requirements:
38
- - - ! '>='
39
- - !ruby/object:Gem::Version
40
- version: '0'
41
- - !ruby/object:Gem::Dependency
42
- name: minitest
43
- requirement: !ruby/object:Gem::Requirement
44
- requirements:
51
+ requirement: &id003 !ruby/object:Gem::Requirement
52
+ none: false
53
+ requirements:
45
54
  - - ~>
46
- - !ruby/object:Gem::Version
55
+ - !ruby/object:Gem::Version
56
+ hash: 39
57
+ segments:
58
+ - 5
59
+ - 0
60
+ - 8
47
61
  version: 5.0.8
62
+ version_requirements: *id003
63
+ name: minitest
48
64
  type: :development
49
- prerelease: false
50
- version_requirements: !ruby/object:Gem::Requirement
51
- requirements:
52
- - - ~>
53
- - !ruby/object:Gem::Version
54
- version: 5.0.8
55
- description: ! " Nugrant is a library to easily handle parameters that need to
56
- be\n injected into an application via different sources (system, user,\n project,
57
- defaults).\n\n Nugrant can also be directly used as a Vagrant plugin. By activating\n
58
- \ this gem with Vagrant, it will be possible to define user specific\n parameters
59
- that will be injected directly into the Vagrantfile. This\n is useful if you
60
- need to share a Vagrantfile to multiple developers\n but would like to customize
61
- some parameters for each user differently.\n"
62
- email:
65
+ description: " Nugrant is a library to easily handle parameters that need to be\n injected into an application via different sources (system, user,\n project, defaults).\n\n Nugrant can also be directly used as a Vagrant plugin. By activating\n this gem with Vagrant, it will be possible to define user specific\n parameters that will be injected directly into the Vagrantfile. This\n is useful if you need to share a Vagrantfile to multiple developers\n but would like to customize some parameters for each user differently.\n"
66
+ email:
63
67
  - matthieu.o.vachon@gmail.com
64
68
  executables: []
69
+
65
70
  extensions: []
71
+
66
72
  extra_rdoc_files: []
67
- files:
73
+
74
+ files:
68
75
  - .buildpath
69
76
  - .gitattributes
70
77
  - .gitignore
@@ -158,28 +165,38 @@ files:
158
165
  - test/resources/yml/params_windows_eol.yml
159
166
  homepage: https://github.com/maoueh/nugrant
160
167
  licenses: []
161
- metadata: {}
168
+
162
169
  post_install_message:
163
170
  rdoc_options: []
164
- require_paths:
171
+
172
+ require_paths:
165
173
  - lib
166
- required_ruby_version: !ruby/object:Gem::Requirement
167
- requirements:
168
- - - ! '>='
169
- - !ruby/object:Gem::Version
170
- version: '0'
171
- required_rubygems_version: !ruby/object:Gem::Requirement
172
- requirements:
173
- - - ! '>='
174
- - !ruby/object:Gem::Version
175
- version: '0'
174
+ required_ruby_version: !ruby/object:Gem::Requirement
175
+ none: false
176
+ requirements:
177
+ - - ">="
178
+ - !ruby/object:Gem::Version
179
+ hash: 3
180
+ segments:
181
+ - 0
182
+ version: "0"
183
+ required_rubygems_version: !ruby/object:Gem::Requirement
184
+ none: false
185
+ requirements:
186
+ - - ">="
187
+ - !ruby/object:Gem::Version
188
+ hash: 3
189
+ segments:
190
+ - 0
191
+ version: "0"
176
192
  requirements: []
193
+
177
194
  rubyforge_project:
178
- rubygems_version: 2.1.11
195
+ rubygems_version: 1.8.24
179
196
  signing_key:
180
- specification_version: 4
197
+ specification_version: 3
181
198
  summary: Library to handle user specific parameters from various location.
182
- test_files:
199
+ test_files:
183
200
  - test/lib/nugrant/helper/env/test_exporter.rb
184
201
  - test/lib/nugrant/helper/test_stack.rb
185
202
  - test/lib/nugrant/test_bag.rb
checksums.yaml DELETED
@@ -1,15 +0,0 @@
1
- ---
2
- !binary "U0hBMQ==":
3
- metadata.gz: !binary |-
4
- MmY5YWM2MTBjZTAwOTUzY2NhMjMxZTdiZTA5ODBmZTI4NmE4MzllOQ==
5
- data.tar.gz: !binary |-
6
- YzE5NTViNDE0Y2E0YzQyNTM5NWIwYmZmMzU2YTUyMjVjMmIyZjc0Ng==
7
- SHA512:
8
- metadata.gz: !binary |-
9
- NDU4ZWQxY2ZiZmZjOTNjNWEwYzAzNzBkNTAxMmI5ZDk2OGExMWNkMGQyYjJi
10
- Y2IwNjA2YWQyZDcxMjYyMzQ5ZWY0NzJhZGI0OGI5Y2M3MGIzNmEwMDE0OGIx
11
- MzZjMzUzNjYwZWMyMWFmM2U1NmRmODY3M2Y0ZTY2YzYxNzAwMzA=
12
- data.tar.gz: !binary |-
13
- ZTQxNDYzYWNiMWExYzM4N2RlOThmMjYzNjEzNGJhNDYxMDliOWU4MmFjNWYx
14
- NjFlNDk1M2E3ZTE4ZWY1YzM5MWM0YzExMDlkZGYyMjAyYmRkZDc2OTdhYjA0
15
- ZmVkOTVkYTBhZTc5NjFkNjk1NWNlMjQ4Y2QxN2E4N2EwY2UxMmU=