friendly_slug.gemspec in friendly_slug-0.1.2 vs friendly_slug.gemspec in friendly_slug-0.1.3

- old
+ new

@@ -7,11 +7,11 @@ spec.version = FriendlySlug::VERSION spec.authors = ["Sam Holst"] spec.email = ["sawohol@gmail.com"] spec.summary = %q{Generate a model specific SEO URL friendly slug.} - spec.description = %q{A simple SEO URL friendly slug model generator.} + spec.description = %q{A simple SEO URL friendly slug model generator. Friendly Slug is meant to dynamically create SEO friendly URL links. It is extremely lightweight and non resource intensive. Friendly Slug ties directly into the Rails URL Helpers so you dont have to change anything. There is no need to create a Rails Migration as this gem does not add anything to your current database. You must have Active Model in your code base for this to work.} spec.homepage = "https://github.com/samholst/friendly_slug" spec.license = "MIT" spec.files = `git ls-files -z`.split("\x0").reject do |f| f.match(%r{^(test|spec|features)/}) @@ -21,7 +21,7 @@ spec.require_paths = ["lib"] spec.add_development_dependency "bundler", "~> 1.16" spec.add_development_dependency "rake", "~> 10.0" spec.add_development_dependency "rspec", "~> 3.0" - spec.add_development_dependency "active_model", "~> 3.0" + spec.add_development_dependency "activemodel", "~> 3.0" end