test_pivotal_workstation 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (124) hide show
  1. data/.gitignore +3 -0
  2. data/Gemfile +4 -0
  3. data/LICENSE.txt +21 -0
  4. data/README.markdown +31 -0
  5. data/Rakefile +1 -0
  6. data/lib/test_pivotal_workstation.rb +5 -0
  7. data/lib/test_pivotal_workstation/attributes/default.rb +20 -0
  8. data/lib/test_pivotal_workstation/attributes/git_pairs.rb +5 -0
  9. data/lib/test_pivotal_workstation/attributes/git_projects.rb +3 -0
  10. data/lib/test_pivotal_workstation/attributes/github_for_mac.rb +4 -0
  11. data/lib/test_pivotal_workstation/attributes/gitx.rb +1 -0
  12. data/lib/test_pivotal_workstation/attributes/mouse_locator.rb +5 -0
  13. data/lib/test_pivotal_workstation/attributes/nginx.rb +11 -0
  14. data/lib/test_pivotal_workstation/attributes/pg_admin.rb +4 -0
  15. data/lib/test_pivotal_workstation/attributes/rvm.rb +8 -0
  16. data/lib/test_pivotal_workstation/attributes/sizeup.rb +1 -0
  17. data/lib/test_pivotal_workstation/attributes/versions.rb +6 -0
  18. data/lib/test_pivotal_workstation/attributes/vim.rb +2 -0
  19. data/lib/test_pivotal_workstation/attributes/workspace_directory.rb +1 -0
  20. data/lib/test_pivotal_workstation/libraries/applescript.rb +5 -0
  21. data/lib/test_pivotal_workstation/libraries/bash_profile_include.rb +11 -0
  22. data/lib/test_pivotal_workstation/libraries/brew.rb +38 -0
  23. data/lib/test_pivotal_workstation/libraries/directories.rb +25 -0
  24. data/lib/test_pivotal_workstation/libraries/marker.rb +42 -0
  25. data/lib/test_pivotal_workstation/libraries/osx_app.rb +97 -0
  26. data/lib/test_pivotal_workstation/libraries/rvm_ruby_install.rb +36 -0
  27. data/lib/test_pivotal_workstation/libraries/user.rb +4 -0
  28. data/lib/test_pivotal_workstation/libraries/version.rb +9 -0
  29. data/lib/test_pivotal_workstation/providers/package.rb +95 -0
  30. data/lib/test_pivotal_workstation/recipes/ack.rb +1 -0
  31. data/lib/test_pivotal_workstation/recipes/active_corners.rb +24 -0
  32. data/lib/test_pivotal_workstation/recipes/activemq.rb +1 -0
  33. data/lib/test_pivotal_workstation/recipes/bash_path_order.rb +13 -0
  34. data/lib/test_pivotal_workstation/recipes/bash_profile-arch_flags.rb +1 -0
  35. data/lib/test_pivotal_workstation/recipes/bash_profile-better_history.rb +1 -0
  36. data/lib/test_pivotal_workstation/recipes/bash_profile-no_sudo_gem_install.rb +1 -0
  37. data/lib/test_pivotal_workstation/recipes/bash_profile-ps1.rb +1 -0
  38. data/lib/test_pivotal_workstation/recipes/bash_profile-ree_settings.rb +1 -0
  39. data/lib/test_pivotal_workstation/recipes/bash_profile.rb +11 -0
  40. data/lib/test_pivotal_workstation/recipes/ccmenu.rb +6 -0
  41. data/lib/test_pivotal_workstation/recipes/chrome.rb +6 -0
  42. data/lib/test_pivotal_workstation/recipes/default_editor.rb +55 -0
  43. data/lib/test_pivotal_workstation/recipes/defaults_fast_key_repeat_rate.rb +10 -0
  44. data/lib/test_pivotal_workstation/recipes/disable_front_row.rb +4 -0
  45. data/lib/test_pivotal_workstation/recipes/dock_preferences.rb +13 -0
  46. data/lib/test_pivotal_workstation/recipes/dropbox.rb +6 -0
  47. data/lib/test_pivotal_workstation/recipes/ec2_api_tools.rb +3 -0
  48. data/lib/test_pivotal_workstation/recipes/finder_display_full_path.rb +4 -0
  49. data/lib/test_pivotal_workstation/recipes/firefox.rb +5 -0
  50. data/lib/test_pivotal_workstation/recipes/gem_no_rdoc_no_ri.rb +14 -0
  51. data/lib/test_pivotal_workstation/recipes/git.rb +8 -0
  52. data/lib/test_pivotal_workstation/recipes/git_config_global_defaults.rb +72 -0
  53. data/lib/test_pivotal_workstation/recipes/git_projects.rb +29 -0
  54. data/lib/test_pivotal_workstation/recipes/git_scripts.rb +19 -0
  55. data/lib/test_pivotal_workstation/recipes/github_for_mac.rb +25 -0
  56. data/lib/test_pivotal_workstation/recipes/github_ssh_keys.rb +16 -0
  57. data/lib/test_pivotal_workstation/recipes/gitx.rb +56 -0
  58. data/lib/test_pivotal_workstation/recipes/global_environment_variables.rb +3 -0
  59. data/lib/test_pivotal_workstation/recipes/google_chrome_prevent_updates.rb +10 -0
  60. data/lib/test_pivotal_workstation/recipes/homebrew.rb +27 -0
  61. data/lib/test_pivotal_workstation/recipes/imagemagick.rb +3 -0
  62. data/lib/test_pivotal_workstation/recipes/inputrc.rb +6 -0
  63. data/lib/test_pivotal_workstation/recipes/iterm_set_defaults.rb +167 -0
  64. data/lib/test_pivotal_workstation/recipes/java.rb +8 -0
  65. data/lib/test_pivotal_workstation/recipes/joe.rb +3 -0
  66. data/lib/test_pivotal_workstation/recipes/libreoffice.rb +6 -0
  67. data/lib/test_pivotal_workstation/recipes/lion_basedev.rb +38 -0
  68. data/lib/test_pivotal_workstation/recipes/locate_on.rb +8 -0
  69. data/lib/test_pivotal_workstation/recipes/memcached.rb +20 -0
  70. data/lib/test_pivotal_workstation/recipes/mongodb.rb +20 -0
  71. data/lib/test_pivotal_workstation/recipes/mouse_locator.rb +54 -0
  72. data/lib/test_pivotal_workstation/recipes/mysql.rb +44 -0
  73. data/lib/test_pivotal_workstation/recipes/nginx.rb +46 -0
  74. data/lib/test_pivotal_workstation/recipes/osx_updates.rb +3 -0
  75. data/lib/test_pivotal_workstation/recipes/pg_admin.rb +4 -0
  76. data/lib/test_pivotal_workstation/recipes/pivotal_logos.rb +101 -0
  77. data/lib/test_pivotal_workstation/recipes/postgres.rb +89 -0
  78. data/lib/test_pivotal_workstation/recipes/remove_garageband.rb +11 -0
  79. data/lib/test_pivotal_workstation/recipes/rubymine.rb +8 -0
  80. data/lib/test_pivotal_workstation/recipes/rubymine_preferences_pivotal.rb +36 -0
  81. data/lib/test_pivotal_workstation/recipes/rvm.rb +53 -0
  82. data/lib/test_pivotal_workstation/recipes/safari_preferences.rb +4 -0
  83. data/lib/test_pivotal_workstation/recipes/screen_sharing_app.rb +12 -0
  84. data/lib/test_pivotal_workstation/recipes/screen_sharing_on.rb +16 -0
  85. data/lib/test_pivotal_workstation/recipes/selenium_webdriver.rb +24 -0
  86. data/lib/test_pivotal_workstation/recipes/set_finder_show_hd_on_desktop.rb +4 -0
  87. data/lib/test_pivotal_workstation/recipes/set_multitouch_preferences.rb +9 -0
  88. data/lib/test_pivotal_workstation/recipes/set_screensaver_preferences.rb +21 -0
  89. data/lib/test_pivotal_workstation/recipes/sizeup.rb +19 -0
  90. data/lib/test_pivotal_workstation/recipes/skype.rb +5 -0
  91. data/lib/test_pivotal_workstation/recipes/ssh_copy_id.rb +3 -0
  92. data/lib/test_pivotal_workstation/recipes/sshd_on.rb +16 -0
  93. data/lib/test_pivotal_workstation/recipes/ssl_certificate.rb +50 -0
  94. data/lib/test_pivotal_workstation/recipes/svn.rb +1 -0
  95. data/lib/test_pivotal_workstation/recipes/terminal_focus.rb +4 -0
  96. data/lib/test_pivotal_workstation/recipes/terminal_preferences.rb +9 -0
  97. data/lib/test_pivotal_workstation/recipes/textmate.rb +29 -0
  98. data/lib/test_pivotal_workstation/recipes/textmate_plugins.rb +31 -0
  99. data/lib/test_pivotal_workstation/recipes/textmate_preferences.rb +83 -0
  100. data/lib/test_pivotal_workstation/recipes/timemachine_preferences.rb +22 -0
  101. data/lib/test_pivotal_workstation/recipes/user_owns_usr_local.rb +8 -0
  102. data/lib/test_pivotal_workstation/recipes/vim.rb +66 -0
  103. data/lib/test_pivotal_workstation/recipes/virtualbox.rb +7 -0
  104. data/lib/test_pivotal_workstation/recipes/workspace_directory.rb +5 -0
  105. data/lib/test_pivotal_workstation/resources/package.rb +34 -0
  106. data/lib/test_pivotal_workstation/templates/default/bash_profile-arch_flags.sh.erb +3 -0
  107. data/lib/test_pivotal_workstation/templates/default/bash_profile-better_history.sh.erb +4 -0
  108. data/lib/test_pivotal_workstation/templates/default/bash_profile-ec2_tools.sh.erb +5 -0
  109. data/lib/test_pivotal_workstation/templates/default/bash_profile-git_vim.sh.erb +1 -0
  110. data/lib/test_pivotal_workstation/templates/default/bash_profile-no_sudo_gem_install.sh.erb +2 -0
  111. data/lib/test_pivotal_workstation/templates/default/bash_profile-ps1.sh.erb +8 -0
  112. data/lib/test_pivotal_workstation/templates/default/bash_profile-ree_settings.sh.erb +6 -0
  113. data/lib/test_pivotal_workstation/templates/default/bash_profile-rvm.sh.erb +1 -0
  114. data/lib/test_pivotal_workstation/templates/default/bash_profile-vi_is_minimal_vim.sh.erb +1 -0
  115. data/lib/test_pivotal_workstation/templates/default/bash_profile.erb +6 -0
  116. data/lib/test_pivotal_workstation/templates/default/git_scripts_pairs.erb +12 -0
  117. data/lib/test_pivotal_workstation/templates/default/inputrc.erb +10 -0
  118. data/lib/test_pivotal_workstation/templates/default/launchd.conf.erb +6 -0
  119. data/lib/test_pivotal_workstation/templates/default/nginx.conf.erb +79 -0
  120. data/lib/test_pivotal_workstation/templates/default/org.nginx.nginx.plist.erb +22 -0
  121. data/lib/test_pivotal_workstation/templates/default/pivotal_logos-dsimport.erb +2 -0
  122. data/lib/test_pivotal_workstation/version.rb +3 -0
  123. data/test_pivotal_workstation.gemspec +24 -0
  124. metadata +168 -0
