forked from norman/friendly_id
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfriendly_id.gemspec
28 lines (25 loc) · 1.29 KB
/
friendly_id.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
require File.expand_path("../lib/friendly_id/version", __FILE__)
Gem::Specification.new do |s|
s.authors = ["Norman Clarke", "Adrian Mugnolo", "Emilio Tagua"]
s.description = <<-EOM
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
human-friendly strings as if they were numeric ids for ActiveRecord models.
EOM
s.files = Dir["lib/**/*.rb", "lib/**/*.rake", "*.md", "MIT-LICENSE",
"Rakefile", "rails/init.rb", "generators/**/*.*", "test/**/*.*",
"extras/**/*.*", ".gemtest"]
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.1"
s.add_development_dependency "activerecord", "~> 3.0.0"
s.add_development_dependency "mocha", "~> 0.9"
s.add_development_dependency "sqlite3-ruby", "~> 1"
end