forked from mongoid/mongoid-slug
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmongoid_slug.gemspec
More file actions
25 lines (21 loc) · 909 Bytes
/
Copy pathmongoid_slug.gemspec
File metadata and controls
25 lines (21 loc) · 909 Bytes
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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "mongoid/slug/version"
Gem::Specification.new do |s|
s.name = "mongoid_slug"
s.version = Mongoid::Slug::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Paper Cavalier"]
s.email = ["code@papercavalier.com"]
s.homepage = "http://github.com/papercavalier/mongoid-slug"
s.summary = "Generates a URL slug"
s.description = "Mongoid Slug generates a URL slug or permalink based on one or more fields in a Mongoid model."
s.rubyforge_project = "mongoid_slug"
s.add_dependency("mongoid", "~> 2.0")
s.add_dependency("stringex", "~> 1.3")
s.add_development_dependency("rake", "~> 0.9")
s.add_development_dependency("rspec", "~> 2.6")
s.files = Dir.glob("lib/**/*") + %w(LICENSE README.md)
s.test_files = Dir.glob("spec/**/*")
s.require_paths = ["lib"]
end