forked from has-friendship/has_friendship
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhas_friendship.gemspec
31 lines (25 loc) · 1.07 KB
/
has_friendship.gemspec
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
28
29
30
31
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "has_friendship/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "has_friendship"
s.version = HasFriendship::VERSION
s.authors = ["Sung Won Cho"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/sungwoncho/has_friendship"
s.summary = "Add social network friendship features to your Active Record models."
s.license = "MIT"
s.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.rdoc"]
s.add_dependency "rails", ['>= 4.0.0', '< 5.2.0']
s.add_dependency "stateful_enum"
s.add_development_dependency "sqlite3"
s.add_development_dependency "rspec-rails"
s.add_development_dependency "guard-rspec"
s.add_development_dependency "shoulda"
s.add_development_dependency "generator_spec"
s.add_development_dependency "coveralls"
s.add_development_dependency "byebug"
# fix time zone error when opening server
s.add_development_dependency 'tzinfo-data'
end