Skip to content
This repository has been archived by the owner on Nov 3, 2021. It is now read-only.

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
Kaoru Kobo committed Nov 11, 2010
1 parent 7619d98 commit a1c15d2
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 13 deletions.
4 changes: 2 additions & 2 deletions README.rdoc
@@ -1,12 +1,12 @@
= rhook - AOP & hacking library easy with Ruby
= rhook - Easily drive AOP & hacking existing library with Ruby

- You can provide hook point in your code,
- and can customize its behavior from outside.
- Also you can 'hack' (== injecting hook point from outside) any methods in existing code.

== Install

gem install --source http://gems.github.com/ rhook
gem install rhook

== Basic Usage

Expand Down
2 changes: 1 addition & 1 deletion Rakefile
Expand Up @@ -5,7 +5,7 @@ begin
require 'jeweler'
Jeweler::Tasks.new do |gem|
gem.name = "rhook"
gem.summary = %Q{AOP & hacking library easy with Ruby}
gem.summary = %Q{Easily drive AOP & hacking existing library with Ruby}
gem.description = %Q{You can provide hook point in your code, and can customize its behavior from outside. Also you can 'hack' (== injecting hook point from outside) any methods in existing code.}
gem.email = ""
gem.homepage = "http://github.com/kaorukobo/rhook"
Expand Down
16 changes: 6 additions & 10 deletions rhook.gemspec
Expand Up @@ -5,11 +5,11 @@

Gem::Specification.new do |s|
s.name = %q{rhook}
s.version = "0.1.1"
s.version = "0.1.2"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Kaoru Kobo"]
s.date = %q{2010-11-10}
s.date = %q{2010-11-11}
s.description = %q{You can provide hook point in your code, and can customize its behavior from outside. Also you can 'hack' (== injecting hook point from outside) any methods in existing code.}
s.email = %q{}
s.extra_rdoc_files = [
Expand All @@ -29,31 +29,27 @@ Gem::Specification.new do |s|
"spec/spec.opts",
"spec/spec_helper.rb"
]
s.has_rdoc = true
s.homepage = %q{http://github.com/kaorukobo/rhook}
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.1}
s.summary = %q{AOP & hacking library easy with Ruby}
s.rubygems_version = %q{1.3.7}
s.summary = %q{Easily drive AOP & hacking existing library with Ruby}
s.test_files = [
"spec/rhook_spec.rb",
"spec/spec_helper.rb"
]

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

if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
s.add_development_dependency(%q<rspec>, [">= 1.2.9"])
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_development_dependency(%q<rspec>, [">= 1.2.9"])
else
s.add_dependency(%q<rspec>, [">= 1.2.9"])
s.add_dependency(%q<rspec>, [">= 1.2.9"])
end
else
s.add_dependency(%q<rspec>, [">= 1.2.9"])
s.add_dependency(%q<rspec>, [">= 1.2.9"])
end
end

0 comments on commit a1c15d2

Please sign in to comment.