diff --git a/Gemfile b/Gemfile index e9b9bb4..8e3eb82 100644 --- a/Gemfile +++ b/Gemfile @@ -8,8 +8,6 @@ group :development do end group :test do - gem 'ZenTest' - gem 'autotest' gem 'systemu' gem "rspec" gem "rspec-rails" diff --git a/Rakefile b/Rakefile index 1034873..8ad1acf 100644 --- a/Rakefile +++ b/Rakefile @@ -20,7 +20,7 @@ Jeweler::Tasks.new do |gem| gem.description = %Q{Log impressions from controller actions or from a model} gem.email = "john.mcaliley@gmail.com" gem.authors = ["cowboycoded"] - gem.files.exclude "test_app" + gem.files.exclude "test_app/**/*", "test_app/**/.*" end Jeweler::RubygemsDotOrgTasks.new diff --git a/impressionist.gemspec b/impressionist.gemspec index a19329d..aa08377 100644 --- a/impressionist.gemspec +++ b/impressionist.gemspec @@ -9,7 +9,7 @@ Gem::Specification.new do |s| s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.authors = ["cowboycoded"] - s.date = %q{2011-06-03} + s.date = %q{2011-11-30} s.description = %q{Log impressions from controller actions or from a model} s.email = %q{john.mcaliley@gmail.com} s.extra_rdoc_files = [ @@ -39,7 +39,7 @@ Gem::Specification.new do |s| "upgrade_migrations/version_0_3_0.rb", "upgrade_migrations/version_0_4_0.rb" ] - s.homepage = %q{https://github.com/charlotte-ruby/impressionist} + s.homepage = %q{http://github.com/cowboycoded/impressionist} s.licenses = ["MIT"] s.require_paths = ["lib"] s.rubygems_version = %q{1.3.7} diff --git a/test_app/Gemfile b/test_app/Gemfile index 9bdd5db..4267577 100644 --- a/test_app/Gemfile +++ b/test_app/Gemfile @@ -6,8 +6,6 @@ gem 'impressionist', :path=>"#{File.dirname(__FILE__)}/../" #gem "pg" group :development do - gem 'ZenTest' - gem 'autotest' gem 'systemu' gem "rspec" gem "rspec-rails"