-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsluggable_finder.gemspec
27 lines (22 loc) · 1.08 KB
/
sluggable_finder.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
# -*- encoding: utf-8 -*-
require File.expand_path("../lib/sluggable_finder/version", __FILE__)
Gem::Specification.new do |s|
s.name = "sluggable_finder"
s.version = SluggableFinder::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ['Ismael Celis']
s.email = ['[email protected]']
s.homepage = "https://github.com/ismasan/sluggable-finder"
s.description = %q{This plugin allows models to generate a unique "slug" (url-enabled name) from any regular attribute. Add friendly URLs to your models with one line.}
s.summary = %q{Easy friendly URLs for your ActiveRecord models}
s.required_rubygems_version = ">= 1.3.6"
s.rubyforge_project = "sluggable_finder"
s.add_development_dependency "bundler", ">= 1.0.0"
s.add_development_dependency "rspec"
s.add_development_dependency 'rake'
s.add_development_dependency 'sqlite3'
s.add_dependency 'activerecord', "<= 2.8.0"
s.files = `git ls-files`.split("\n")
s.executables = `git ls-files`.split("\n").map{|f| f =~ /^bin\/(.*)/ ? $1 : nil}.compact
s.require_path = 'lib'
end