newgem 1.4.1 → 1.5.0
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +71 -64
- data/Manifest.txt +4 -13
- data/Rakefile +15 -47
- data/app_generators/newgem/newgem_generator.rb +2 -3
- data/app_generators/newgem/templates/History.txt +1 -1
- data/app_generators/newgem/templates/Rakefile +19 -22
- data/app_generators/newgem_simple/templates/Rakefile +7 -13
- data/features/install_cucumber.feature +5 -1
- data/features/install_website.feature +1 -1
- data/features/newgem_cli.feature +0 -12
- data/features/step_definitions/cli_steps.rb +0 -2
- data/features/step_definitions/common_steps.rb +0 -9
- data/features/step_definitions/rubygems_steps.rb +8 -0
- data/features/support/env.rb +7 -11
- data/lib/hoe/cucumberfeatures.rb +22 -0
- data/lib/hoe/manifest.rb +30 -0
- data/lib/hoe/newgem.rb +74 -0
- data/lib/hoe/website.rb +66 -0
- data/lib/newgem.rb +1 -3
- data/lib/newgem/tasks.rb +10 -2
- data/newgem_generators/install_website/install_website_generator.rb +0 -3
- data/rubygems_generators/executable/templates/bin/app.rb.erb +1 -1
- data/rubygems_generators/install_cucumber/templates/features/step_definitions/common_steps.rb +0 -9
- data/rubygems_generators/install_cucumber/templates/features/support/env.rb.erb +8 -0
- metadata +12 -24
- data/bundles/RubyGem.tmbundle/Snippets/History header trunk.tmSnippet +0 -18
- data/bundles/RubyGem.tmbundle/Snippets/History header.tmSnippet +0 -18
- data/bundles/RubyGem.tmbundle/Syntaxes/Rdoc.tmLanguage +0 -70
- data/bundles/RubyGem.tmbundle/info.plist +0 -16
- data/lib/hoe-patched.rb +0 -1029
- data/lib/newgem/support/tasks.rb +0 -10
- data/newgem_generators/install_website/templates/tasks/website.rake +0 -47
- data/patches/hoe/0001-readme-can-be-txt-or-rdoc.patch +0 -62
- data/tasks/bundles.rake +0 -12
- data/tasks/cucumber.rake +0 -9
- data/tasks/deployment.rake +0 -37
- data/tasks/environment.rake +0 -7
- data/tasks/website.rake +0 -47
data/History.txt
CHANGED
@@ -1,8 +1,15 @@
|
|
1
|
-
|
1
|
+
=== 1.5.0 2009-06-15
|
2
|
+
|
3
|
+
* support for hoe 2.0+ DSL
|
4
|
+
* 'Given a safe place' is now in a common Before block; so no longer explicitly required
|
5
|
+
* executable: generated executable includes: require 'rubygems'
|
6
|
+
* removed hoe-patched.rb since hoe 2.0+ is much more configurable
|
7
|
+
|
8
|
+
=== 1.4.1 2009-05-02
|
2
9
|
|
3
10
|
* missing file from manifest.. I hate manifests.
|
4
11
|
|
5
|
-
|
12
|
+
=== 1.4.0 2009-05-02
|
6
13
|
|
7
14
|
* install_shoulda - use "newgem -T shoulda" to use shoulda for testing instead of test_unit or rspec
|
8
15
|
* common_steps.rb - When steps all started with 'I ...'
|
@@ -11,31 +18,31 @@
|
|
11
18
|
* module_name supports hyphens throughout all generators (they are treated as underscores for camelize method)
|
12
19
|
* common_steps.rb - using "(.*)" for placeholders which is now cucumber defacto standard
|
13
20
|
|
14
|
-
|
21
|
+
=== 1.3.0 2009-03-17
|
15
22
|
|
16
23
|
* install_cucumber: using layout like Rails' cucumber generator: features/support/env.rb + features/step_definitions/common_steps.rb
|
17
24
|
|
18
|
-
|
25
|
+
=== 1.2.3 2008-12-29
|
19
26
|
|
20
27
|
* 'rake features' uses --format progress now
|
21
28
|
* bump rubigen to 1.5.1
|
22
29
|
* move website to gh-pages branch, and official homepage to http://drnic.github.com/newgem
|
23
30
|
|
24
|
-
|
31
|
+
=== 1.2.2 2008-12-27
|
25
32
|
|
26
33
|
* Added USAGE file to install_cucumber generator so it shows up in lists of available generators
|
27
34
|
* Some improvements to common.rb
|
28
35
|
|
29
|
-
|
36
|
+
=== 1.2.1 2008-12-15
|
30
37
|
|
31
38
|
* Fixed 'uninitialized constant NewgemGenerator::Newgem' bug [#14]
|
32
39
|
* Fixed some cucumber steps after rubigen refactoring
|
33
40
|
|
34
|
-
|
41
|
+
=== 1.2.0 2008-12-11
|
35
42
|
|
36
43
|
* Newgem + RubiGen are Ruby 1.9.1 compliant.
|
37
44
|
|
38
|
-
|
45
|
+
=== 1.1.0 2008-11-11
|
39
46
|
|
40
47
|
* Support for ~/.newgem.yml file for default CLI arguments
|
41
48
|
* Example content: `default: -T rspec -i cucumber`
|
@@ -43,21 +50,21 @@
|
|
43
50
|
* executable generator: test/spec files give more useful starting point with a StringIO passed into CLI.execute(stdout, args)
|
44
51
|
* 'rake manifest' instead of 'rake manifest:refresh' [was actually released in 1.0.7]
|
45
52
|
|
46
|
-
|
53
|
+
=== 1.0.7 2008-11-08
|
47
54
|
|
48
55
|
* Removed 'rake local_deploy' and changed website to reference 'rake install_gem' for same purpose [fixed #9]
|
49
56
|
* Fixed --version option (+ added cucumber scenario) [fixed #8]
|
50
57
|
* Cleaned up the common.rb steps
|
51
58
|
|
52
|
-
|
59
|
+
=== 1.0.6 2008-11-05
|
53
60
|
|
54
61
|
* Removed cucumber references in newgem's Rakefile, hopefully fixing #7
|
55
62
|
|
56
|
-
|
63
|
+
=== 1.0.5 2008-11-01
|
57
64
|
|
58
65
|
* Oops, fixed cucumber dependency from 1.1.8 to 0.1.8
|
59
66
|
|
60
|
-
|
67
|
+
=== 1.0.4 2008-11-01
|
61
68
|
|
62
69
|
* Hard-coded cucumber >= 0.1.8 dependency to avoid accidently requiring unreleased versions that are only in development
|
63
70
|
* local tasks/*.rake are loaded in generated gems
|
@@ -65,12 +72,12 @@
|
|
65
72
|
* cleaned up some require statements to explicitly load code from local src not an installed gem
|
66
73
|
* rake default => [:test, :features] - for continuous integration via runcoderun.com
|
67
74
|
|
68
|
-
|
75
|
+
=== 1.0.3 2008-10-31
|
69
76
|
|
70
77
|
* GitHub RubyGem support. `rake gemspec` generates a clean `my_project.gemspec` file that will work with GitHub
|
71
78
|
* update plain theme to a peppermint green colour; updated newgem's own website to same theme
|
72
79
|
|
73
|
-
|
80
|
+
=== 1.0.2 2008-10-30
|
74
81
|
|
75
82
|
* Lighthouse Project created for tickets/suggestions: http://drnic.lighthouseapp.com/projects/18881-newgem
|
76
83
|
* newgem no longer generates a website by default; use -w to create one; or -i website; or script/generate install_website
|
@@ -79,13 +86,13 @@
|
|
79
86
|
* hoe is patched and cached within newgem so that README.* is supported [fixes #5]
|
80
87
|
* rake-automated patching of hoe.rb from patches/hoe/*.patch
|
81
88
|
|
82
|
-
|
89
|
+
=== 1.0.1 2008-10-28
|
83
90
|
|
84
91
|
* Fix up readme + post-install notices based on 1.0.0 changes [thx Tomasz Muras]
|
85
92
|
* Remove old rails cucumber generator cruft from env.rb
|
86
93
|
* Clean up some feature/steps
|
87
94
|
|
88
|
-
|
95
|
+
=== 1.0.0 2008-10-21
|
89
96
|
|
90
97
|
* Yay for 1.0.0 of New Gem Generator!
|
91
98
|
* massive overhaul of Hoe definition and rake tasks
|
@@ -99,48 +106,48 @@
|
|
99
106
|
* install_website: uses a config/website.yml for username/host/remote_dir (defaults to rubyforge)
|
100
107
|
* Removed install_rspec_stories which was superseded by install_cucumber
|
101
108
|
|
102
|
-
|
109
|
+
=== 0.29.0 2008-10-18
|
103
110
|
|
104
111
|
* execute generator uses a lib/appname/cli.rb file
|
105
112
|
* basic feature descriptions for newgem and executable generators
|
106
113
|
|
107
|
-
|
114
|
+
=== 0.28.0 2008-10-17
|
108
115
|
|
109
116
|
* Cucumber support: install_cucumber generator, and features generator for cucumber scope
|
110
117
|
|
111
|
-
|
118
|
+
=== 0.27.0 2008-09-20
|
112
119
|
|
113
120
|
* Remove License.txt as its contents are in README (newgem + generator)
|
114
121
|
* RedCloth dependency - changed to new 4.0.0 version which is apparently new a shiny + fast
|
115
122
|
* Load RubyForge autoconfig correctly
|
116
123
|
* Integrate twitter search for 'newgem' on website
|
117
124
|
|
118
|
-
|
125
|
+
=== 0.26.0 2008-06-21 NEVER RELEASED
|
119
126
|
|
120
127
|
* README.rdoc is the name of generated and internal README root files, since github makes them look pretty
|
121
128
|
* RedCloth dependency - changed to =3.0.3 as 3.0.4 is dodgy apparently [Roger Pack]
|
122
129
|
|
123
|
-
|
130
|
+
=== 0.25.0 2008-06-19
|
124
131
|
|
125
132
|
* newgem: added --project option to allow a different Rubyforge [Yossef Mendelssohn]
|
126
133
|
* newgem: README contains generated year + name for license section [Yossef Mendelssohn]
|
127
134
|
* updated copyright in license
|
128
135
|
|
129
|
-
|
136
|
+
=== 0.24.0 2008-06-17
|
130
137
|
|
131
138
|
* Refactored generated tests into install_test_unit, so rspec users don't get test folder
|
132
139
|
* Cleaned up --simple and added task for generating gemspec file (for github) [Yehuda Katz]
|
133
140
|
|
134
|
-
|
141
|
+
=== 0.23.2 2008-05-06
|
135
142
|
|
136
143
|
* removed :nodoc: from version.rb's module [Steven Parkes]
|
137
144
|
* upgraded rubigen dependency to 1.3.0
|
138
145
|
|
139
|
-
|
146
|
+
=== 0.23.1 2008-04-17
|
140
147
|
|
141
148
|
* Added explicit instruction to edit ~/.rubyforge/user-config.yml in PostInstall.txt
|
142
149
|
|
143
|
-
|
150
|
+
=== 0.23.0 2008-04-17
|
144
151
|
|
145
152
|
* generated website/index.txt has customised rubyforge/github/gitorious information for git
|
146
153
|
* installing newgem now displays a post-install message (from PostInstall.txt)
|
@@ -148,27 +155,27 @@
|
|
148
155
|
* moved EXTRA_DEPENDENCIES to top of config/hoe.rb
|
149
156
|
* websites/*.txt are processed as ERB templates
|
150
157
|
|
151
|
-
|
158
|
+
=== 0.22.2 2008-04-07
|
152
159
|
|
153
160
|
* Cleaned up the REV cmd [Sascha Teske]
|
154
161
|
* Replaced hardcoded rspec values done in a hurry at RubyFools with parameterised values [Alsak Hellesoy]
|
155
162
|
|
156
|
-
|
163
|
+
=== 0.22.1 2008-04-05
|
157
164
|
|
158
165
|
* moved the 'by Daniel Cadenas' reference to the correct template.rhtml
|
159
166
|
* renamed template.rhtml -> template.html.erb in gem + generators
|
160
167
|
* fixed broken install_rspec_stories test
|
161
168
|
|
162
|
-
|
169
|
+
=== 0.22.0 2008-04-03
|
163
170
|
|
164
171
|
* script/console - irb/console for your gem under development [Orion]
|
165
172
|
|
166
|
-
|
173
|
+
=== 0.21.0 2008-04-03
|
167
174
|
|
168
175
|
* New Generator: install_rspec_stories for rubygems
|
169
176
|
* module.rb - more advanced $:.unshift sequence/cmd
|
170
177
|
|
171
|
-
|
178
|
+
=== 0.20.1 2008-03-30
|
172
179
|
|
173
180
|
* extconf generator
|
174
181
|
* creates test/test_#{name}_extn.rb test file
|
@@ -177,38 +184,38 @@
|
|
177
184
|
* USAGE has docco on files to ignore in SCM + hoe
|
178
185
|
* requirements.rb no longer loads main lib file; no idea why it did it before
|
179
186
|
|
180
|
-
|
187
|
+
=== 0.20.0 2008-03-30
|
181
188
|
|
182
189
|
* extconf generator - for C-extensions
|
183
190
|
* Hoe instance stored in $hoe so can be accessed from tasks/*.rake
|
184
191
|
|
185
|
-
|
192
|
+
=== 0.19.1 2008-03-27
|
186
193
|
|
187
194
|
* rspec "rake spec" supports spec/**/*_spec.rb search now [Steven Parkes]
|
188
195
|
|
189
|
-
|
196
|
+
=== 0.19.0 2008-03-25
|
190
197
|
|
191
198
|
* Added newgem_theme long_box_theme [Daniel Cadenas]
|
192
199
|
|
193
|
-
|
200
|
+
=== 0.18.0 2008-03-14
|
194
201
|
|
195
202
|
* Upgraded generated/local README.txt for latest hoe
|
196
203
|
|
197
|
-
|
204
|
+
=== 0.17.1 2008-02-20
|
198
205
|
|
199
206
|
* remove options from 'env ruby' in newgem bin
|
200
207
|
|
201
|
-
|
208
|
+
=== 0.17.0 2008-02-03
|
202
209
|
|
203
210
|
* Updated generated config/hoe.rb for latest hoe 1.5 requirements
|
204
211
|
* Added #!/usr/bin/env ruby line to bin/newgem
|
205
212
|
* Fixed docco for -T option (was '-t' in docco) [uploaded on 2008-1-3]
|
206
213
|
|
207
|
-
|
214
|
+
=== 0.16.1 2007-11-13
|
208
215
|
|
209
216
|
* Oops, removed .git* from the hoe clean list as that blows away the .git folder...
|
210
217
|
|
211
|
-
|
218
|
+
=== 0.16.0 2006-11-11
|
212
219
|
|
213
220
|
* Added a newgem_simple_generator to support the creation of a skinny gem
|
214
221
|
skeleton [thx wycats]
|
@@ -216,48 +223,48 @@
|
|
216
223
|
* Cleaned the history join string to make proper \n instead of \\n
|
217
224
|
* Checked in empty_log as empty.log was being ignored by svn
|
218
225
|
|
219
|
-
|
226
|
+
=== 0.15.0 2007-11-05
|
220
227
|
|
221
228
|
* Promoted 'application_generator' and 'component_generator' to Rubigen
|
222
229
|
from NewGem project (they are available even if newgem not installed)
|
223
230
|
|
224
|
-
|
231
|
+
=== 0.14.2 2007-11-03
|
225
232
|
|
226
233
|
* Application generator inserts scopes passed in at cmd line, not app name
|
227
234
|
* Generated gems have default testing scope: test_unit
|
228
235
|
|
229
|
-
|
236
|
+
=== 0.14.1 2007-10-18
|
230
237
|
|
231
238
|
* Added manifest:refresh rake task to recreate Manifest.txt with all files
|
232
239
|
* Corrected the generated readme for application generators
|
233
240
|
|
234
|
-
|
241
|
+
=== 0.14.0 2007-10-14
|
235
242
|
|
236
243
|
* application_generator includes the install_rubigen_scripts generator
|
237
244
|
* if website included, no "overwrite tasks/website.rake" questions
|
238
245
|
* Update to docco for rubigen-based output [thx Noah Gibbs]
|
239
246
|
* Fixed website dir location if gem name + project name differ [thx Noah Gibbs]
|
240
247
|
|
241
|
-
|
248
|
+
=== 0.13.5 2007-09-07
|
242
249
|
|
243
250
|
* rake tasks use rubyforge_username instead of RUBYFORGE_USERNAME constant
|
244
251
|
|
245
|
-
|
252
|
+
=== 0.13.4 2007-09-07
|
246
253
|
|
247
254
|
* Running "newgem ." in a trunk, branches, or tags folder will look in parent folder for gem_name
|
248
255
|
* Added missing win_script.cmd for install_website generator [thx sutch]
|
249
|
-
* Upgrade rubigen
|
256
|
+
* Upgrade rubigen === 1.0.4
|
250
257
|
|
251
|
-
|
258
|
+
=== 0.13.3 2007-09-02
|
252
259
|
|
253
260
|
* Clean up newgem_gen usage statement
|
254
261
|
* website generated by default, -W to turn off, -w is no longer an option
|
255
262
|
|
256
|
-
|
263
|
+
=== 0.13.2 2007-08-22
|
257
264
|
|
258
265
|
* Upgrade rubigen dependency to 1.0.3 to pushout upgrade
|
259
266
|
|
260
|
-
|
267
|
+
=== 0.13.1 2007-08-22
|
261
268
|
|
262
269
|
* Re-release as there seemed to be an incorrect Rakefile in 0.13.0
|
263
270
|
* Added :newgem as a source for destroy script
|
@@ -267,7 +274,7 @@ from NewGem project (they are available even if newgem not installed)
|
|
267
274
|
* plain_theme_generator
|
268
275
|
* Renamed from plain_generator
|
269
276
|
|
270
|
-
|
277
|
+
=== 0.13.0 2007-08-20
|
271
278
|
|
272
279
|
* HIGHLIGHT - RubiGen integration - using a Rails-like generator
|
273
280
|
* Now, each RubyGem has script/generate to access Rails-like generators too!!!
|
@@ -296,7 +303,7 @@ from NewGem project (they are available even if newgem not installed)
|
|
296
303
|
* Test all is well with "rake -T" and "rake check_manifest" (the manifest should have
|
297
304
|
been rebuilt by 'newgem .')
|
298
305
|
|
299
|
-
|
306
|
+
=== 0.12.0 2007-06-24
|
300
307
|
|
301
308
|
* 2 major enhancement
|
302
309
|
* Using Erb for templates [thx http://snippets.dzone.com/posts/show/1723]
|
@@ -309,7 +316,7 @@ from NewGem project (they are available even if newgem not installed)
|
|
309
316
|
* Minor website changes
|
310
317
|
* Added link to Topfunky's tutorial on Hoe
|
311
318
|
|
312
|
-
|
319
|
+
=== 0.11.0
|
313
320
|
|
314
321
|
* 1 major enhancement
|
315
322
|
* Create trunk/branches/tags subfolders using -s/--svn option
|
@@ -324,7 +331,7 @@ from NewGem project (they are available even if newgem not installed)
|
|
324
331
|
* Refreshed the example output as its a big old (CHANGELOG -> History.txt)
|
325
332
|
* Removed the "click anywhere" javascript in version box - it was playing up with the link to the book
|
326
333
|
|
327
|
-
|
334
|
+
=== 0.10.4 2007-06-02
|
328
335
|
|
329
336
|
* 2 minor enhancement
|
330
337
|
* website_upload now ignores .svn files [Thx Jeroen Janssen]
|
@@ -332,7 +339,7 @@ from NewGem project (they are available even if newgem not installed)
|
|
332
339
|
* 1 website enhancement
|
333
340
|
* Link to "Beginning Ruby" as it features this gem [Thx Peter Cooper for the plug] - its an affiliate amazon link so I can make $$$ and retire to Fiji
|
334
341
|
|
335
|
-
|
342
|
+
=== 0.10.3 2007-05-25
|
336
343
|
|
337
344
|
* 1 major enhancement
|
338
345
|
* rspec test framework now works via 'spec' task [Jeroen Janssen]
|
@@ -341,7 +348,7 @@ from NewGem project (they are available even if newgem not installed)
|
|
341
348
|
* Generated rakefile checks for existance of rspec gem else shows how to get it
|
342
349
|
* The require statement in the lib/<gemname>.rb file now uses lowercase project name [Jeroen Janssen]
|
343
350
|
|
344
|
-
|
351
|
+
=== 0.10.2 2007-05-25
|
345
352
|
|
346
353
|
* 3 major enhancements
|
347
354
|
* Generated Rakefile only attempts to discover username from ~/.rubyforge/user-config.yml when its required [thx Jeroen Janssen]
|
@@ -351,7 +358,7 @@ from NewGem project (they are available even if newgem not installed)
|
|
351
358
|
* Copied index.txt into README.txt - it looks crap, but at least there is content
|
352
359
|
* Generated Rakefile was missing a \
|
353
360
|
|
354
|
-
|
361
|
+
=== 0.10.1 2007-05-24
|
355
362
|
|
356
363
|
* 4 minor enhancements
|
357
364
|
* Fixed the generation of test files in the manifest
|
@@ -363,7 +370,7 @@ from NewGem project (they are available even if newgem not installed)
|
|
363
370
|
* Still being worked on:
|
364
371
|
* Gems using rspec include a #spec task to run all spec tests; currently tests aren't working.
|
365
372
|
|
366
|
-
|
373
|
+
=== 0.10.0 2007-05-19
|
367
374
|
|
368
375
|
* 3 major enhancements
|
369
376
|
* can generate rspec default tests (or still test::unit tests) using --with-test=rspec [thx Robby Russell]
|
@@ -372,7 +379,7 @@ from NewGem project (they are available even if newgem not installed)
|
|
372
379
|
* Generated lib/#{gem_name}.rb includes an empty module
|
373
380
|
* Generated lib/#{gem_name}.rb does not include "require all", instead you do it manually for each included file
|
374
381
|
|
375
|
-
|
382
|
+
=== 0.9.4 2007-05-18
|
376
383
|
|
377
384
|
* 5 minor enhancements
|
378
385
|
* Pass your full name into the generator to be inserted into License.txt, index.txt, Rakefile etc
|
@@ -381,26 +388,26 @@ from NewGem project (they are available even if newgem not installed)
|
|
381
388
|
* Includes :local_deploy which does tasks :website_generate and :install_gem
|
382
389
|
* License.txt generated * this gem has a License.txt file (MIT license)
|
383
390
|
|
384
|
-
|
391
|
+
=== 0.9.3 20/4/2007
|
385
392
|
|
386
393
|
* 1 minor enhancement
|
387
394
|
* Added 'deploy' task that generates website AND release new gem
|
388
395
|
* 1 website fix
|
389
396
|
* Fixed download link
|
390
397
|
|
391
|
-
|
398
|
+
=== 0.9.2 18/4/2007
|
392
399
|
|
393
400
|
* 1 minor improvement:
|
394
401
|
* Generated apps include a "require 'rubygems' line at the top"
|
395
402
|
* 1 website fix
|
396
403
|
* Notes that the index.txt file includes Dr Nic details, not their own.[FIXME!!]
|
397
404
|
|
398
|
-
|
405
|
+
=== 0.9.1 16/4/2007
|
399
406
|
|
400
407
|
* 1 bugfix:
|
401
408
|
* I thoughtfully added an extra line (commented out) for sending the website to a subfolder... it caused grief at the 13th hour
|
402
409
|
|
403
|
-
|
410
|
+
=== 0.9.0 12/4/2007
|
404
411
|
|
405
412
|
* 3 major enhancements:
|
406
413
|
* Includes a basic website template, with rake tasks for generation and upload to rubyforge
|
@@ -411,17 +418,17 @@ from NewGem project (they are available even if newgem not installed)
|
|
411
418
|
* test files ordered correctly in generated Manifest.txt
|
412
419
|
* no blank line in Manifest.txt if no bin apps
|
413
420
|
|
414
|
-
|
421
|
+
=== 0.8.1
|
415
422
|
|
416
423
|
* Generated test file's class name now prefixed with Test, instead of suffixed
|
417
424
|
|
418
|
-
|
425
|
+
=== 0.8.0
|
419
426
|
|
420
427
|
* Uses hoe itself - less hypocritical
|
421
428
|
* Generated test files use name 'test_<gemname>.rb' instead of '<gemname>_test.rb' to support
|
422
429
|
* ZenTest's autotest expectations of naming. Manifest updated too.
|
423
430
|
|
424
|
-
|
431
|
+
=== 0.7.1
|
425
432
|
|
426
433
|
* Installed gems now don't require 'hoe' (based on comments at http://blog.evanweaver.com/articles/2007/01/10/if-you-dont-want-to-hoe-echoe)
|
427
434
|
|
data/Manifest.txt
CHANGED
@@ -23,10 +23,6 @@ app_generators/newgem_simple/templates/lib/templates.rb
|
|
23
23
|
app_generators/newgem_simple/templates/spec/spec_helper.rb
|
24
24
|
app_generators/newgem_simple/templates/spec/templates_spec.rb.erb
|
25
25
|
bin/newgem
|
26
|
-
bundles/RubyGem.tmbundle/Snippets/History header trunk.tmSnippet
|
27
|
-
bundles/RubyGem.tmbundle/Snippets/History header.tmSnippet
|
28
|
-
bundles/RubyGem.tmbundle/Syntaxes/Rdoc.tmLanguage
|
29
|
-
bundles/RubyGem.tmbundle/info.plist
|
30
26
|
config/website.yml
|
31
27
|
cucumber_generators/feature/USAGE
|
32
28
|
cucumber_generators/feature/feature_generator.rb
|
@@ -46,11 +42,13 @@ features/support/cli.rb
|
|
46
42
|
features/support/common.rb
|
47
43
|
features/support/env.rb
|
48
44
|
features/support/matchers.rb
|
49
|
-
lib/hoe
|
45
|
+
lib/hoe/cucumberfeatures.rb
|
46
|
+
lib/hoe/manifest.rb
|
47
|
+
lib/hoe/newgem.rb
|
48
|
+
lib/hoe/website.rb
|
50
49
|
lib/newgem.rb
|
51
50
|
lib/newgem/quick_template.rb
|
52
51
|
lib/newgem/rubyforge-ext.rb
|
53
|
-
lib/newgem/support/tasks.rb
|
54
52
|
lib/newgem/tasks.rb
|
55
53
|
newgem_generators/install_website/USAGE
|
56
54
|
newgem_generators/install_website/install_website_generator.rb
|
@@ -58,7 +56,6 @@ newgem_generators/install_website/templates/config/website.yml.sample.erb
|
|
58
56
|
newgem_generators/install_website/templates/features/website.feature
|
59
57
|
newgem_generators/install_website/templates/script/txt2html
|
60
58
|
newgem_generators/install_website/templates/script/win_script.cmd
|
61
|
-
newgem_generators/install_website/templates/tasks/website.rake
|
62
59
|
newgem_generators/install_website/templates/website/index.html
|
63
60
|
newgem_generators/install_website/templates/website/index.txt
|
64
61
|
newgem_theme_generators/long_box_theme/USAGE
|
@@ -72,7 +69,6 @@ newgem_theme_generators/plain_theme/plain_theme_generator.rb
|
|
72
69
|
newgem_theme_generators/plain_theme/templates/website/javascripts/rounded_corners_lite.inc.js
|
73
70
|
newgem_theme_generators/plain_theme/templates/website/stylesheets/screen.css
|
74
71
|
newgem_theme_generators/plain_theme/templates/website/template.html.erb
|
75
|
-
patches/hoe/0001-readme-can-be-txt-or-rdoc.patch
|
76
72
|
rubygems_generators/executable/USAGE
|
77
73
|
rubygems_generators/executable/executable_generator.rb
|
78
74
|
rubygems_generators/executable/templates/bin/app.rb.erb
|
@@ -117,11 +113,6 @@ rubygems_generators/install_test_unit/templates/test/test_helper.rb
|
|
117
113
|
script/destroy
|
118
114
|
script/generate
|
119
115
|
script/txt2html
|
120
|
-
tasks/bundles.rake
|
121
|
-
tasks/cucumber.rake
|
122
|
-
tasks/deployment.rake
|
123
|
-
tasks/environment.rake
|
124
|
-
tasks/website.rake
|
125
116
|
test/fixtures/home/.rubyforge/auto-config.yml
|
126
117
|
test/fixtures/home/.rubyforge/user-config.yml
|
127
118
|
test/test_executable_generator.rb
|