Rakefile in state_machine-0.3.0 vs Rakefile in state_machine-0.3.1
- old
+ new
@@ -3,14 +3,14 @@
require 'rake/gempackagetask'
require 'rake/contrib/sshpublisher'
spec = Gem::Specification.new do |s|
s.name = 'state_machine'
- s.version = '0.3.0'
+ s.version = '0.3.1'
s.platform = Gem::Platform::RUBY
s.summary = 'Adds support for creating state machines for attributes within a model'
- s.files = FileList['{lib,test}/**/*'].to_a - FileList['test/app_root/log/*'].to_a + %w(CHANGELOG.rdoc init.rb LICENSE Rakefile README.rdoc)
+ s.files = FileList['{lib,test}/**/*'] + %w(CHANGELOG.rdoc init.rb LICENSE Rakefile README.rdoc) - FileList['test/app_root/{log,log/*,script,script/*}']
s.require_path = 'lib'
s.has_rdoc = true
s.test_files = Dir['test/**/*_test.rb']
s.author = 'Aaron Pfeifer'