rakismet.gemspec in rakismet-1.1.0 vs rakismet.gemspec in rakismet-1.1.1
- old
+ new
@@ -1,50 +1,24 @@
-# Generated by jeweler
-# DO NOT EDIT THIS FILE DIRECTLY
-# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
# -*- encoding: utf-8 -*-
+$:.push File.expand_path("../lib", __FILE__)
+require "rakismet/version"
Gem::Specification.new do |s|
- s.name = %q{rakismet}
- s.version = "1.1.0"
-
- s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
+ s.name = "rakismet"
+ s.version = Rakismet::VERSION
+ s.platform = Gem::Platform::RUBY
s.authors = ["Josh French"]
- s.date = %q{2011-07-05}
- s.description = %q{Rakismet is the easiest way to integrate Akismet or TypePad's AntiSpam into your Rails app.}
- s.email = %q{josh@digitalpulp.com}
- s.extra_rdoc_files = [
- "README.md"
- ]
- s.files = [
- "CHANGELOG",
- "MIT-LICENSE",
- "README.md",
- "Rakefile",
- "VERSION.yml",
- "lib/rakismet.rb",
- "lib/rakismet/middleware.rb",
- "lib/rakismet/model.rb",
- "lib/rakismet/railtie.rb",
- "rakismet.gemspec",
- "spec/.rspec",
- "spec/rakismet_middleware_spec.rb",
- "spec/rakismet_model_spec.rb",
- "spec/rakismet_spec.rb",
- "spec/spec_helper.rb"
- ]
- s.homepage = %q{http://github.com/joshfrench/rakismet}
- s.require_paths = ["lib"]
- s.rubyforge_project = %q{rakismet}
- s.rubygems_version = %q{1.6.2}
- s.summary = %q{Akismet and TypePad AntiSpam integration for Rails.}
+ s.email = "josh@vitamin-j.com"
+ s.homepage = "http://github.com/joshfrench/rakismet"
+ s.summary = "Akismet and TypePad AntiSpam integration for Rails."
+ s.description = "Rakismet is the easiest way to integrate Akismet or TypePad's AntiSpam into your Rails app."
+ s.date = "2011-08-11"
- if s.respond_to? :specification_version then
- s.specification_version = 3
+ s.rubyforge_project = "rakismet"
- if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
- else
- end
- else
- end
+ s.files = `git ls-files`.split("\n")
+ s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
+ s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
+ s.require_paths = ["lib"]
+ s.extra_rdoc_files = ["README.md"]
end