Skip to content

Commit

Permalink
Cleaned up gemspec.
Browse files Browse the repository at this point in the history
  • Loading branch information
norman committed Aug 30, 2010
1 parent 6b7dd2e commit 8626830
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 15 deletions.
File renamed without changes.
26 changes: 11 additions & 15 deletions friendly_id.gemspec
@@ -1,27 +1,23 @@
require File.expand_path("../lib/friendly_id/version", __FILE__) require File.expand_path("../lib/friendly_id/version", __FILE__)


spec = Gem::Specification.new do |s| Gem::Specification.new do |s|
s.name = "friendly_id"
s.rubyforge_project = "friendly-id"
s.version = FriendlyId::Version::STRING
s.authors = ["Norman Clarke", "Adrian Mugnolo", "Emilio Tagua"] s.authors = ["Norman Clarke", "Adrian Mugnolo", "Emilio Tagua"]
s.email = ["norman@njclarke.com", "adrian@mugnolo.com", "miloops@gmail.com"]
s.homepage = "http://norman.github.com/friendly_id"
s.summary = "A comprehensive slugging and pretty-URL plugin."
s.description = <<-EOM s.description = <<-EOM
FriendlyId is the "Swiss Army bulldozer" of slugging and permalink plugins FriendlyId is the "Swiss Army bulldozer" of slugging and permalink plugins
for Ruby on Rails. It allows you to create pretty URL’s and work with for Ruby on Rails. It allows you to create pretty URL’s and work with
human-friendly strings as if they were numeric ids for ActiveRecord models. human-friendly strings as if they were numeric ids for ActiveRecord models.
EOM EOM

s.email = ["norman@njclarke.com", "adrian@mugnolo.com", "miloops@gmail.com"]
s.platform = Gem::Platform::RUBY s.files = Dir["lib/**/*.rb", "lib/**/*.rake", "*.md", "MIT-LICENSE",

s.has_rdoc = true
s.test_files = Dir.glob "test/**/*_test.rb"
s.files = Dir["lib/**/*.rb", "lib/**/*.rake", "*.md", "LICENSE",
"Rakefile", "rails/init.rb", "generators/**/*.*", "test/**/*.*", "Rakefile", "rails/init.rb", "generators/**/*.*", "test/**/*.*",
"extras/**/*.*" ] "extras/**/*.*" ]

s.has_rdoc = true
s.homepage = "http://norman.github.com/friendly_id"
s.name = "friendly_id"
s.platform = Gem::Platform::RUBY
s.rubyforge_project = "friendly-id"
s.summary = "A comprehensive slugging and pretty-URL plugin."
s.test_files = Dir.glob "test/**/*_test.rb"
s.version = FriendlyId::Version::STRING
s.add_dependency "babosa", "~> 0.2.0" s.add_dependency "babosa", "~> 0.2.0"

end end

0 comments on commit 8626830

Please sign in to comment.