-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsocial_stream-base.gemspec
70 lines (66 loc) · 2.61 KB
/
social_stream-base.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
require File.join(File.dirname(__FILE__), 'lib', 'social_stream', 'base', 'version')
Gem::Specification.new do |s|
s.name = "social_stream-base"
s.version = SocialStream::Base::VERSION.dup
s.summary = "Basic features for Social Stream, the core for building social network websites"
s.description = "Social Stream is a Ruby on Rails engine providing your application with social networking features and activity streams.\n\nThis gem packages the basic functionality, along with basic actors (user, group) and activity objects(post and comments)"
s.authors = [ "GING - DIT - UPM",
"CISE - ESPOL" ]
s.homepage = "http://social-stream.dit.upm.es/"
s.files = `git ls-files`.split("\n")
# Gem dependencies
#
# Activity and Relation hierarchies
s.add_runtime_dependency('ancestry', '~> 1.2.3')
# SQL foreign keys
s.add_runtime_dependency('foreigner', '~> 0.9.1')
# Authentication
s.add_runtime_dependency('devise', '~> 1.3.4')
# CRUD controllers
s.add_runtime_dependency('inherited_resources', '~> 1.2.2')
# Slug generation
s.add_runtime_dependency('stringex', '~> 1.2.0')
# Avatar attachments
s.add_runtime_dependency('avatars_for_rails', '~> 0.1.0')
# jQuery
s.add_runtime_dependency('jquery-rails', '~> 1.0.9')
# Authorization
s.add_runtime_dependency('cancan', '~> 1.6.4')
# Pagination
s.add_runtime_dependency('kaminari', '~> 0.12.4')
# OAuth client
s.add_runtime_dependency('omniauth','~> 0.2.6')
# OAuth provider
s.add_runtime_dependency('oauth-plugin','~> 0.4.0.pre1')
# Messages
s.add_runtime_dependency('mailboxer','~> 0.2.3')
# Avatar manipulation
s.add_runtime_dependency('rmagick','~> 2.13.1')
# Tagging
s.add_runtime_dependency('acts-as-taggable-on','~> 2.0.6')
# HTML Forms
s.add_runtime_dependency('formtastic','~> 1.2.3')
#Gem dependencies
s.add_runtime_dependency('resque','~> 1.17.1')
# Freeze Rails to 3.0.7 until Mailboxer bug is fixed
s.add_runtime_dependency('rails', '3.1.0.rc4')
# Development Gem dependencies
# Integration testing
s.add_development_dependency('capybara', '~> 0.3.9')
# Testing database
s.add_development_dependency('sqlite3-ruby')
# Debugging
if RUBY_VERSION < '1.9'
s.add_development_dependency('ruby-debug', '~> 0.10.3')
end
# Specs
s.add_development_dependency('rspec-rails', '~> 2.6.1')
# Fixtures
s.add_development_dependency('factory_girl', '~> 1.3.2')
# Population
s.add_development_dependency('forgery', '~> 0.3.6')
# Continous integration
s.add_development_dependency('ci_reporter', '~> 1.6.4')
# Scaffold generator
s.add_development_dependency('nifty-generators','~> 0.4.5')
end