boxen 0.5.0 → 0.5.1
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.
- data/boxen.gemspec +1 -1
- data/lib/boxen/runner.rb +4 -1
- metadata +2 -2
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 = "0.5.
|
|
5
|
+
gem.version = "0.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/boxen/runner.rb
CHANGED
|
@@ -102,7 +102,10 @@ module Boxen
|
|
|
102
102
|
|
|
103
103
|
def process_args
|
|
104
104
|
projects = flags.args.join(',')
|
|
105
|
-
|
|
105
|
+
File.open("#{config.repodir}/.projects", "w+") do |f|
|
|
106
|
+
f.truncate 0
|
|
107
|
+
f.write projects
|
|
108
|
+
end
|
|
106
109
|
end
|
|
107
110
|
|
|
108
111
|
# Should the result of this run have any effect on GitHub issues?
|