Update gemspec things

This commit is contained in:
Scott Barron 2009-10-23 11:57:24 -04:00
parent dfc2874972
commit 7167f67980
2 changed files with 2 additions and 21 deletions

View File

@ -55,8 +55,8 @@ EOF
s.rdoc_options = rd.options
s.authors = ['Scott Barron', 'Scott Petersen', 'Travis Tilley']
s.email = 'ttilley@gmail.com'
s.homepage = 'http://github.com/ttilley/aasm'
s.email = 'scott@elitists.net'
s.homepage = 'http://github.com/rubyist/aasm'
end
package_task = Rake::GemPackageTask.new(spec) do |pkg|

View File

@ -1,19 +0,0 @@
PKG_FILES = ["CHANGELOG", "MIT-LICENSE", "Rakefile", "README.rdoc", "TODO", "lib/aasm.rb", "lib/aasm/aasm.rb", "lib/aasm/event.rb", "lib/aasm/persistence/active_record_persistence.rb", "lib/aasm/persistence.rb", "lib/aasm/state.rb", "lib/aasm/state_machine.rb", "lib/aasm/state_transition.rb", "doc/jamis.rb"]
Gem::Specification.new do |s|
s.name = 'aasm'
s.version = "2.1.1"
s.summary = 'State machine mixin for Ruby objects'
s.description = <<-EOF
AASM is a continuation of the acts as state machine rails plugin, built for plain Ruby objects.
EOF
s.files = PKG_FILES
s.require_path = 'lib'
s.has_rdoc = true
s.extra_rdoc_files = ['README.rdoc', 'MIT-LICENSE', 'TODO', 'CHANGELOG']
s.rdoc_options = ['--line-numbers', '--inline-source', '--main', 'README.rdoc', '--title', 'AASM']
s.author = 'Scott Barron'
s.email = 'scott@elitists.net'
s.homepage = 'http://github.com/rubyist/aasm'
end