Sha256: 204556f0ea0d0a7e25f2e2d1f48b169205bfab6350c15941a6e66ef1ad0d089e
Contents?: true
Size: 1.69 KB
Versions: 1
Compression:
Stored size: 1.69 KB
Contents
# -*- encoding: utf-8 -*- require File.expand_path(File.join('..', 'lib', 'acts_as_favoritor', 'version'), __FILE__) Gem::Specification.new do |gem| gem.name = 'acts_as_favoritor' gem.version = ActsAsFavoritor::VERSION gem.platform = Gem::Platform::RUBY gem.summary = 'A Rubygem to add Favorite, Follow, Vote, etc. functionality to ActiveRecord models' gem.description = 'acts_as_favoritor is a Rubygem to allow any ActiveRecord model to associate any other model including the option for multiple relationships per association with scopes. You are able to differentiate followers, favorites, watchers, votes and whatever else you can imagine through a single relationship. This is accomplished by a double polymorphic relationship on the Favorite model. There is also built in support for blocking/un-blocking favorite records.' gem.authors = 'Slooob' gem.email = 'developer@slooob.com' gem.homepage = 'https://developer.slooob.com/open-source' gem.license = 'MIT' gem.files = `git ls-files`.split("\n") gem.require_paths = ['lib'] gem.post_install_message = IO.read('INSTALL.md') gem.required_ruby_version = '>= 2.3' gem.add_dependency 'activerecord', '>= 4.0' gem.add_development_dependency 'sqlite3', '~> 1.3' gem.add_development_dependency 'shoulda_create', '~> 0.0' gem.add_development_dependency 'shoulda', '~> 3.5' gem.add_development_dependency 'factory_girl', '~> 4.8' gem.add_development_dependency 'rails', '>= 4.0' gem.add_development_dependency 'tzinfo-data', '~> 1.2017' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
acts_as_favoritor-1.3.2 | acts_as_favoritor.gemspec |