From 7167f67980bb284b8db10fb0196332101619eca1 Mon Sep 17 00:00:00 2001 From: Scott Barron Date: Fri, 23 Oct 2009 11:57:24 -0400 Subject: [PATCH] Update gemspec things --- Rakefile | 4 ++-- aasm.gemspec | 19 ------------------- 2 files changed, 2 insertions(+), 21 deletions(-) delete mode 100644 aasm.gemspec diff --git a/Rakefile b/Rakefile index a547215..8ef1a1a 100644 --- a/Rakefile +++ b/Rakefile @@ -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| diff --git a/aasm.gemspec b/aasm.gemspec deleted file mode 100644 index 402dd4a..0000000 --- a/aasm.gemspec +++ /dev/null @@ -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