pivotal_workstation_cookbook 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (102) hide show
  1. data/.gitignore +4 -0
  2. data/.gitmodules +3 -0
  3. data/.rvmrc +1 -0
  4. data/Gemfile +4 -0
  5. data/Rakefile +1 -0
  6. data/cookbooks/pivotal_workstation/.gitignore +2 -0
  7. data/cookbooks/pivotal_workstation/LICENSE.txt +21 -0
  8. data/cookbooks/pivotal_workstation/README.markdown +31 -0
  9. data/cookbooks/pivotal_workstation/attributes/chrome.rb +1 -0
  10. data/cookbooks/pivotal_workstation/attributes/firefox.rb +2 -0
  11. data/cookbooks/pivotal_workstation/attributes/fusion.rb +1 -0
  12. data/cookbooks/pivotal_workstation/attributes/git_pairs.rb +4 -0
  13. data/cookbooks/pivotal_workstation/attributes/git_projects.rb +3 -0
  14. data/cookbooks/pivotal_workstation/attributes/gitx.rb +2 -0
  15. data/cookbooks/pivotal_workstation/attributes/java.rb +1 -0
  16. data/cookbooks/pivotal_workstation/attributes/libreoffice.rb +3 -0
  17. data/cookbooks/pivotal_workstation/attributes/nginx.rb +11 -0
  18. data/cookbooks/pivotal_workstation/attributes/postgres.rb +3 -0
  19. data/cookbooks/pivotal_workstation/attributes/rubymine.rb +4 -0
  20. data/cookbooks/pivotal_workstation/attributes/rvm.rb +8 -0
  21. data/cookbooks/pivotal_workstation/attributes/skype.rb +1 -0
  22. data/cookbooks/pivotal_workstation/attributes/versions.rb +7 -0
  23. data/cookbooks/pivotal_workstation/libraries/bash_profile_include.rb +11 -0
  24. data/cookbooks/pivotal_workstation/libraries/brew.rb +31 -0
  25. data/cookbooks/pivotal_workstation/libraries/directories.rb +25 -0
  26. data/cookbooks/pivotal_workstation/libraries/marker.rb +42 -0
  27. data/cookbooks/pivotal_workstation/libraries/osx_app.rb +97 -0
  28. data/cookbooks/pivotal_workstation/libraries/rvm_ruby_install.rb +36 -0
  29. data/cookbooks/pivotal_workstation/libraries/user.rb +4 -0
  30. data/cookbooks/pivotal_workstation/libraries/version.rb +9 -0
  31. data/cookbooks/pivotal_workstation/recipes/ack.rb +1 -0
  32. data/cookbooks/pivotal_workstation/recipes/active_corners.rb +24 -0
  33. data/cookbooks/pivotal_workstation/recipes/bash_path_order.rb +13 -0
  34. data/cookbooks/pivotal_workstation/recipes/bash_profile-better_history.rb +3 -0
  35. data/cookbooks/pivotal_workstation/recipes/bash_profile-no_sudo_gem_install.rb +3 -0
  36. data/cookbooks/pivotal_workstation/recipes/bash_profile-ps1.rb +3 -0
  37. data/cookbooks/pivotal_workstation/recipes/bash_profile.rb +11 -0
  38. data/cookbooks/pivotal_workstation/recipes/chrome.rb +28 -0
  39. data/cookbooks/pivotal_workstation/recipes/defaults_fast_key_repeat_rate.rb +10 -0
  40. data/cookbooks/pivotal_workstation/recipes/disable_front_row.rb +4 -0
  41. data/cookbooks/pivotal_workstation/recipes/dock_preferences.rb +13 -0
  42. data/cookbooks/pivotal_workstation/recipes/ec2_api_tools.rb +3 -0
  43. data/cookbooks/pivotal_workstation/recipes/finder_display_full_path.rb +4 -0
  44. data/cookbooks/pivotal_workstation/recipes/firefox.rb +28 -0
  45. data/cookbooks/pivotal_workstation/recipes/fusion.rb +29 -0
  46. data/cookbooks/pivotal_workstation/recipes/gem_no_rdoc_no_ri.rb +7 -0
  47. data/cookbooks/pivotal_workstation/recipes/git.rb +8 -0
  48. data/cookbooks/pivotal_workstation/recipes/git_config_global_defaults.rb +71 -0
  49. data/cookbooks/pivotal_workstation/recipes/git_projects.rb +29 -0
  50. data/cookbooks/pivotal_workstation/recipes/git_scripts.rb +20 -0
  51. data/cookbooks/pivotal_workstation/recipes/gitx.rb +25 -0
  52. data/cookbooks/pivotal_workstation/recipes/global_environment_variables.rb +3 -0
  53. data/cookbooks/pivotal_workstation/recipes/homebrew.rb +27 -0
  54. data/cookbooks/pivotal_workstation/recipes/imagemagick.rb +3 -0
  55. data/cookbooks/pivotal_workstation/recipes/inputrc.rb +6 -0
  56. data/cookbooks/pivotal_workstation/recipes/iterm_set_defaults.rb +167 -0
  57. data/cookbooks/pivotal_workstation/recipes/java.rb +29 -0
  58. data/cookbooks/pivotal_workstation/recipes/joe.rb +3 -0
  59. data/cookbooks/pivotal_workstation/recipes/libreoffice.rb +28 -0
  60. data/cookbooks/pivotal_workstation/recipes/lion_basedev.rb +23 -0
  61. data/cookbooks/pivotal_workstation/recipes/mysql.rb +44 -0
  62. data/cookbooks/pivotal_workstation/recipes/nginx.rb +46 -0
  63. data/cookbooks/pivotal_workstation/recipes/osx_turn_on_locate.rb +8 -0
  64. data/cookbooks/pivotal_workstation/recipes/postgres.rb +71 -0
  65. data/cookbooks/pivotal_workstation/recipes/remove_garageband.rb +11 -0
  66. data/cookbooks/pivotal_workstation/recipes/rubymine.rb +30 -0
  67. data/cookbooks/pivotal_workstation/recipes/rubymine_preferences_pivotal.rb +36 -0
  68. data/cookbooks/pivotal_workstation/recipes/rvm.rb +58 -0
  69. data/cookbooks/pivotal_workstation/recipes/safari_preferences.rb +4 -0
  70. data/cookbooks/pivotal_workstation/recipes/screen_sharing_on.rb +16 -0
  71. data/cookbooks/pivotal_workstation/recipes/selenium_webdriver.rb +24 -0
  72. data/cookbooks/pivotal_workstation/recipes/set_finder_show_hd_on_desktop.rb +4 -0
  73. data/cookbooks/pivotal_workstation/recipes/set_multitouch_preferences.rb +9 -0
  74. data/cookbooks/pivotal_workstation/recipes/set_ntp_server.rb +3 -0
  75. data/cookbooks/pivotal_workstation/recipes/set_screensaver_preferences.rb +21 -0
  76. data/cookbooks/pivotal_workstation/recipes/size_up.rb +18 -0
  77. data/cookbooks/pivotal_workstation/recipes/skype.rb +28 -0
  78. data/cookbooks/pivotal_workstation/recipes/ssh_copy_id.rb +3 -0
  79. data/cookbooks/pivotal_workstation/recipes/sshd_on.rb +16 -0
  80. data/cookbooks/pivotal_workstation/recipes/ssl_certificate.rb +50 -0
  81. data/cookbooks/pivotal_workstation/recipes/terminal_preferences.rb +9 -0
  82. data/cookbooks/pivotal_workstation/recipes/textmate.rb +24 -0
  83. data/cookbooks/pivotal_workstation/recipes/textmate_plugins.rb +31 -0
  84. data/cookbooks/pivotal_workstation/recipes/textmate_set_defaults.rb +84 -0
  85. data/cookbooks/pivotal_workstation/recipes/user_owns_usr_local.rb +8 -0
  86. data/cookbooks/pivotal_workstation/recipes/vim.rb +35 -0
  87. data/cookbooks/pivotal_workstation/recipes/workspace_directory.rb +5 -0
  88. data/cookbooks/pivotal_workstation/templates/default/bash_profile-better_history.sh.erb +4 -0
  89. data/cookbooks/pivotal_workstation/templates/default/bash_profile-ec2_tools.sh.erb +5 -0
  90. data/cookbooks/pivotal_workstation/templates/default/bash_profile-no_sudo_gem_install.sh.erb +2 -0
  91. data/cookbooks/pivotal_workstation/templates/default/bash_profile-ps1.sh.erb +26 -0
  92. data/cookbooks/pivotal_workstation/templates/default/bash_profile-rvm.sh.erb +1 -0
  93. data/cookbooks/pivotal_workstation/templates/default/bash_profile.erb +6 -0
  94. data/cookbooks/pivotal_workstation/templates/default/git_scripts_pairs.erb +10 -0
  95. data/cookbooks/pivotal_workstation/templates/default/inputrc.erb +10 -0
  96. data/cookbooks/pivotal_workstation/templates/default/launchd.conf.erb +6 -0
  97. data/cookbooks/pivotal_workstation/templates/default/nginx.conf.erb +79 -0
  98. data/cookbooks/pivotal_workstation/templates/default/ntp.conf.erb +2 -0
  99. data/cookbooks/pivotal_workstation/templates/default/org.nginx.nginx.plist.erb +22 -0
  100. data/lib/pivotal_workstation_cookbook.rb +4 -0
  101. data/pivotal_workstation.gemspec +19 -0
  102. metadata +168 -0
