honkster-bundler 1.1.pre

Sign up to get free protection for your applications and to get access to all the features.
Files changed (137) hide show
  1. data/.gitignore +14 -0
  2. data/CHANGELOG.md +547 -0
  3. data/ISSUES.md +32 -0
  4. data/LICENSE +20 -0
  5. data/README.md +29 -0
  6. data/Rakefile +150 -0
  7. data/UPGRADING.md +103 -0
  8. data/bin/bundle +21 -0
  9. data/bundler.gemspec +30 -0
  10. data/lib/bundler.rb +268 -0
  11. data/lib/bundler/capistrano.rb +11 -0
  12. data/lib/bundler/cli.rb +515 -0
  13. data/lib/bundler/definition.rb +427 -0
  14. data/lib/bundler/dependency.rb +114 -0
  15. data/lib/bundler/deployment.rb +37 -0
  16. data/lib/bundler/dsl.rb +245 -0
  17. data/lib/bundler/environment.rb +47 -0
  18. data/lib/bundler/gem_helper.rb +145 -0
  19. data/lib/bundler/graph.rb +130 -0
  20. data/lib/bundler/index.rb +114 -0
  21. data/lib/bundler/installer.rb +84 -0
  22. data/lib/bundler/lazy_specification.rb +71 -0
  23. data/lib/bundler/lockfile_parser.rb +108 -0
  24. data/lib/bundler/remote_specification.rb +59 -0
  25. data/lib/bundler/resolver.rb +454 -0
  26. data/lib/bundler/rubygems_ext.rb +203 -0
  27. data/lib/bundler/runtime.rb +148 -0
  28. data/lib/bundler/settings.rb +117 -0
  29. data/lib/bundler/setup.rb +15 -0
  30. data/lib/bundler/shared_helpers.rb +151 -0
  31. data/lib/bundler/source.rb +662 -0
  32. data/lib/bundler/spec_set.rb +134 -0
  33. data/lib/bundler/templates/Executable +16 -0
  34. data/lib/bundler/templates/Gemfile +4 -0
  35. data/lib/bundler/templates/newgem/Gemfile.tt +4 -0
  36. data/lib/bundler/templates/newgem/Rakefile.tt +2 -0
  37. data/lib/bundler/templates/newgem/bin/newgem.tt +3 -0
  38. data/lib/bundler/templates/newgem/gitignore.tt +3 -0
  39. data/lib/bundler/templates/newgem/lib/newgem.rb.tt +7 -0
  40. data/lib/bundler/templates/newgem/lib/newgem/version.rb.tt +7 -0
  41. data/lib/bundler/templates/newgem/newgem.gemspec.tt +21 -0
  42. data/lib/bundler/ui.rb +60 -0
  43. data/lib/bundler/vendor/thor.rb +319 -0
  44. data/lib/bundler/vendor/thor/actions.rb +297 -0
  45. data/lib/bundler/vendor/thor/actions/create_file.rb +105 -0
  46. data/lib/bundler/vendor/thor/actions/directory.rb +93 -0
  47. data/lib/bundler/vendor/thor/actions/empty_directory.rb +134 -0
  48. data/lib/bundler/vendor/thor/actions/file_manipulation.rb +229 -0
  49. data/lib/bundler/vendor/thor/actions/inject_into_file.rb +104 -0
  50. data/lib/bundler/vendor/thor/base.rb +556 -0
  51. data/lib/bundler/vendor/thor/core_ext/file_binary_read.rb +9 -0
  52. data/lib/bundler/vendor/thor/core_ext/hash_with_indifferent_access.rb +75 -0
  53. data/lib/bundler/vendor/thor/core_ext/ordered_hash.rb +100 -0
  54. data/lib/bundler/vendor/thor/error.rb +30 -0
  55. data/lib/bundler/vendor/thor/invocation.rb +168 -0
  56. data/lib/bundler/vendor/thor/parser.rb +4 -0
  57. data/lib/bundler/vendor/thor/parser/argument.rb +67 -0
  58. data/lib/bundler/vendor/thor/parser/arguments.rb +161 -0
  59. data/lib/bundler/vendor/thor/parser/option.rb +120 -0
  60. data/lib/bundler/vendor/thor/parser/options.rb +174 -0
  61. data/lib/bundler/vendor/thor/shell.rb +88 -0
  62. data/lib/bundler/vendor/thor/shell/basic.rb +275 -0
  63. data/lib/bundler/vendor/thor/shell/color.rb +108 -0
  64. data/lib/bundler/vendor/thor/shell/html.rb +121 -0
  65. data/lib/bundler/vendor/thor/task.rb +114 -0
  66. data/lib/bundler/vendor/thor/util.rb +229 -0
  67. data/lib/bundler/vendor/thor/version.rb +3 -0
  68. data/lib/bundler/version.rb +6 -0
  69. data/lib/bundler/vlad.rb +9 -0
  70. data/man/bundle-config.ronn +90 -0
  71. data/man/bundle-exec.ronn +98 -0
  72. data/man/bundle-install.ronn +310 -0
  73. data/man/bundle-package.ronn +59 -0
  74. data/man/bundle-update.ronn +176 -0
  75. data/man/bundle.ronn +77 -0
  76. data/man/gemfile.5.ronn +273 -0
  77. data/man/index.txt +6 -0
  78. data/spec/cache/gems_spec.rb +205 -0
  79. data/spec/cache/git_spec.rb +9 -0
  80. data/spec/cache/path_spec.rb +27 -0
  81. data/spec/cache/platform_spec.rb +57 -0
  82. data/spec/install/deploy_spec.rb +197 -0
  83. data/spec/install/deprecated_spec.rb +43 -0
  84. data/spec/install/gems/c_ext_spec.rb +48 -0
  85. data/spec/install/gems/env_spec.rb +107 -0
  86. data/spec/install/gems/flex_spec.rb +272 -0
  87. data/spec/install/gems/groups_spec.rb +228 -0
  88. data/spec/install/gems/packed_spec.rb +72 -0
  89. data/spec/install/gems/platform_spec.rb +195 -0
  90. data/spec/install/gems/resolving_spec.rb +72 -0
  91. data/spec/install/gems/simple_case_spec.rb +749 -0
  92. data/spec/install/gems/sudo_spec.rb +77 -0
  93. data/spec/install/gems/win32_spec.rb +26 -0
  94. data/spec/install/gemspec_spec.rb +96 -0
  95. data/spec/install/git_spec.rb +553 -0
  96. data/spec/install/invalid_spec.rb +17 -0
  97. data/spec/install/path_spec.rb +329 -0
  98. data/spec/install/upgrade_spec.rb +26 -0
  99. data/spec/lock/flex_spec.rb +650 -0
  100. data/spec/lock/git_spec.rb +35 -0
  101. data/spec/other/check_spec.rb +221 -0
  102. data/spec/other/config_spec.rb +40 -0
  103. data/spec/other/console_spec.rb +54 -0
  104. data/spec/other/exec_spec.rb +241 -0
  105. data/spec/other/ext_spec.rb +16 -0
  106. data/spec/other/gem_helper_spec.rb +126 -0
  107. data/spec/other/help_spec.rb +36 -0
  108. data/spec/other/init_spec.rb +40 -0
  109. data/spec/other/newgem_spec.rb +24 -0
  110. data/spec/other/open_spec.rb +35 -0
  111. data/spec/other/show_spec.rb +82 -0
  112. data/spec/pack/gems_spec.rb +22 -0
  113. data/spec/quality_spec.rb +55 -0
  114. data/spec/resolver/basic_spec.rb +20 -0
  115. data/spec/resolver/platform_spec.rb +57 -0
  116. data/spec/runtime/environment_rb_spec.rb +162 -0
  117. data/spec/runtime/executable_spec.rb +110 -0
  118. data/spec/runtime/load_spec.rb +102 -0
  119. data/spec/runtime/platform_spec.rb +90 -0
  120. data/spec/runtime/require_spec.rb +231 -0
  121. data/spec/runtime/setup_spec.rb +412 -0
  122. data/spec/runtime/with_clean_env_spec.rb +15 -0
  123. data/spec/spec_helper.rb +82 -0
  124. data/spec/support/builders.rb +566 -0
  125. data/spec/support/helpers.rb +243 -0
  126. data/spec/support/indexes.rb +113 -0
  127. data/spec/support/matchers.rb +89 -0
  128. data/spec/support/path.rb +71 -0
  129. data/spec/support/platforms.rb +49 -0
  130. data/spec/support/ruby_ext.rb +19 -0
  131. data/spec/support/rubygems_ext.rb +30 -0
  132. data/spec/support/rubygems_hax/rubygems_plugin.rb +9 -0
  133. data/spec/support/sudo.rb +21 -0
  134. data/spec/update/gems_spec.rb +112 -0
  135. data/spec/update/git_spec.rb +159 -0
  136. data/spec/update/source_spec.rb +50 -0
  137. metadata +251 -0
