Sha256: 2883be3d4669f56997e272eccb698edc4f291d44a83c96df252a036ee7e19be2
Contents?: true
Size: 1.24 KB
Versions: 2
Compression:
Stored size: 1.24 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'partisan/version' Gem::Specification.new do |spec| spec.name = 'partisan' spec.version = Partisan::VERSION spec.authors = ['Simon Prévost', 'Rémi Prévost'] spec.email = ['sprevost@mirego.com', 'Rémi Prévost'] spec.description = 'Partisan is a Ruby library that allows ActiveRecord records to be follower and followable, just like on popular social networks. It’s heavily inspired by acts_as_follower which is no longer maintained.' spec.summary = 'Partisan is a Ruby library that allows ActiveRecord records to be follower and followable' spec.homepage = 'https://github.com/mirego/partisan' spec.license = 'BSD 3-Clause' spec.files = `git ls-files`.split($/) spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.test_files = spec.files.grep(%r{^(spec)/}) spec.require_paths = ['lib'] spec.add_dependency 'activerecord', '>= 3.0.0' spec.add_development_dependency 'bundler', '~> 1.3' spec.add_development_dependency 'rake' spec.add_development_dependency 'rspec', '~> 3.1' spec.add_development_dependency 'sqlite3' end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
partisan-0.4.2 | partisan.gemspec |
partisan-0.4.1 | partisan.gemspec |