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 (
Run the following if you haven't already:
gem sources -a http://gems.github.com
Install the gem(s):
sudo gem install gcnovus-trowel
trowel /
| name | age | message | |
|---|---|---|---|
| |
.gitignore | Sat Apr 26 19:59:15 -0700 2008 | [gcnovus] |
| |
License.txt | Sat Apr 26 09:22:18 -0700 2008 | [gcnovus] |
| |
Manifest.txt | Mon Jun 16 15:08:08 -0700 2008 | [hallettj] |
| |
README.txt | Sat Apr 26 19:11:54 -0700 2008 | [gcnovus] |
| |
Rakefile | Fri May 02 11:21:46 -0700 2008 | [gcnovus] |
| |
bin/ | Sat Apr 26 19:11:54 -0700 2008 | [gcnovus] |
| |
lib/ | Mon Jun 16 19:39:44 -0700 2008 | [gcnovus] |
| |
test/ | Sat Apr 26 19:17:20 -0700 2008 | [gcnovus] |
| |
trowel.gemspec | Mon Jun 16 19:39:44 -0700 2008 | [gcnovus] |
README.txt
= trowel * http://github.com/gcnovus/trowel == DESCRIPTION: Trowel helps you write GitHub-based gems. It's a bit like Hoe, but probably not as well-written. In fact, it borrows quite heavily from Hoe; thanks Seattle Ruby! == FEATURES/PROBLEMS: Generated tasks: * clean - cleans generated files * deploy:local - deploys the gem locally * gemspec:generate - generates a gemspec file for GitHub * gemspec:clean - deleted the gemspec file * manifest:verify - verifies the gem manifest file * package:assemble - generates the .gem file in pkg/ * package:clean - cleans out the .gem file from pkg/ See class rdoc for help. Hint: ri Hoe == FEATURES/PROBLEMS: * Provides 'sow' for quick project directory creation. * Make making and maintaining Rakefiles fun and easy. == SYNOPSIS: To create a new gem project on GitHub: 1. login to GitHub and create a new project 2. % trowel [group] project 3. % cd project 4. % git init 5. % git commit -m 'first commit' 6. % git remote add origin git@github.com:username/project.git 7. % git push origin master 8. http://github.com/username/project/edit and select "RubyGem" 9. code, code, code, test, test, test, commit 10. rake gemspec:generate 11. git add project.gemspec 12. git commit -m 'added gemspec for GitHub gem generation' 13. git push origin master If you already have a project going, you can just add Trowel to your existing Rakefile or .task file: require 'trowel' Trowel::define_tasks(projectname, version) do |p| # ... project specific data ... end # ... project specific tasks ... == REQUIREMENTS: * rake (gem) * rubygems (gem) * an account on GitHub == INSTALL: * sudo gem install trowel == LICENSE: Copyright (c) 2008 James Rosen 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.




