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.3') # 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.4') # 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') # Simple navigation for menu s.add_runtime_dependency('simple-navigation') #Gem dependencies s.add_runtime_dependency('resque','~> 1.17.1') 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