Sha256: 3fc73085022df281f121061cfcfd0258aa281356fa99413c12fb793e0f68dc0c
Contents?: true
Size: 1.38 KB
Versions: 3
Compression:
Stored size: 1.38 KB
Contents
# encoding: UTF-8 require File.join(File.dirname(__FILE__), 'lib', 'social_stream', 'documents', 'version') Gem::Specification.new do |s| s.name = "social_stream-documents" s.version = SocialStream::Documents::VERSION.dup s.authors = ["Víctor Sánchez Belmar", "GING - DIT - UPM"] s.summary = "File capabilities 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 allow you upload almost any kind of file as new social stream activity." s.email = "social-stream@dit.upm.es" s.homepage = "http://github.com/ging/social_stream-documents" s.files = `git ls-files`.split("\n") # Gem dependencies s.add_runtime_dependency('social_stream-base', '~> 0.24.0') s.add_runtime_dependency('paperclip','~> 3.3.0') s.add_runtime_dependency('paperclip-ffmpeg', '~> 0.9.0') s.add_runtime_dependency('delayed_paperclip','>= 2.4.5.2') # Development Gem dependencies s.add_development_dependency('sqlite3-ruby') if RUBY_VERSION < '1.9' s.add_development_dependency('ruby-debug', '~> 0.10.3') end s.add_development_dependency('rspec-rails', '~> 2.6.0') s.add_development_dependency('factory_girl', '~> 1.3.2') s.add_development_dependency('forgery', '~> 0.4.2') s.add_development_dependency('capybara', '~> 0.3.9') end
Version data entries
3 entries across 3 versions & 2 rubygems