zsh_dots 0.5.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (70) hide show
  1. data/.gitignore +25 -0
  2. data/.gitmodules +3 -0
  3. data/.rvmrc +47 -0
  4. data/Gemfile +7 -0
  5. data/Gemfile.lock +38 -0
  6. data/README.md +115 -0
  7. data/Rakefile +9 -0
  8. data/bin/dots +7 -0
  9. data/bin/elocal_nightly.sh +12 -0
  10. data/bin/gbrt +42 -0
  11. data/bin/git_cwd_info +40 -0
  12. data/bin/lein +229 -0
  13. data/bin/reattach-to-user-namespace +0 -0
  14. data/bin/ssh-copy-id +54 -0
  15. data/bin/stock +83 -0
  16. data/config/.dot_file +1 -0
  17. data/config/aws +0 -0
  18. data/config/example.aws.zsh +13 -0
  19. data/config/gemrc +9 -0
  20. data/config/gitconfig +46 -0
  21. data/config/railsrc +2 -0
  22. data/config/rspec +2 -0
  23. data/config/rvmrc +1 -0
  24. data/config/screenrc +1 -0
  25. data/config/tmux.conf +6 -0
  26. data/config/zlogin +1 -0
  27. data/config/zshenv +59 -0
  28. data/config/zshrc +8 -0
  29. data/etc/mandlebrot.c +59 -0
  30. data/etc/rails/composer.yml +30 -0
  31. data/etc/rails/ember_template.rb +60 -0
  32. data/etc/rails/recipes/haml_views.rb +20 -0
  33. data/etc/rails/recipes/html5.rb +84 -0
  34. data/etc/rails/recipes/readme_markdown.rb +87 -0
  35. data/etc/rails/template.rb +1419 -0
  36. data/lib/dots/aliases.zsh +40 -0
  37. data/lib/dots/directories.zsh +28 -0
  38. data/lib/dots/functions.zsh +41 -0
  39. data/lib/dots/plugins.zsh +18 -0
  40. data/lib/dots.sh +11 -0
  41. data/lib/plugins/aws/aws.plugin.zsh +20 -0
  42. data/lib/plugins/bundler/_bundler +82 -0
  43. data/lib/plugins/bundler/bundler.plugin.zsh +7 -0
  44. data/lib/plugins/git/git.plugin.zsh +126 -0
  45. data/lib/plugins/git-flow/git-flow.plugin.zsh +340 -0
  46. data/lib/plugins/knife/_knife +183 -0
  47. data/lib/plugins/knife/knife.plugin.zsh +1 -0
  48. data/lib/plugins/macvim/macvim.plugin.zsh +13 -0
  49. data/lib/plugins/osx/_man-preview +5 -0
  50. data/lib/plugins/osx/osx.plugin.zsh +101 -0
  51. data/lib/plugins/rails3/rails3.plugin.zsh +75 -0
  52. data/lib/plugins/rake/rake.plugin.zsh +6 -0
  53. data/lib/plugins/ruby/ruby.plugin.zsh +58 -0
  54. data/lib/ruby/dots/command.rb +58 -0
  55. data/lib/ruby/dots/dot_file.rb +73 -0
  56. data/lib/ruby/dots/version.rb +3 -0
  57. data/lib/ruby/dots.rb +9 -0
  58. data/lib/tasks/db.rake +55 -0
  59. data/lib/tasks/dots.rake +32 -0
  60. data/spec/integration/command_spec.rb +34 -0
  61. data/spec/models/dot_file_spec.rb +45 -0
  62. data/spec/spec_helper.rb +6 -0
  63. data/vendor/antigen.zsh +251 -0
  64. data/vendor/oh-my-zsh/check_for_upgrade.sh +45 -0
  65. data/vendor/oh-my-zsh/install.sh +43 -0
  66. data/vendor/oh-my-zsh/require_tool.sh +161 -0
  67. data/vendor/oh-my-zsh/uninstall.sh +20 -0
  68. data/vendor/oh-my-zsh/upgrade.sh +6 -0
  69. data/zsh_dots.gemspec +28 -0
  70. metadata +163 -0
