new gem spec, exclude test_app files and remove zentest/autotest from Gemfile
This commit is contained in:
parent
f0d1288b2d
commit
2c4e81bc53
2
Gemfile
2
Gemfile
|
@ -8,8 +8,6 @@ group :development do
|
||||||
end
|
end
|
||||||
|
|
||||||
group :test do
|
group :test do
|
||||||
gem 'ZenTest'
|
|
||||||
gem 'autotest'
|
|
||||||
gem 'systemu'
|
gem 'systemu'
|
||||||
gem "rspec"
|
gem "rspec"
|
||||||
gem "rspec-rails"
|
gem "rspec-rails"
|
||||||
|
|
2
Rakefile
2
Rakefile
|
@ -20,7 +20,7 @@ Jeweler::Tasks.new do |gem|
|
||||||
gem.description = %Q{Log impressions from controller actions or from a model}
|
gem.description = %Q{Log impressions from controller actions or from a model}
|
||||||
gem.email = "john.mcaliley@gmail.com"
|
gem.email = "john.mcaliley@gmail.com"
|
||||||
gem.authors = ["cowboycoded"]
|
gem.authors = ["cowboycoded"]
|
||||||
gem.files.exclude "test_app"
|
gem.files.exclude "test_app/**/*", "test_app/**/.*"
|
||||||
end
|
end
|
||||||
Jeweler::RubygemsDotOrgTasks.new
|
Jeweler::RubygemsDotOrgTasks.new
|
||||||
|
|
||||||
|
|
|
@ -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.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
||||||
s.authors = ["cowboycoded"]
|
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.description = %q{Log impressions from controller actions or from a model}
|
||||||
s.email = %q{john.mcaliley@gmail.com}
|
s.email = %q{john.mcaliley@gmail.com}
|
||||||
s.extra_rdoc_files = [
|
s.extra_rdoc_files = [
|
||||||
|
@ -39,7 +39,7 @@ Gem::Specification.new do |s|
|
||||||
"upgrade_migrations/version_0_3_0.rb",
|
"upgrade_migrations/version_0_3_0.rb",
|
||||||
"upgrade_migrations/version_0_4_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.licenses = ["MIT"]
|
||||||
s.require_paths = ["lib"]
|
s.require_paths = ["lib"]
|
||||||
s.rubygems_version = %q{1.3.7}
|
s.rubygems_version = %q{1.3.7}
|
||||||
|
|
|
@ -6,8 +6,6 @@ gem 'impressionist', :path=>"#{File.dirname(__FILE__)}/../"
|
||||||
#gem "pg"
|
#gem "pg"
|
||||||
|
|
||||||
group :development do
|
group :development do
|
||||||
gem 'ZenTest'
|
|
||||||
gem 'autotest'
|
|
||||||
gem 'systemu'
|
gem 'systemu'
|
||||||
gem "rspec"
|
gem "rspec"
|
||||||
gem "rspec-rails"
|
gem "rspec-rails"
|
||||||
|
|
Loading…
Reference in New Issue