Rakefile in rubyist-aasm-2.0.7 vs Rakefile in rubyist-aasm-2.1.1

- old
+ new

@@ -20,12 +20,12 @@ CURRENT_VERSION = '0.0.0' end $package_version = CURRENT_VERSION PKG_FILES = FileList['[A-Z]*', -'lib/**/*.rb', -'doc/**/*' + 'lib/**/*.rb', + 'doc/**/*' ] desc 'Generate documentation for the acts as state machine plugin.' rd = Rake::RDocTask.new(:rdoc) do |rdoc| rdoc.rdoc_dir = 'html' @@ -42,21 +42,22 @@ else spec = Gem::Specification.new do |s| s.name = 'aasm' s.version = $package_version 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.description = <<EOF +AASM is a continuation of the acts as state machine rails plugin, built for plain Ruby objects. +EOF + s.files = PKG_FILES.to_a s.require_path = 'lib' s.has_rdoc = true s.extra_rdoc_files = rd.rdoc_files.reject {|fn| fn =~ /\.rb$/}.to_a s.rdoc_options = rd.options - s.author = 'Scott Barron' - s.email = 'scott@elitists.net' - s.homepage = 'http://rubyi.st/aasm' + s.authors = ['Scott Barron', 'Scott Petersen', 'Travis Tilley'] + s.email = 'ttilley@gmail.com' + s.homepage = 'http://github.com/ttilley/aasm' end package_task = Rake::GemPackageTask.new(spec) do |pkg| pkg.need_zip = true pkg.need_tar = true