Skip to content

Commit

Permalink
experimental release 0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
timcharper committed Feb 21, 2010
1 parent 4a3dce8 commit f389fb4
Show file tree
Hide file tree
Showing 4 changed files with 148 additions and 1 deletion.
23 changes: 22 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,22 @@
/tmp/
## MAC OS
.DS_Store

## TEXTMATE
*.tmproj
tmtags

## EMACS
*~
\#*
.\#*

## VIM
*.swp

## PROJECT::GENERAL
coverage
rdoc
pkg

## PROJECT::SPECIFIC
/tmp
20 changes: 20 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
Copyright (c) 2009 Tim Harper

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.
29 changes: 29 additions & 0 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
require 'rubygems'
require 'rake'

begin
require 'jeweler'
Jeweler::Tasks.new do |gem|
gem.name = "gitty"
gem.summary = %Q{Unobtrusively extend git}
gem.description = %Q{Unobtrusively extend git}
gem.email = "timcharper@gmail.com"
gem.homepage = "http://github.com/timcharper/gitty"
gem.authors = ["Tim Harper"]
gem.files = Dir['lib/**/*.rb'] + Dir['assets/**/*'] + Dir['bin/*'] + Dir['cucumber/**/*'] + Dir['spec/**/*'] + %w[cucumber.yml Rakefile README.textile LICENSE]
# gem.executables << 'git-hook'/
end
Jeweler::GemcutterTasks.new
rescue LoadError
puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler"
end

require 'rake/rdoctask'
Rake::RDocTask.new do |rdoc|
version = File.exist?('VERSION') ? File.read('VERSION') : ""

rdoc.rdoc_dir = 'rdoc'
rdoc.title = "gitty #{version}"
rdoc.rdoc_files.include('README*')
rdoc.rdoc_files.include('lib/**/*.rb')
end
77 changes: 77 additions & 0 deletions gitty.gemspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
# -*- encoding: utf-8 -*-

Gem::Specification.new do |s|
s.name = %q{gitty}
s.version = "0.1.0"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Tim Harper"]
s.date = %q{2010-02-21}
s.default_executable = %q{git-hook}
s.description = %q{Unobtrusively extend git}
s.email = %q{timcharper@gmail.com}
s.executables = ["git-hook"]
s.extra_rdoc_files = [
"LICENSE",
"README.textile"
]
s.files = [
"LICENSE",
"README.textile",
"Rakefile",
"assets/helpers/git-cleanup-branches",
"assets/helpers/git-strip-new-whitespace",
"assets/helpers/git-submodule-helper",
"assets/helpers/git-trash",
"assets/helpers/git-when-introduced",
"assets/helpers/hookd_wrapper",
"assets/hooks/clean-patches",
"assets/hooks/git-post-checkout-submodules",
"assets/hooks/git-prevent-messy-rebase",
"assets/hooks/prevent-nocommit-tags",
"bin/git-hook",
"cucumber.yml",
"lib/ext.rb",
"lib/gitty.rb",
"lib/gitty/commands/add.rb",
"lib/gitty/commands/init.rb",
"lib/gitty/commands/list.rb",
"lib/gitty/commands/manager.rb",
"lib/gitty/commands/publish.rb",
"lib/gitty/commands/remove.rb",
"lib/gitty/commands/shell.rb",
"lib/gitty/helpers.rb",
"lib/gitty/hook.rb",
"lib/gitty/runner.rb",
"lib/string.rb",
"spec/gitty/commands/add_spec.rb",
"spec/gitty_spec.rb",
"spec/spec_helper.rb",
"spec/support/constants.rb"
]
s.homepage = %q{http://github.com/timcharper/gitty}
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.5}
s.summary = %q{Unobtrusively extend git}
s.test_files = [
"spec/gitty/commands/add_spec.rb",
"spec/gitty_spec.rb",
"spec/spec_helper.rb",
"spec/support/constants.rb"
]

if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 3

if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
else
end
else
end
end

0 comments on commit f389fb4

Please sign in to comment.