1
0
mirror of https://github.com/danbee/slugtastic synced 2025-03-04 08:49:05 +00:00
slugtastic/slugtastic.gemspec
2012-08-18 09:33:10 +01:00

22 lines
861 B
Ruby

# -*- encoding: utf-8 -*-
require File.expand_path('../lib/slugtastic/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Dan Barber"]
gem.email = ["danbee@gmail.com"]
gem.description = %q{A simple slug string generator for ActiveRecord. Will populate a slug attribute from another attribute.}
gem.summary = %q{A simple slug string generator for ActiveRecord.}
gem.homepage = ""
gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "slugtastic"
gem.require_paths = ["lib"]
gem.version = Slugtastic::VERSION
gem.add_development_dependency "rake"
gem.add_development_dependency "rspec"
gem.add_development_dependency "supermodel"
end