@@ -0,0 +1,3 @@
1
+ # This resolves issues install the mysql, postgres, and other gems with native non universal binary extensions
2
+ # You only want this if you are on Snow Leopard
3
+ export ARCHFLAGS='-arch x86_64'
@@ -0,0 +1,4 @@
1
+ export HISTCONTROL=ignoredups;
2
+ export HISTSIZE=10000;
3
+ shopt -s histappend;
4
+ PROMPT_COMMAND='history -a';
@@ -0,0 +1,5 @@
1
+ export JAVA_HOME="/System/Library/Frameworks/JavaVM.framework/Home"
2
+ export EC2_HOME="/usr/local/Cellar/ec2-api-tools/1.3-62308/jars"
3
+
4
+ test -e $HOME/.ec2/pk-*.pem && export EC2_PRIVATE_KEY="$(/bin/ls $HOME/.ec2/pk-*.pem)"
5
+ test -e $HOME/.ec2/cert-* && export EC2_CERT="$(/bin/ls $HOME/.ec2/cert-*.pem)"
@@ -0,0 +1,2 @@
1
+ alias sudo="sudo ";
2
+ alias gem='ruby -e "raise \"SUDO GEM DETECTED. Unalias gem at your own risk\" if ENV[\"USER\"] == \"root\"" && gem';
@@ -0,0 +1,8 @@
1
+ parse_git_branch() {
2
+ git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/(\1)/'
3
+ }
4
+ export -f parse_git_branch
5
+
6
+ export CLICOLOR=1
7
+ export PS1="\[\033[36m\]\h:\W \[\033[33m\]\$(parse_git_branch)\[\033[00m\]$\[\033[00m\] "
8
+ export SUDO_PS1='\[\e[0;31m\]\u\[\e[m\] \[\e[1;34m\]\w\[\e[m\] \[\e[0;31m\]\$ \[\e[0m\]'
@@ -0,0 +1,6 @@
1
+ # REE Settings
2
+ export RUBY_HEAP_FREE_MIN=1024
3
+ export RUBY_HEAP_MIN_SLOTS=4000000
4
+ export RUBY_HEAP_SLOTS_INCREMENT=250000
5
+ export RUBY_GC_MALLOC_LIMIT=500000000
6
+ export RUBY_HEAP_SLOTS_GROWTH_FACTOR=1
@@ -0,0 +1 @@
1
+ source ${HOME}/.rvm/scripts/rvm;
@@ -0,0 +1,6 @@
1
+ # Chef assumes that it owns this file.
2
+ # Additions to bash should be placed into <%= BASH_INCLUDES_SUBDIR %> with a .sh extension
3
+
4
+ for file in ~/<%= BASH_INCLUDES_DIRNAME %>/*.sh; do
5
+ [[ -r $file ]] && source $file;
6
+ done
@@ -0,0 +1,12 @@
1
+ # This file is managed by chef! Override node.default["git_pairs_authors"] in attributes/git_pairs.rb to modify.
2
+
3
+ pairs:
4
+ <% node.git_pairs_authors.each do |half_pair| %>
5
+ <%= "#{half_pair["initials"]}: #{half_pair["name"]}"%><%= half_pair["shortname"] ? "; #{half_pair["shortname"]}" : "" %>
6
+ <% end %>
7
+
8
+ email:
9
+ prefix: pair
10
+ domain: pivotallabs.com
11
+
12
+ global: true
@@ -0,0 +1,10 @@
1
+ "\e[A": history-search-backward
2
+ "\e[B": history-search-forward
3
+ $if Bash
4
+ Space: magic-space
5
+ $endif
6
+ "\M-o": "\C-p\C-a\M-f "
7
+ set completion-ignore-case on
8
+ set visible-stats on
9
+ set show-all-if-ambiguous on
10
+ "\M-s": menu-complete
@@ -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,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,2 @@
1
+ 0x0A 0x5C 0x3A 0x2C dsRecTypeStandard:Users 2 dsAttrTypeStandard:RecordName externalbinary:dsAttrTypeStandard:JPEGPhoto
2
+ <%=WS_USER%>:<%=WS_HOME%>/Pictures/Icons/tracker_dot.jpeg
@@ -0,0 +1,3 @@
1
+ module TestPivotalWorkstation
2
+ VERSION = "0.0.1"
3
+ end
@@ -0,0 +1,24 @@
1
+ # -*- encoding: utf-8 -*-
2
+ $:.push File.expand_path("../lib", __FILE__)
3
+ require "test_pivotal_workstation/version"
4
+
5
+ Gem::Specification.new do |s|
6
+ s.name = "test_pivotal_workstation"
7
+ s.version = TestPivotalWorkstation::VERSION
8
+ s.authors = ["Tim Connor"]
9
+ s.email = ["timocratic@gmail.com"]
10
+ s.homepage = ""
11
+ s.summary = %q{The pivotal_workstation recipes as a gem}
12
+ s.description = %q{Just a test of the theory, mind you}
13
+
14
+ s.rubyforge_project = "test_pivotal_workstation"
15
+
16
+ s.files = `git ls-files`.split("\n")
17
+ s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
18
+ s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
19
+ s.require_paths = ["lib"]
20
+
21
+ # specify any dependencies here; for example:
22
+ # s.add_development_dependency "rspec"
23
+ # s.add_runtime_dependency "rest-client"
24
+ end
metadata ADDED
@@ -0,0 +1,168 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: test_pivotal_workstation
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Tim Connor
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2011-09-16 00:00:00.000000000Z
13
+ dependencies: []
14
+ description: Just a test of the theory, mind you
15
+ email:
16
+ - timocratic@gmail.com
17
+ executables: []
18
+ extensions: []
19
+ extra_rdoc_files: []
20
+ files:
21
+ - .gitignore
22
+ - Gemfile
23
+ - LICENSE.txt
24
+ - README.markdown
25
+ - Rakefile
26
+ - lib/test_pivotal_workstation.rb
27
+ - lib/test_pivotal_workstation/attributes/default.rb
28
+ - lib/test_pivotal_workstation/attributes/git_pairs.rb
29
+ - lib/test_pivotal_workstation/attributes/git_projects.rb
30
+ - lib/test_pivotal_workstation/attributes/github_for_mac.rb
31
+ - lib/test_pivotal_workstation/attributes/gitx.rb
32
+ - lib/test_pivotal_workstation/attributes/mouse_locator.rb
33
+ - lib/test_pivotal_workstation/attributes/nginx.rb
34
+ - lib/test_pivotal_workstation/attributes/pg_admin.rb
35
+ - lib/test_pivotal_workstation/attributes/rvm.rb
36
+ - lib/test_pivotal_workstation/attributes/sizeup.rb
37
+ - lib/test_pivotal_workstation/attributes/versions.rb
38
+ - lib/test_pivotal_workstation/attributes/vim.rb
39
+ - lib/test_pivotal_workstation/attributes/workspace_directory.rb
40
+ - lib/test_pivotal_workstation/libraries/applescript.rb
41
+ - lib/test_pivotal_workstation/libraries/bash_profile_include.rb
42
+ - lib/test_pivotal_workstation/libraries/brew.rb
43
+ - lib/test_pivotal_workstation/libraries/directories.rb
44
+ - lib/test_pivotal_workstation/libraries/marker.rb
45
+ - lib/test_pivotal_workstation/libraries/osx_app.rb
46
+ - lib/test_pivotal_workstation/libraries/rvm_ruby_install.rb
47
+ - lib/test_pivotal_workstation/libraries/user.rb
48
+ - lib/test_pivotal_workstation/libraries/version.rb
49
+ - lib/test_pivotal_workstation/providers/package.rb
50
+ - lib/test_pivotal_workstation/recipes/ack.rb
51
+ - lib/test_pivotal_workstation/recipes/active_corners.rb
52
+ - lib/test_pivotal_workstation/recipes/activemq.rb
53
+ - lib/test_pivotal_workstation/recipes/bash_path_order.rb
54
+ - lib/test_pivotal_workstation/recipes/bash_profile-arch_flags.rb
55
+ - lib/test_pivotal_workstation/recipes/bash_profile-better_history.rb
56
+ - lib/test_pivotal_workstation/recipes/bash_profile-no_sudo_gem_install.rb
57
+ - lib/test_pivotal_workstation/recipes/bash_profile-ps1.rb
58
+ - lib/test_pivotal_workstation/recipes/bash_profile-ree_settings.rb
59
+ - lib/test_pivotal_workstation/recipes/bash_profile.rb
60
+ - lib/test_pivotal_workstation/recipes/ccmenu.rb
61
+ - lib/test_pivotal_workstation/recipes/chrome.rb
62
+ - lib/test_pivotal_workstation/recipes/default_editor.rb
63
+ - lib/test_pivotal_workstation/recipes/defaults_fast_key_repeat_rate.rb
64
+ - lib/test_pivotal_workstation/recipes/disable_front_row.rb
65
+ - lib/test_pivotal_workstation/recipes/dock_preferences.rb
66
+ - lib/test_pivotal_workstation/recipes/dropbox.rb
67
+ - lib/test_pivotal_workstation/recipes/ec2_api_tools.rb
68
+ - lib/test_pivotal_workstation/recipes/finder_display_full_path.rb
69
+ - lib/test_pivotal_workstation/recipes/firefox.rb
70
+ - lib/test_pivotal_workstation/recipes/gem_no_rdoc_no_ri.rb
71
+ - lib/test_pivotal_workstation/recipes/git.rb
72
+ - lib/test_pivotal_workstation/recipes/git_config_global_defaults.rb
73
+ - lib/test_pivotal_workstation/recipes/git_projects.rb
74
+ - lib/test_pivotal_workstation/recipes/git_scripts.rb
75
+ - lib/test_pivotal_workstation/recipes/github_for_mac.rb
76
+ - lib/test_pivotal_workstation/recipes/github_ssh_keys.rb
77
+ - lib/test_pivotal_workstation/recipes/gitx.rb
78
+ - lib/test_pivotal_workstation/recipes/global_environment_variables.rb
79
+ - lib/test_pivotal_workstation/recipes/google_chrome_prevent_updates.rb
80
+ - lib/test_pivotal_workstation/recipes/homebrew.rb
81
+ - lib/test_pivotal_workstation/recipes/imagemagick.rb
82
+ - lib/test_pivotal_workstation/recipes/inputrc.rb
83
+ - lib/test_pivotal_workstation/recipes/iterm_set_defaults.rb
84
+ - lib/test_pivotal_workstation/recipes/java.rb
85
+ - lib/test_pivotal_workstation/recipes/joe.rb
86
+ - lib/test_pivotal_workstation/recipes/libreoffice.rb
87
+ - lib/test_pivotal_workstation/recipes/lion_basedev.rb
88
+ - lib/test_pivotal_workstation/recipes/locate_on.rb
89
+ - lib/test_pivotal_workstation/recipes/memcached.rb
90
+ - lib/test_pivotal_workstation/recipes/mongodb.rb
91
+ - lib/test_pivotal_workstation/recipes/mouse_locator.rb
92
+ - lib/test_pivotal_workstation/recipes/mysql.rb
93
+ - lib/test_pivotal_workstation/recipes/nginx.rb
94
+ - lib/test_pivotal_workstation/recipes/osx_updates.rb
95
+ - lib/test_pivotal_workstation/recipes/pg_admin.rb
96
+ - lib/test_pivotal_workstation/recipes/pivotal_logos.rb
97
+ - lib/test_pivotal_workstation/recipes/postgres.rb
98
+ - lib/test_pivotal_workstation/recipes/remove_garageband.rb
99
+ - lib/test_pivotal_workstation/recipes/rubymine.rb
100
+ - lib/test_pivotal_workstation/recipes/rubymine_preferences_pivotal.rb
101
+ - lib/test_pivotal_workstation/recipes/rvm.rb
102
+ - lib/test_pivotal_workstation/recipes/safari_preferences.rb
103
+ - lib/test_pivotal_workstation/recipes/screen_sharing_app.rb
104
+ - lib/test_pivotal_workstation/recipes/screen_sharing_on.rb
105
+ - lib/test_pivotal_workstation/recipes/selenium_webdriver.rb
106
+ - lib/test_pivotal_workstation/recipes/set_finder_show_hd_on_desktop.rb
107
+ - lib/test_pivotal_workstation/recipes/set_multitouch_preferences.rb
108
+ - lib/test_pivotal_workstation/recipes/set_screensaver_preferences.rb
109
+ - lib/test_pivotal_workstation/recipes/sizeup.rb
110
+ - lib/test_pivotal_workstation/recipes/skype.rb
111
+ - lib/test_pivotal_workstation/recipes/ssh_copy_id.rb
112
+ - lib/test_pivotal_workstation/recipes/sshd_on.rb
113
+ - lib/test_pivotal_workstation/recipes/ssl_certificate.rb
114
+ - lib/test_pivotal_workstation/recipes/svn.rb
115
+ - lib/test_pivotal_workstation/recipes/terminal_focus.rb
116
+ - lib/test_pivotal_workstation/recipes/terminal_preferences.rb
117
+ - lib/test_pivotal_workstation/recipes/textmate.rb
118
+ - lib/test_pivotal_workstation/recipes/textmate_plugins.rb
119
+ - lib/test_pivotal_workstation/recipes/textmate_preferences.rb
120
+ - lib/test_pivotal_workstation/recipes/timemachine_preferences.rb
121
+ - lib/test_pivotal_workstation/recipes/user_owns_usr_local.rb
122
+ - lib/test_pivotal_workstation/recipes/vim.rb
123
+ - lib/test_pivotal_workstation/recipes/virtualbox.rb
124
+ - lib/test_pivotal_workstation/recipes/workspace_directory.rb
125
+ - lib/test_pivotal_workstation/resources/package.rb
126
+ - lib/test_pivotal_workstation/templates/default/bash_profile-arch_flags.sh.erb
127
+ - lib/test_pivotal_workstation/templates/default/bash_profile-better_history.sh.erb
128
+ - lib/test_pivotal_workstation/templates/default/bash_profile-ec2_tools.sh.erb
129
+ - lib/test_pivotal_workstation/templates/default/bash_profile-git_vim.sh.erb
130
+ - lib/test_pivotal_workstation/templates/default/bash_profile-no_sudo_gem_install.sh.erb
131
+ - lib/test_pivotal_workstation/templates/default/bash_profile-ps1.sh.erb
132
+ - lib/test_pivotal_workstation/templates/default/bash_profile-ree_settings.sh.erb
133
+ - lib/test_pivotal_workstation/templates/default/bash_profile-rvm.sh.erb
134
+ - lib/test_pivotal_workstation/templates/default/bash_profile-vi_is_minimal_vim.sh.erb
135
+ - lib/test_pivotal_workstation/templates/default/bash_profile.erb
136
+ - lib/test_pivotal_workstation/templates/default/git_scripts_pairs.erb
137
+ - lib/test_pivotal_workstation/templates/default/inputrc.erb
138
+ - lib/test_pivotal_workstation/templates/default/launchd.conf.erb
139
+ - lib/test_pivotal_workstation/templates/default/nginx.conf.erb
140
+ - lib/test_pivotal_workstation/templates/default/org.nginx.nginx.plist.erb
141
+ - lib/test_pivotal_workstation/templates/default/pivotal_logos-dsimport.erb
142
+ - lib/test_pivotal_workstation/version.rb
143
+ - test_pivotal_workstation.gemspec
144
+ homepage: ''
145
+ licenses: []
146
+ post_install_message:
147
+ rdoc_options: []
148
+ require_paths:
149
+ - lib
150
+ required_ruby_version: !ruby/object:Gem::Requirement
151
+ none: false
152
+ requirements:
153
+ - - ! '>='
154
+ - !ruby/object:Gem::Version
155
+ version: '0'
156
+ required_rubygems_version: !ruby/object:Gem::Requirement
157
+ none: false
158
+ requirements:
159
+ - - ! '>='
160
+ - !ruby/object:Gem::Version
161
+ version: '0'
162
+ requirements: []
163
+ rubyforge_project: test_pivotal_workstation
164
+ rubygems_version: 1.8.6
165
+ signing_key:
166
+ specification_version: 3
167
+ summary: The pivotal_workstation recipes as a gem
168
+ test_files: []