Sha256: 1c78c119bbae34db4a51ad2e4137891f951e34d06f0f17bbf856d189aedc6aad

Contents?: true

Size: 1.35 KB

Versions: 1

Compression:

Stored size: 1.35 KB

Contents

# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "acts_as_follower/version"

Gem::Specification.new do |s|
  s.name        = "acts_as_follower"
  s.version     = ActsAsFollower::VERSION
  s.authors     = ["Tom Cocca"]
  s.email       = ["tom dot cocca at gmail dot com"]
  s.homepage    = "https://github.com/tcocca/acts_as_follower"
  s.summary     = %q{A Rubygem to add Follow functionality for ActiveRecord models}
  s.description = %q{acts_as_follower is a Rubygem to allow any model to follow any other model. This is accomplished through a double polymorphic relationship on the Follow model. There is also built in support for blocking/un-blocking follow records. Main uses would be for Users to follow other Users or for Users to follow Books, etc… (Basically, to develop the type of follow system that GitHub has)}

  s.rubyforge_project = "acts_as_follower"

  s.files         = `git ls-files`.split("\n")
  s.test_files    = `git ls-files -- {test,spec,features}/*`.split("\n")
  s.executables   = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
  s.require_paths = ["lib"]

  s.add_development_dependency "sqlite3"
  s.add_development_dependency "shoulda_create"
  s.add_development_dependency "shoulda", "3.5.0"
  s.add_development_dependency "factory_girl", "4.2.0"
  s.add_development_dependency "rails", "~> 4.0.0"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
acts_as_follower-0.2.0 acts_as_follower.gemspec