@@ -0,0 +1,6 @@
1
+ #global environment variables
2
+
3
+ setenv RAILS_ENV development
4
+ setenv PATH /usr/local/tools/mac/bin:/usr/local/bin:/usr/local/sbin:/opt/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/mysql/bin:/usr/local/tools/bin:/usr/local/sbin
5
+
6
+ #ensure there are newlines to end the file
@@ -0,0 +1,79 @@
1
+ #user nobody;
2
+ worker_processes 1;
3
+
4
+ #error_log logs/error.log;
5
+ #error_log logs/error.log notice;
6
+ error_log logs/error.log info;
7
+
8
+ #pid logs/nginx.pid;
9
+
10
+
11
+ events {
12
+ worker_connections 200;
13
+ }
14
+
15
+ http {
16
+ include mime.types;
17
+ default_type application/octet-stream;
18
+ sendfile on;
19
+ #tcp_nopush on;
20
+ keepalive_timeout 65;
21
+ tcp_nodelay on;
22
+
23
+ upstream mongrel {
24
+ server 127.0.0.1:3000;
25
+ }
26
+
27
+ server {
28
+ listen <%= node["nginx_settings"]["server_port"] %>;
29
+ server_name <%= node["nginx_settings"]["server_name"] %>;
30
+ root <%= node["nginx_settings"]["server_document_root"] %>;
31
+ index index.html index.htm;
32
+
33
+ try_files $uri/index.html $uri.html $uri @mongrel;
34
+
35
+ location @mongrel {
36
+ proxy_set_header X-Real-IP $remote_addr;
37
+ proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
38
+ proxy_set_header Host $http_host;
39
+ proxy_set_header X_FORWARDED_PROTO $scheme;
40
+ proxy_redirect off;
41
+ proxy_pass http://mongrel;
42
+ }
43
+ error_page 500 502 503 504 /50x.html;
44
+ location = /50x.html {
45
+ root html;
46
+ }
47
+ }
48
+ server {
49
+ listen 443;
50
+ server_name <%= node["nginx_settings"]["server_name"] %>;
51
+
52
+ ssl on;
53
+ ssl_certificate <%= node["ssl_settings"]["cert_path"]%>/signed.cert;
54
+ ssl_certificate_key <%= node["ssl_settings"]["cert_path"]%>/server.key;
55
+
56
+ ssl_session_timeout 5m;
57
+
58
+ ssl_protocols SSLv2 SSLv3 TLSv1;
59
+ ssl_ciphers ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP;
60
+ ssl_prefer_server_ciphers on;
61
+ root <%= node["nginx_settings"]["server_document_root"] %>;
62
+ index index.html index.htm;
63
+
64
+ try_files $uri/index.html $uri.html $uri @mongrel;
65
+
66
+ location @mongrel {
67
+ proxy_set_header X-Real-IP $remote_addr;
68
+ proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
69
+ proxy_set_header Host $http_host;
70
+ proxy_set_header X_FORWARDED_PROTO $scheme;
71
+ proxy_redirect off;
72
+ proxy_pass http://mongrel;
73
+ }
74
+ error_page 500 502 503 504 /50x.html;
75
+ location = /50x.html {
76
+ root html;
77
+ }
78
+ }
79
+ }
@@ -0,0 +1,2 @@
1
+ server ntp.flood.pivotallabs.com prefer
2
+ server time.apple.com
@@ -0,0 +1,22 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+ <plist version="1.0">
4
+ <dict>
5
+ <key>Label</key>
6
+ <string>org.nginx.nginx</string>
7
+ <key>RunAtLoad</key>
8
+ <true/>
9
+ <key>KeepAlive</key>
10
+ <true/>
11
+ <key>UserName</key>
12
+ <string>root</string>
13
+ <key>ProgramArguments</key>
14
+ <array>
15
+ <string>/usr/local/Cellar/nginx/1.0.4/sbin/nginx</string>
16
+ <string>-g</string>
17
+ <string>daemon off;</string>
18
+ </array>
19
+ <key>WorkingDirectory</key>
20
+ <string>/usr/local</string>
21
+ </dict>
22
+ </plist>
@@ -0,0 +1,4 @@
1
+ module PivotalWorkstationCookbook
2
+ VERSION = "0.0.1"
3
+ COOKBOOK_PATH = File.expand_path(File.join(File.dirname(__FILE__), "..", "cookbooks"))
4
+ end
@@ -0,0 +1,19 @@
1
+ # -*- encoding: utf-8 -*-
2
+ $:.push File.expand_path("../lib", __FILE__)
3
+ require "pivotal_workstation_cookbook"
4
+
5
+ Gem::Specification.new do |s|
6
+ s.name = "pivotal_workstation_cookbook"
7
+ s.version = PivotalWorkstationCookbook::VERSION
8
+ s.authors = ["Matthew Kocher"]
9
+ s.email = ["kocher@gmail.com"]
10
+ s.homepage = ""
11
+ s.summary = %q{The pivotal_workstation OSX Chef cookbook}
12
+ s.description = %q{Packaged as a gem for use with soloist.}
13
+
14
+ s.files = `git ls-files`.split("\n")
15
+ s.files += `cd cookbooks/pivotal_workstation/ && git ls-files`.split("\n").map {|file_name| "cookbooks/pivotal_workstation/"+file_name}
16
+ s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
17
+ s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
18
+ s.require_paths = ["lib"]
19
+ end
metadata ADDED
@@ -0,0 +1,168 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: pivotal_workstation_cookbook
3
+ version: !ruby/object:Gem::Version
4
+ hash: 29
5
+ prerelease:
6
+ segments:
7
+ - 0
8
+ - 0
9
+ - 1
10
+ version: 0.0.1
11
+ platform: ruby
12
+ authors:
13
+ - Matthew Kocher
14
+ autorequire:
15
+ bindir: bin
16
+ cert_chain: []
17
+
18
+ date: 2011-07-27 00:00:00 -07:00
19
+ default_executable:
20
+ dependencies: []
21
+
22
+ description: Packaged as a gem for use with soloist.
23
+ email:
24
+ - kocher@gmail.com
25
+ executables: []
26
+
27
+ extensions: []
28
+
29
+ extra_rdoc_files: []
30
+
31
+ files:
32
+ - .gitignore
33
+ - .gitmodules
34
+ - .rvmrc
35
+ - Gemfile
36
+ - Rakefile
37
+ - lib/pivotal_workstation_cookbook.rb
38
+ - pivotal_workstation.gemspec
39
+ - cookbooks/pivotal_workstation/.gitignore
40
+ - cookbooks/pivotal_workstation/LICENSE.txt
41
+ - cookbooks/pivotal_workstation/README.markdown
42
+ - cookbooks/pivotal_workstation/attributes/chrome.rb
43
+ - cookbooks/pivotal_workstation/attributes/firefox.rb
44
+ - cookbooks/pivotal_workstation/attributes/fusion.rb
45
+ - cookbooks/pivotal_workstation/attributes/git_pairs.rb
46
+ - cookbooks/pivotal_workstation/attributes/git_projects.rb
47
+ - cookbooks/pivotal_workstation/attributes/gitx.rb
48
+ - cookbooks/pivotal_workstation/attributes/java.rb
49
+ - cookbooks/pivotal_workstation/attributes/libreoffice.rb
50
+ - cookbooks/pivotal_workstation/attributes/nginx.rb
51
+ - cookbooks/pivotal_workstation/attributes/postgres.rb
52
+ - cookbooks/pivotal_workstation/attributes/rubymine.rb
53
+ - cookbooks/pivotal_workstation/attributes/rvm.rb
54
+ - cookbooks/pivotal_workstation/attributes/skype.rb
55
+ - cookbooks/pivotal_workstation/attributes/versions.rb
56
+ - cookbooks/pivotal_workstation/libraries/bash_profile_include.rb
57
+ - cookbooks/pivotal_workstation/libraries/brew.rb
58
+ - cookbooks/pivotal_workstation/libraries/directories.rb
59
+ - cookbooks/pivotal_workstation/libraries/marker.rb
60
+ - cookbooks/pivotal_workstation/libraries/osx_app.rb
61
+ - cookbooks/pivotal_workstation/libraries/rvm_ruby_install.rb
62
+ - cookbooks/pivotal_workstation/libraries/user.rb
63
+ - cookbooks/pivotal_workstation/libraries/version.rb
64
+ - cookbooks/pivotal_workstation/recipes/ack.rb
65
+ - cookbooks/pivotal_workstation/recipes/active_corners.rb
66
+ - cookbooks/pivotal_workstation/recipes/bash_path_order.rb
67
+ - cookbooks/pivotal_workstation/recipes/bash_profile-better_history.rb
68
+ - cookbooks/pivotal_workstation/recipes/bash_profile-no_sudo_gem_install.rb
69
+ - cookbooks/pivotal_workstation/recipes/bash_profile-ps1.rb
70
+ - cookbooks/pivotal_workstation/recipes/bash_profile.rb
71
+ - cookbooks/pivotal_workstation/recipes/chrome.rb
72
+ - cookbooks/pivotal_workstation/recipes/defaults_fast_key_repeat_rate.rb
73
+ - cookbooks/pivotal_workstation/recipes/disable_front_row.rb
74
+ - cookbooks/pivotal_workstation/recipes/dock_preferences.rb
75
+ - cookbooks/pivotal_workstation/recipes/ec2_api_tools.rb
76
+ - cookbooks/pivotal_workstation/recipes/finder_display_full_path.rb
77
+ - cookbooks/pivotal_workstation/recipes/firefox.rb
78
+ - cookbooks/pivotal_workstation/recipes/fusion.rb
79
+ - cookbooks/pivotal_workstation/recipes/gem_no_rdoc_no_ri.rb
80
+ - cookbooks/pivotal_workstation/recipes/git.rb
81
+ - cookbooks/pivotal_workstation/recipes/git_config_global_defaults.rb
82
+ - cookbooks/pivotal_workstation/recipes/git_projects.rb
83
+ - cookbooks/pivotal_workstation/recipes/git_scripts.rb
84
+ - cookbooks/pivotal_workstation/recipes/gitx.rb
85
+ - cookbooks/pivotal_workstation/recipes/global_environment_variables.rb
86
+ - cookbooks/pivotal_workstation/recipes/homebrew.rb
87
+ - cookbooks/pivotal_workstation/recipes/imagemagick.rb
88
+ - cookbooks/pivotal_workstation/recipes/inputrc.rb
89
+ - cookbooks/pivotal_workstation/recipes/iterm_set_defaults.rb
90
+ - cookbooks/pivotal_workstation/recipes/java.rb
91
+ - cookbooks/pivotal_workstation/recipes/joe.rb
92
+ - cookbooks/pivotal_workstation/recipes/libreoffice.rb
93
+ - cookbooks/pivotal_workstation/recipes/lion_basedev.rb
94
+ - cookbooks/pivotal_workstation/recipes/mysql.rb
95
+ - cookbooks/pivotal_workstation/recipes/nginx.rb
96
+ - cookbooks/pivotal_workstation/recipes/osx_turn_on_locate.rb
97
+ - cookbooks/pivotal_workstation/recipes/postgres.rb
98
+ - cookbooks/pivotal_workstation/recipes/remove_garageband.rb
99
+ - cookbooks/pivotal_workstation/recipes/rubymine.rb
100
+ - cookbooks/pivotal_workstation/recipes/rubymine_preferences_pivotal.rb
101
+ - cookbooks/pivotal_workstation/recipes/rvm.rb
102
+ - cookbooks/pivotal_workstation/recipes/safari_preferences.rb
103
+ - cookbooks/pivotal_workstation/recipes/screen_sharing_on.rb
104
+ - cookbooks/pivotal_workstation/recipes/selenium_webdriver.rb
105
+ - cookbooks/pivotal_workstation/recipes/set_finder_show_hd_on_desktop.rb
106
+ - cookbooks/pivotal_workstation/recipes/set_multitouch_preferences.rb
107
+ - cookbooks/pivotal_workstation/recipes/set_ntp_server.rb
108
+ - cookbooks/pivotal_workstation/recipes/set_screensaver_preferences.rb
109
+ - cookbooks/pivotal_workstation/recipes/size_up.rb
110
+ - cookbooks/pivotal_workstation/recipes/skype.rb
111
+ - cookbooks/pivotal_workstation/recipes/ssh_copy_id.rb
112
+ - cookbooks/pivotal_workstation/recipes/sshd_on.rb
113
+ - cookbooks/pivotal_workstation/recipes/ssl_certificate.rb
114
+ - cookbooks/pivotal_workstation/recipes/terminal_preferences.rb
115
+ - cookbooks/pivotal_workstation/recipes/textmate.rb
116
+ - cookbooks/pivotal_workstation/recipes/textmate_plugins.rb
117
+ - cookbooks/pivotal_workstation/recipes/textmate_set_defaults.rb
118
+ - cookbooks/pivotal_workstation/recipes/user_owns_usr_local.rb
119
+ - cookbooks/pivotal_workstation/recipes/vim.rb
120
+ - cookbooks/pivotal_workstation/recipes/workspace_directory.rb
121
+ - cookbooks/pivotal_workstation/templates/default/bash_profile-better_history.sh.erb
122
+ - cookbooks/pivotal_workstation/templates/default/bash_profile-ec2_tools.sh.erb
123
+ - cookbooks/pivotal_workstation/templates/default/bash_profile-no_sudo_gem_install.sh.erb
124
+ - cookbooks/pivotal_workstation/templates/default/bash_profile-ps1.sh.erb
125
+ - cookbooks/pivotal_workstation/templates/default/bash_profile-rvm.sh.erb
126
+ - cookbooks/pivotal_workstation/templates/default/bash_profile.erb
127
+ - cookbooks/pivotal_workstation/templates/default/git_scripts_pairs.erb
128
+ - cookbooks/pivotal_workstation/templates/default/inputrc.erb
129
+ - cookbooks/pivotal_workstation/templates/default/launchd.conf.erb
130
+ - cookbooks/pivotal_workstation/templates/default/nginx.conf.erb
131
+ - cookbooks/pivotal_workstation/templates/default/ntp.conf.erb
132
+ - cookbooks/pivotal_workstation/templates/default/org.nginx.nginx.plist.erb
133
+ has_rdoc: true
134
+ homepage: ""
135
+ licenses: []
136
+
137
+ post_install_message:
138
+ rdoc_options: []
139
+
140
+ require_paths:
141
+ - lib
142
+ required_ruby_version: !ruby/object:Gem::Requirement
143
+ none: false
144
+ requirements:
145
+ - - ">="
146
+ - !ruby/object:Gem::Version
147
+ hash: 3
148
+ segments:
149
+ - 0
150
+ version: "0"
151
+ required_rubygems_version: !ruby/object:Gem::Requirement
152
+ none: false
153
+ requirements:
154
+ - - ">="
155
+ - !ruby/object:Gem::Version
156
+ hash: 3
157
+ segments:
158
+ - 0
159
+ version: "0"
160
+ requirements: []
161
+
162
+ rubyforge_project:
163
+ rubygems_version: 1.6.2
164
+ signing_key:
165
+ specification_version: 3
166
+ summary: The pivotal_workstation OSX Chef cookbook
167
+ test_files: []
168
+