forked from bborn/communityengine
-
Notifications
You must be signed in to change notification settings - Fork 2
/
community_engine.gemspec
56 lines (50 loc) · 2.22 KB
/
community_engine.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
require 'community_engine/version'
Gem::Specification.new do |s|
s.name = "community_engine"
s.version = CommunityEngine::Version::STRING
s.summary = "CommunityEngine for Rails 3"
s.description = "CommunityEngine is a free, open-source social network platform for Ruby on Rails applications. Drop it into your new or existing application, and you’ll instantly have all the features of a basic community site."
s.homepage = "http://www.communityengine.org"
s.required_rubygems_version = Gem::Requirement.new("> 1.3.1") if s.respond_to? :required_rubygems_version=
s.authors = ["Bruno Bornsztein"]
s.date = "2011-11-18"
s.email = "[email protected]"
s.extra_rdoc_files = [
"LICENSE",
"README.markdown"
]
s.require_paths = ["lib"]
s.rubygems_version = "1.8.11"
s.files = `git ls-files`.split("\n") rescue ''
s.test_files = `git ls-files -- {test}/*`.split("\n")
s.add_dependency(%q<rails>, ["= 3.2.14"])
s.add_dependency(%q<rack>, [">= 1.4.1"])
s.add_dependency(%q<authlogic>, [">= 0"])
s.add_dependency(%q<bcrypt-ruby>, [">= 0"])
s.add_dependency(%q<configatron>, [">= 0"])
s.add_dependency(%q<hpricot>, [">= 0"])
s.add_dependency(%q<htmlentities>, [">= 0"])
s.add_dependency(%q<haml>, [">= 0"])
s.add_dependency(%q<sass-rails>, ["~> 3.2.3"])
s.add_dependency(%q<ri_cal>, [">= 0"])
s.add_dependency(%q<rakismet>, [">= 0"])
s.add_dependency(%q<aws-s3>, [">= 0"])
s.add_dependency(%q<kaminari>, [">= 0"])
s.add_dependency(%q<dynamic_form>, [">= 0"])
s.add_dependency(%q<friendly_id>, ["~> 3.3"])
s.add_dependency(%q<paperclip>, ["~> 2.4.3"])
s.add_dependency(%q<cocaine>, ["0.3.2"])
s.add_dependency(%q<acts_as_commentable>, ["= 3.0.1"])
s.add_dependency(%q<recaptcha>, [">= 0"])
s.add_dependency(%q<omniauth>, ["= 0.3.2"])
s.add_dependency(%q<prototype-rails>, [">= 0"])
s.add_dependency(%q<rails_autolink>, [">= 0"])
s.add_dependency(%q<meta_search>, ["= 1.1.3"])
s.add_dependency(%q<koala>, [">= 0"])
s.add_dependency(%q<tinymce-rails>, ["~> 3.5.4"])
s.add_dependency(%q<bborn-acts-as-taggable-on>, ['~> 2.2.1'])
s.add_dependency(%q<sanitize>, [">= 2.0.3"])
end