Navigation Menu

Skip to content

Commit

Permalink
Switch to standard Hoe structure.
Browse files Browse the repository at this point in the history
  • Loading branch information
jbarnette committed Jul 2, 2009
1 parent 8b61318 commit 810e7fb
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 16 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.rdoc
@@ -1,3 +1,3 @@
=== 1.0.0 (2009-02-24)
=== 1.0.0 / 2009-02-24

* Birthday!
1 change: 1 addition & 0 deletions Manifest.txt
Expand Up @@ -3,6 +3,7 @@ Manifest.txt
README.rdoc
Rakefile
install.rb
lib/intercession.rb
lib/intercession/lifecycle.rb
lib/intercession/version.rb
rails/init.rb
Expand Down
12 changes: 7 additions & 5 deletions README.rdoc
@@ -1,5 +1,9 @@
= Intercession

* http://github.com/jbarnette/intercession

== Description

Treat your sessions like models, not hashes. Intercession mixes a module into
the session on each request, allowing you to nicely encapsulate (and test!)
lots of user and session-specific behavior.
Expand Down Expand Up @@ -35,12 +39,10 @@ As a plugin:

As a gem:

$ sudo gem install intercession

If you're using Intercession as a gem, add it to the gem dependencies
in one of your environment config files:
$ gem install intercession

config.gem "intercession", :lib => "intercession/lifecycle"
If you're using Intercession as a gem, add it to your app's gem
dependency mechanism.

== License

Expand Down
17 changes: 7 additions & 10 deletions Rakefile
@@ -1,16 +1,13 @@
require "rubygems"
require "hoe"

require "./lib/intercession/version.rb"
Hoe.plugin :git

Hoe.new "intercession", Intercession::VERSION do |p|
p.developer "John Barnette", "jbarnette@rubyforge.org"
Hoe.spec "intercession" do
developer "John Barnette", "jbarnette@rubyforge.org"

p.url = "http://github.com/jbarnette/intercession"
p.history_file = "CHANGELOG.rdoc"
p.readme_file = "README.rdoc"
p.extra_rdoc_files = [p.readme_file]
p.need_tar = false
p.test_globs = %w(test/**/*_test.rb)
p.testlib = :minitest
self.extra_rdoc_files = FileList["*.rdoc"]
self.history_file = "CHANGELOG.rdoc"
self.readme_file = "README.rdoc"
self.testlib = :minitest
end
3 changes: 3 additions & 0 deletions lib/intercession.rb
@@ -0,0 +1,3 @@
module Intercession
VERSION = "1.0.0"
end

0 comments on commit 810e7fb

Please sign in to comment.