forked from tcocca/acts_as_follower
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathacts_as_follower.gemspec
More file actions
27 lines (23 loc) · 1.4 KB
/
acts_as_follower.gemspec
File metadata and controls
27 lines (23 loc) · 1.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# -*- 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", "Don Sullivan"]
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.license = 'MIT'
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