-
Notifications
You must be signed in to change notification settings - Fork 2
/
mongoid-slugify.gemspec
26 lines (21 loc) · 1019 Bytes
/
mongoid-slugify.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/mongoid/slugify/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Pavel Forkert"]
gem.email = ["[email protected]"]
gem.description = "Provides a simple way to add slug generation to a Mongoid model"
gem.summary = "Managing slugs in Mongoid models"
gem.homepage = ""
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.name = "mongoid-slugify"
gem.require_paths = ["lib"]
gem.version = Mongoid::Slugify::VERSION
gem.add_runtime_dependency 'activesupport', '>= 3.0', '< 5.0'
gem.add_runtime_dependency 'mongoid', '>= 2.0', '< 6.0'
gem.add_development_dependency 'rake'
gem.add_development_dependency 'rspec'
gem.add_development_dependency 'database_cleaner'
gem.add_development_dependency 'appraisal'
end