From 59debf6c3170319993aff884d361d95337d518fd Mon Sep 17 00:00:00 2001 From: takiuchi Date: Fri, 23 Jan 2009 01:32:35 +0900 Subject: [PATCH] Removed log file. --- .gitignore | 2 +- dm-pagination.gemspec | 4 ++-- spec/spec_helper.rb | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 5e80cc5..ca2c6e9 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,2 @@ -spec/*.log pkg +log diff --git a/dm-pagination.gemspec b/dm-pagination.gemspec index 4464025..2ae7ab2 100644 --- a/dm-pagination.gemspec +++ b/dm-pagination.gemspec @@ -6,11 +6,11 @@ Gem::Specification.new do |s| s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.authors = ["Genki Takiuchi"] - s.date = %q{2009-01-17} + s.date = %q{2009-01-23} s.description = %q{Merb plugin that provides pagination for DataMapper} s.email = %q{genki@s21g.com} s.extra_rdoc_files = ["README", "LICENSE", "TODO"] - s.files = ["LICENSE", "README", "Rakefile", "TODO", "lib/dm-pagination", "lib/dm-pagination/merbtasks.rb", "lib/dm-pagination/paginatable.rb", "lib/dm-pagination/pagination.rb", "lib/dm-pagination/pagination_builder.rb", "lib/dm-pagination.rb", "spec/dm-pagination_spec.rb", "spec/fixture", "spec/fixture/app", "spec/fixture/app/controllers", "spec/fixture/app/controllers/pagination_builder.rb", "spec/fixture/app/models", "spec/fixture/app/models/post.rb", "spec/fixture/app/views", "spec/fixture/app/views/layout", "spec/fixture/app/views/layout/application.html.erb", "spec/fixture/app/views/pagination_builder", "spec/fixture/app/views/pagination_builder/simple.html.erb", "spec/fixture/app/views/pagination_builder/variant.html.erb", "spec/fixture/config", "spec/fixture/config/router.rb", "spec/merb_test.log", "spec/spec_helper.rb"] + s.files = ["LICENSE", "README", "Rakefile", "TODO", "lib/dm-pagination", "lib/dm-pagination/merbtasks.rb", "lib/dm-pagination/paginatable.rb", "lib/dm-pagination/pagination.rb", "lib/dm-pagination/pagination_builder.rb", "lib/dm-pagination.rb", "spec/dm-pagination_spec.rb", "spec/fixture", "spec/fixture/app", "spec/fixture/app/controllers", "spec/fixture/app/controllers/pagination_builder.rb", "spec/fixture/app/models", "spec/fixture/app/models/post.rb", "spec/fixture/app/views", "spec/fixture/app/views/layout", "spec/fixture/app/views/layout/application.html.erb", "spec/fixture/app/views/pagination_builder", "spec/fixture/app/views/pagination_builder/simple.html.erb", "spec/fixture/app/views/pagination_builder/variant.html.erb", "spec/fixture/config", "spec/fixture/config/router.rb", "spec/spec_helper.rb"] s.has_rdoc = true s.homepage = %q{http://blog.s21g.com/genki} s.require_paths = ["lib"] diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index 20a79e9..500526a 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -14,7 +14,7 @@ :environment => 'test', :adapter => 'runner', :merb_root => File.dirname(__FILE__) / 'fixture', - :log_file => File.dirname(__FILE__) / "merb_test.log" + :log_file => File.dirname(__FILE__) / '..' / 'log' / "merb_test.log" } options = default_options.merge($START_OPTIONS || {}) DataMapper::Model.append_extensions DmPagination::Paginatable