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.
Files changed (3) hide show
  1. data/boxen.gemspec +1 -1
  2. data/lib/boxen/runner.rb +4 -1
  3. metadata +2 -2
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |gem|
4
4
  gem.name = "boxen"
5
- gem.version = "0.5.0"
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)."
@@ -102,7 +102,10 @@ module Boxen
102
102
 
103
103
  def process_args
104
104
  projects = flags.args.join(',')
105
- Facter.add('cli_boxen_projects') { setcode { projects } }
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?
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 5
8
- - 0
9
- version: 0.5.0
8
+ - 1
9
+ version: 0.5.1
10
10
  platform: ruby
11
11
  authors:
12
12
  - John Barnette