metadata ADDED
@@ -0,0 +1,251 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: honkster-bundler
3
+ version: !ruby/object:Gem::Version
4
+ hash: 961915928
5
+ prerelease: true
6
+ segments:
7
+ - 1
8
+ - 1
9
+ - pre
10
+ version: 1.1.pre
11
+ platform: ruby
12
+ authors:
13
+ - Carl Lerche
14
+ - Yehuda Katz
15
+ - "Andr\xC3\xA9 Arko"
16
+ autorequire:
17
+ bindir: bin
18
+ cert_chain: []
19
+
20
+ date: 2010-10-22 00:00:00 -07:00
21
+ default_executable: bundle
22
+ dependencies:
23
+ - !ruby/object:Gem::Dependency
24
+ name: ronn
25
+ prerelease: false
26
+ requirement: &id001 !ruby/object:Gem::Requirement
27
+ none: false
28
+ requirements:
29
+ - - ">="
30
+ - !ruby/object:Gem::Version
31
+ hash: 3
32
+ segments:
33
+ - 0
34
+ version: "0"
35
+ type: :development
36
+ version_requirements: *id001
37
+ - !ruby/object:Gem::Dependency
38
+ name: rspec
39
+ prerelease: false
40
+ requirement: &id002 !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - "="
44
+ - !ruby/object:Gem::Version
45
+ hash: 7712058
46
+ segments:
47
+ - 2
48
+ - 0
49
+ - 0
50
+ - rc
51
+ version: 2.0.0.rc
52
+ type: :development
53
+ version_requirements: *id002
54
+ description: Bundler manages an application's dependencies through its entire life, across many machines, systematically and repeatably
55
+ email:
56
+ - carlhuda@engineyard.com
57
+ executables:
58
+ - bundle
59
+ extensions: []
60
+
61
+ extra_rdoc_files: []
62
+
63
+ files:
64
+ - .gitignore
65
+ - CHANGELOG.md
66
+ - ISSUES.md
67
+ - LICENSE
68
+ - README.md
69
+ - Rakefile
70
+ - UPGRADING.md
71
+ - bin/bundle
72
+ - bundler.gemspec
73
+ - lib/bundler.rb
74
+ - lib/bundler/capistrano.rb
75
+ - lib/bundler/cli.rb
76
+ - lib/bundler/definition.rb
77
+ - lib/bundler/dependency.rb
78
+ - lib/bundler/deployment.rb
79
+ - lib/bundler/dsl.rb
80
+ - lib/bundler/environment.rb
81
+ - lib/bundler/gem_helper.rb
82
+ - lib/bundler/graph.rb
83
+ - lib/bundler/index.rb
84
+ - lib/bundler/installer.rb
85
+ - lib/bundler/lazy_specification.rb
86
+ - lib/bundler/lockfile_parser.rb
87
+ - lib/bundler/remote_specification.rb
88
+ - lib/bundler/resolver.rb
89
+ - lib/bundler/rubygems_ext.rb
90
+ - lib/bundler/runtime.rb
91
+ - lib/bundler/settings.rb
92
+ - lib/bundler/setup.rb
93
+ - lib/bundler/shared_helpers.rb
94
+ - lib/bundler/source.rb
95
+ - lib/bundler/spec_set.rb
96
+ - lib/bundler/templates/Executable
97
+ - lib/bundler/templates/Gemfile
98
+ - lib/bundler/templates/newgem/Gemfile.tt
99
+ - lib/bundler/templates/newgem/Rakefile.tt
100
+ - lib/bundler/templates/newgem/bin/newgem.tt
101
+ - lib/bundler/templates/newgem/gitignore.tt
102
+ - lib/bundler/templates/newgem/lib/newgem.rb.tt
103
+ - lib/bundler/templates/newgem/lib/newgem/version.rb.tt
104
+ - lib/bundler/templates/newgem/newgem.gemspec.tt
105
+ - lib/bundler/ui.rb
106
+ - lib/bundler/vendor/thor.rb
107
+ - lib/bundler/vendor/thor/actions.rb
108
+ - lib/bundler/vendor/thor/actions/create_file.rb
109
+ - lib/bundler/vendor/thor/actions/directory.rb
110
+ - lib/bundler/vendor/thor/actions/empty_directory.rb
111
+ - lib/bundler/vendor/thor/actions/file_manipulation.rb
112
+ - lib/bundler/vendor/thor/actions/inject_into_file.rb
113
+ - lib/bundler/vendor/thor/base.rb
114
+ - lib/bundler/vendor/thor/core_ext/file_binary_read.rb
115
+ - lib/bundler/vendor/thor/core_ext/hash_with_indifferent_access.rb
116
+ - lib/bundler/vendor/thor/core_ext/ordered_hash.rb
117
+ - lib/bundler/vendor/thor/error.rb
118
+ - lib/bundler/vendor/thor/invocation.rb
119
+ - lib/bundler/vendor/thor/parser.rb
120
+ - lib/bundler/vendor/thor/parser/argument.rb
121
+ - lib/bundler/vendor/thor/parser/arguments.rb
122
+ - lib/bundler/vendor/thor/parser/option.rb
123
+ - lib/bundler/vendor/thor/parser/options.rb
124
+ - lib/bundler/vendor/thor/shell.rb
125
+ - lib/bundler/vendor/thor/shell/basic.rb
126
+ - lib/bundler/vendor/thor/shell/color.rb
127
+ - lib/bundler/vendor/thor/shell/html.rb
128
+ - lib/bundler/vendor/thor/task.rb
129
+ - lib/bundler/vendor/thor/util.rb
130
+ - lib/bundler/vendor/thor/version.rb
131
+ - lib/bundler/version.rb
132
+ - lib/bundler/vlad.rb
133
+ - man/bundle-config.ronn
134
+ - man/bundle-exec.ronn
135
+ - man/bundle-install.ronn
136
+ - man/bundle-package.ronn
137
+ - man/bundle-update.ronn
138
+ - man/bundle.ronn
139
+ - man/gemfile.5.ronn
140
+ - man/index.txt
141
+ - spec/cache/gems_spec.rb
142
+ - spec/cache/git_spec.rb
143
+ - spec/cache/path_spec.rb
144
+ - spec/cache/platform_spec.rb
145
+ - spec/install/deploy_spec.rb
146
+ - spec/install/deprecated_spec.rb
147
+ - spec/install/gems/c_ext_spec.rb
148
+ - spec/install/gems/env_spec.rb
149
+ - spec/install/gems/flex_spec.rb
150
+ - spec/install/gems/groups_spec.rb
151
+ - spec/install/gems/packed_spec.rb
152
+ - spec/install/gems/platform_spec.rb
153
+ - spec/install/gems/resolving_spec.rb
154
+ - spec/install/gems/simple_case_spec.rb
155
+ - spec/install/gems/sudo_spec.rb
156
+ - spec/install/gems/win32_spec.rb
157
+ - spec/install/gemspec_spec.rb
158
+ - spec/install/git_spec.rb
159
+ - spec/install/invalid_spec.rb
160
+ - spec/install/path_spec.rb
161
+ - spec/install/upgrade_spec.rb
162
+ - spec/lock/flex_spec.rb
163
+ - spec/lock/git_spec.rb
164
+ - spec/other/check_spec.rb
165
+ - spec/other/config_spec.rb
166
+ - spec/other/console_spec.rb
167
+ - spec/other/exec_spec.rb
168
+ - spec/other/ext_spec.rb
169
+ - spec/other/gem_helper_spec.rb
170
+ - spec/other/help_spec.rb
171
+ - spec/other/init_spec.rb
172
+ - spec/other/newgem_spec.rb
173
+ - spec/other/open_spec.rb
174
+ - spec/other/show_spec.rb
175
+ - spec/pack/gems_spec.rb
176
+ - spec/quality_spec.rb
177
+ - spec/resolver/basic_spec.rb
178
+ - spec/resolver/platform_spec.rb
179
+ - spec/runtime/environment_rb_spec.rb
180
+ - spec/runtime/executable_spec.rb
181
+ - spec/runtime/load_spec.rb
182
+ - spec/runtime/platform_spec.rb
183
+ - spec/runtime/require_spec.rb
184
+ - spec/runtime/setup_spec.rb
185
+ - spec/runtime/with_clean_env_spec.rb
186
+ - spec/spec_helper.rb
187
+ - spec/support/builders.rb
188
+ - spec/support/helpers.rb
189
+ - spec/support/indexes.rb
190
+ - spec/support/matchers.rb
191
+ - spec/support/path.rb
192
+ - spec/support/platforms.rb
193
+ - spec/support/ruby_ext.rb
194
+ - spec/support/rubygems_ext.rb
195
+ - spec/support/rubygems_hax/rubygems_plugin.rb
196
+ - spec/support/sudo.rb
197
+ - spec/update/gems_spec.rb
198
+ - spec/update/git_spec.rb
199
+ - spec/update/source_spec.rb
200
+ - lib/bundler/man/bundle-install.txt
201
+ - lib/bundler/man/bundle-package.txt
202
+ - lib/bundler/man/bundle-exec.txt
203
+ - lib/bundler/man/gemfile.5.txt
204
+ - lib/bundler/man/bundle-package
205
+ - lib/bundler/man/bundle-config
206
+ - lib/bundler/man/bundle-update
207
+ - lib/bundler/man/bundle-exec
208
+ - lib/bundler/man/bundle
209
+ - lib/bundler/man/gemfile.5
210
+ - lib/bundler/man/bundle-install
211
+ - lib/bundler/man/bundle.txt
212
+ - lib/bundler/man/bundle-config.txt
213
+ - lib/bundler/man/bundle-update.txt
214
+ has_rdoc: true
215
+ homepage: http://gembundler.com
216
+ licenses: []
217
+
218
+ post_install_message:
219
+ rdoc_options: []
220
+
221
+ require_paths:
222
+ - lib
223
+ required_ruby_version: !ruby/object:Gem::Requirement
224
+ none: false
225
+ requirements:
226
+ - - ">="
227
+ - !ruby/object:Gem::Version
228
+ hash: 3
229
+ segments:
230
+ - 0
231
+ version: "0"
232
+ required_rubygems_version: !ruby/object:Gem::Requirement
233
+ none: false
234
+ requirements:
235
+ - - ">="
236
+ - !ruby/object:Gem::Version
237
+ hash: 23
238
+ segments:
239
+ - 1
240
+ - 3
241
+ - 6
242
+ version: 1.3.6
243
+ requirements: []
244
+
245
+ rubyforge_project: bundler
246
+ rubygems_version: 1.3.7
247
+ signing_key:
248
+ specification_version: 3
249
+ summary: The best way to manage your application's dependencies
250
+ test_files: []
251
+