metadata ADDED
@@ -0,0 +1,163 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: zsh_dots
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.5.0
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Tom Scott
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2012-10-14 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: thor
16
+ requirement: &70310540326480 !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ! '>='
20
+ - !ruby/object:Gem::Version
21
+ version: '0'
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: *70310540326480
25
+ - !ruby/object:Gem::Dependency
26
+ name: activemodel
27
+ requirement: &70310540326060 !ruby/object:Gem::Requirement
28
+ none: false
29
+ requirements:
30
+ - - ! '>='
31
+ - !ruby/object:Gem::Version
32
+ version: '0'
33
+ type: :runtime
34
+ prerelease: false
35
+ version_requirements: *70310540326060
36
+ - !ruby/object:Gem::Dependency
37
+ name: rake
38
+ requirement: &70310540325640 !ruby/object:Gem::Requirement
39
+ none: false
40
+ requirements:
41
+ - - ! '>='
42
+ - !ruby/object:Gem::Version
43
+ version: '0'
44
+ type: :development
45
+ prerelease: false
46
+ version_requirements: *70310540325640
47
+ description: DOTS is an advanced ZSH framework.
48
+ email:
49
+ - tubbo@psychedeli.ca
50
+ executables:
51
+ - dots
52
+ - elocal_nightly.sh
53
+ - gbrt
54
+ - git_cwd_info
55
+ - lein
56
+ - reattach-to-user-namespace
57
+ - ssh-copy-id
58
+ - stock
59
+ extensions: []
60
+ extra_rdoc_files: []
61
+ files:
62
+ - .gitignore
63
+ - .gitmodules
64
+ - .rvmrc
65
+ - Gemfile
66
+ - Gemfile.lock
67
+ - README.md
68
+ - Rakefile
69
+ - bin/dots
70
+ - bin/elocal_nightly.sh
71
+ - bin/gbrt
72
+ - bin/git_cwd_info
73
+ - bin/lein
74
+ - bin/reattach-to-user-namespace
75
+ - bin/ssh-copy-id
76
+ - bin/stock
77
+ - config/.dot_file
78
+ - config/aws
79
+ - config/example.aws.zsh
80
+ - config/gemrc
81
+ - config/gitconfig
82
+ - config/railsrc
83
+ - config/rspec
84
+ - config/rvmrc
85
+ - config/screenrc
86
+ - config/tmux.conf
87
+ - config/zlogin
88
+ - config/zshenv
89
+ - config/zshrc
90
+ - etc/mandlebrot.c
91
+ - etc/rails/composer.yml
92
+ - etc/rails/ember_template.rb
93
+ - etc/rails/recipes/haml_views.rb
94
+ - etc/rails/recipes/html5.rb
95
+ - etc/rails/recipes/readme_markdown.rb
96
+ - etc/rails/template.rb
97
+ - lib/dots.sh
98
+ - lib/dots/aliases.zsh
99
+ - lib/dots/directories.zsh
100
+ - lib/dots/functions.zsh
101
+ - lib/dots/plugins.zsh
102
+ - lib/plugins/aws/aws.plugin.zsh
103
+ - lib/plugins/bundler/_bundler
104
+ - lib/plugins/bundler/bundler.plugin.zsh
105
+ - lib/plugins/git-flow/git-flow.plugin.zsh
106
+ - lib/plugins/git/git.plugin.zsh
107
+ - lib/plugins/knife/_knife
108
+ - lib/plugins/knife/knife.plugin.zsh
109
+ - lib/plugins/macvim/macvim.plugin.zsh
110
+ - lib/plugins/osx/_man-preview
111
+ - lib/plugins/osx/osx.plugin.zsh
112
+ - lib/plugins/rails3/rails3.plugin.zsh
113
+ - lib/plugins/rake/rake.plugin.zsh
114
+ - lib/plugins/ruby/ruby.plugin.zsh
115
+ - lib/ruby/dots.rb
116
+ - lib/ruby/dots/command.rb
117
+ - lib/ruby/dots/dot_file.rb
118
+ - lib/ruby/dots/version.rb
119
+ - lib/tasks/db.rake
120
+ - lib/tasks/dots.rake
121
+ - spec/integration/command_spec.rb
122
+ - spec/models/dot_file_spec.rb
123
+ - spec/spec_helper.rb
124
+ - vendor/antigen.zsh
125
+ - vendor/oh-my-zsh/check_for_upgrade.sh
126
+ - vendor/oh-my-zsh/install.sh
127
+ - vendor/oh-my-zsh/require_tool.sh
128
+ - vendor/oh-my-zsh/uninstall.sh
129
+ - vendor/oh-my-zsh/upgrade.sh
130
+ - zsh_dots.gemspec
131
+ homepage: http://tubbo.github.com/dots
132
+ licenses: []
133
+ post_install_message:
134
+ rdoc_options: []
135
+ require_paths:
136
+ - lib/ruby
137
+ required_ruby_version: !ruby/object:Gem::Requirement
138
+ none: false
139
+ requirements:
140
+ - - ! '>='
141
+ - !ruby/object:Gem::Version
142
+ version: '0'
143
+ required_rubygems_version: !ruby/object:Gem::Requirement
144
+ none: false
145
+ requirements:
146
+ - - ! '>='
147
+ - !ruby/object:Gem::Version
148
+ version: '0'
149
+ requirements: []
150
+ rubyforge_project:
151
+ rubygems_version: 1.8.17
152
+ signing_key:
153
+ specification_version: 3
154
+ summary: DOTS is an advanced ZSH framework. It abstracts a lot of hard-to-remember
155
+ commands away from you and leaves you with fully-documented, easy-to-remember, plain-english
156
+ aliases for common tasks. Supporting the Antigen framework for plugins, it's meant
157
+ to be easy to install and light-weight in code, but able to support and replicate
158
+ an entire home directory worth of dotfiles, essentially enabling you to take your
159
+ shell environment "on the road" in a Github repository.
160
+ test_files:
161
+ - spec/integration/command_spec.rb
162
+ - spec/models/dot_file_spec.rb
163
+ - spec/spec_helper.rb