forked from entropillc/entropi_social
-
Notifications
You must be signed in to change notification settings - Fork 0
/
entropi_social.gemspec
25 lines (21 loc) · 1.05 KB
/
entropi_social.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
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "entropi_social/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "entropi_social"
s.version = EntropiSocial::VERSION
s.authors = ["Nicholas W. Watson"]
s.email = ["[email protected]"]
s.homepage = "http://github/entropillc/entropi_social"
s.summary = "Gem containing authentication and common social features such as Friends, Groups, etc."
s.description = "Entropi Social is a gem created to enable the quick creation of social features in a Rails 3.1.1 application including Authentication, Authoriziation, Groups, Friends, etc."
s.files = Dir["{app,config,db,lib}/**/*"] + ["MIT-LICENSE", "Rakefile", "README.rdoc"]
s.test_files = Dir["test/**/*"]
s.add_dependency 'rails', '~> 3.2.0'
s.add_dependency 'devise', '1.4.9'
s.add_dependency "devise_invitable", "~> 0.6.0"
s.add_dependency "carrierwave"
s.add_dependency "squeel", "~> 0.9.5"
s.add_development_dependency "sqlite3"
end