Rakefile in locale_rails-2.0.3 vs Rakefile in locale_rails-2.0.4

- old
+ new

@@ -14,13 +14,13 @@ PKG_NAME = "locale_rails" PKG_VERSION = LocaleRails::VERSION # Run the unit tests task :test do - Dir.glob("test/test_*.rb").each do |v| - ruby "-Ilib #{v}" - end + cd "test" + sh "rake test" + cd ".." end Rake::RDocTask.new { |rdoc| begin allison = `allison --path`.chop @@ -45,10 +45,10 @@ s.homepage = 'http://locale.rubyforge.org/' s.rubyforge_project = "locale" s.files = FileList['**/*'].to_a.select{|v| v !~ /pkg|CVS|git/} s.require_path = 'lib' s.bindir = 'bin' - s.add_dependency('locale', '>= 2.0.3') + s.add_dependency('locale', '>= 2.0.4') s.has_rdoc = true s.description = <<-EOF Ruby-Locale for Ruby on Rails is the pure ruby library which provides basic functions for localization. EOF end