boxen 1.5.0 → 1.5.1
Sign up to get free protection for your applications and to get access to all the features.
- data/boxen.gemspec +1 -1
- data/lib/facter/boxen.rb +1 -0
- metadata +1 -1
data/boxen.gemspec
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |gem|
|
4
4
|
gem.name = "boxen"
|
5
|
-
gem.version = "1.5.
|
5
|
+
gem.version = "1.5.1"
|
6
6
|
gem.authors = ["John Barnette", "Will Farrington"]
|
7
7
|
gem.email = ["jbarnette@github.com", "wfarr@github.com"]
|
8
8
|
gem.description = "Manage Mac development boxes with love (and Puppet)."
|
data/lib/facter/boxen.rb
CHANGED
@@ -26,6 +26,7 @@ if File.exist? dot_boxen
|
|
26
26
|
if File.directory?(dot_boxen) && File.file?(user_config)
|
27
27
|
facts.merge! JSON.parse(File.read(user_config))
|
28
28
|
else
|
29
|
+
warn "DEPRECATION: ~/.boxen is deprecated and will be removed in 2.0; use ~/.boxen/config.json instead!"
|
29
30
|
facts.merge! JSON.parse(File.read(dot_boxen))
|
30
31
|
end
|
31
32
|
end
|