This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
nicwilliams (author)
Mon Mar 31 07:40:47 -0700 2008
newgem /
| name | age | message | |
|---|---|---|---|
| |
.gitignore | Mon Mar 31 07:40:34 -0700 2008 | [nicwilliams] |
| |
History.txt | Mon Mar 31 07:40:43 -0700 2008 | [nicwilliams] |
| |
License.txt | Fri May 18 10:38:06 -0700 2007 | [nicwilliams] |
| |
Manifest.txt | Mon Mar 31 07:40:43 -0700 2008 | [nicwilliams] |
| |
README.txt | Fri Mar 14 06:27:50 -0700 2008 | [nicwilliams] |
| |
Rakefile | Mon Aug 20 00:13:43 -0700 2007 | [nicwilliams] |
| |
Todo.txt | Fri Jun 15 05:59:15 -0700 2007 | [nicwilliams] |
| |
app_generators/ | Mon Mar 31 07:40:37 -0700 2008 | [nicwilliams] |
| |
bin/ | Wed Feb 20 03:38:57 -0800 2008 | [nicwilliams] |
| |
bundles/ | Sun Jun 17 02:17:49 -0700 2007 | [nicwilliams] |
| |
config/ | Sun Feb 03 02:49:49 -0800 2008 | [nicwilliams] |
| |
install.rb | Mon Oct 09 09:10:54 -0700 2006 | [nicwilliams] |
| |
lib/ | Mon Mar 31 07:40:31 -0700 2008 | [nicwilliams] |
| |
newgem_generators/ | Mon Mar 24 17:51:26 -0700 2008 | [nicwilliams] |
| |
newgem_theme_generators/ | Mon Mar 24 17:59:07 -0700 2008 | [nicwilliams] |
| |
rubygems_generators/ | Mon Mar 31 07:40:45 -0700 2008 | [nicwilliams] |
| |
script/ | Sun Nov 04 01:19:36 -0800 2007 | [nicwilliams] |
| |
setup.rb | Wed Oct 11 09:30:49 -0700 2006 | [nicwilliams] |
| |
tasks/ | Wed Oct 17 16:37:18 -0700 2007 | [nicwilliams] |
| |
test/ | Mon Mar 31 07:40:39 -0700 2008 | [nicwilliams] |
| |
website/ | Mon Mar 31 07:40:47 -0700 2008 | [nicwilliams] |
README.txt
= New Gem Generator * http://newgem.rubyforge.org == DESCRIPTION: Quickly bundle any Ruby libraries into a RubyGem and share it with the world, your colleagues, or perhaps just with yourself amongst your projects. RubyGems are centrally stored, versioned, and support dependencies between other gems, so they are the ultimate way to bundle libraries, executables, associated tests, examples, and more. Within this gem, you get one thing - <code>newgem</code> - an executable to create your own gems. Your new gems will include designated folders for Ruby code, test files, executables, and even a default website page for you to explain your project, and which instantly uploads to RubyForge website (which looks just like this one by default) == BASIC USAGE: Go to the folder where you want to create your new gem folder structure, and run the <code>newgem</code> command to generate your gem scaffolding. <pre>$ cd ~/ruby_projects $ newgem wizzo creating: wizzo creating: wizzo/CHANGELOG.txt creating: wizzo/README.txt creating: wizzo/lib creating: wizzo/script creating: wizzo/website creating: wizzo/website/javascripts creating: wizzo/website/stylesheets creating: wizzo/lib/wizzo creating: wizzo/lib/wizzo.rb creating: wizzo/lib/wizzo/version.rb creating: wizzo/bin creating: wizzo/test creating: wizzo/test/test_helper.rb creating: wizzo/test/test_wizzo.rb creating: wizzo/examples creating: wizzo/setup.rb creating: wizzo/Rakefile creating: wizzo/Manifest.txt creating: wizzo/History.txt creating: wizzo/script/generate creating: wizzo/script/txt2html creating: wizzo/website/index.txt creating: wizzo/website/template.rhtml copying: wizzo/website/javascripts/rounded_corners_lite.inc.js copying: wizzo/website/stylesheets/screen.css NOW - update wizzo/Rakefile with gem description, etc </pre> As of 0.10.0 - you can generate test::unit or rspec test stubs via the -t, --test-with options == SYNOPSIS: Now modify the constants at the top of *config/hoe.rb*, with your name, email and the location where you'll host your website for the gem. The defaults are tied to RubyForge for uploading the gems and the website. == REQUIREMENTS: * hoe * rubyforge == INSTALL: The <code>newgem</code> application is distributed itself as a RubyGem and is available immediately after installation. <pre syntax="ruby">sudo gem install newgem</pre> Alternately, download the gem and install manually. == LICENSE: (The MIT License) Copyright (c) 2008 FIX Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.




