Rakefile in preferences-0.1.1 vs Rakefile in preferences-0.1.2
- old
+ new
@@ -2,11 +2,11 @@
require 'rake/rdoctask'
require 'rake/gempackagetask'
require 'rake/contrib/sshpublisher'
PKG_NAME = 'preferences'
-PKG_VERSION = '0.1.1'
+PKG_VERSION = '0.1.2'
PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}"
RUBY_FORGE_PROJECT = 'pluginaweek'
desc 'Default: run unit tests.'
task :default => :test
@@ -32,10 +32,10 @@
s.name = PKG_NAME
s.version = PKG_VERSION
s.platform = Gem::Platform::RUBY
s.summary = 'Adds support for easily creating custom preferences for models'
- s.files = FileList['{app,lib,test}/**/*'].to_a + %w(CHANGELOG init.rb MIT-LICENSE Rakefile README)
+ s.files = FileList['{app,lib,test}/**/*'].to_a - FileList['test/app_root/log/*'].to_a + %w(CHANGELOG init.rb MIT-LICENSE Rakefile README)
s.require_path = 'lib'
s.autorequire = 'preferences'
s.has_rdoc = true
s.test_files = Dir['test/**/*_test.rb']