Sha256: 64020ac13a5fbdcdbd13acd0a806c2aa8c0c31ac9f1bae0e2c32ec4f16616bb1

Contents?: true

Size: 1.72 KB

Versions: 1

Compression:

Stored size: 1.72 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 as well as caching.'
    gem.authors               = 'Jonas Hübotter'
    gem.email                 = 'jonas.huebotter@gmail.com'
    gem.homepage              = 'https://github.com/jonhue/acts_as_favoritor'
    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', '>= 5.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', '>= 5.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-2.0.0 acts_as_favoritor.gemspec