Sha256: 7f229d056d124ce9fb521d3bce9726b5e88fab913d60bf72da6c35721e5dd412
Contents?: true
Size: 1.17 KB
Versions: 9
Compression:
Stored size: 1.17 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'rooble/version' Gem::Specification.new do |spec| spec.name = 'rooble' spec.version = Rooble::VERSION spec.authors = ["Gustavo Rubio"] spec.email = 'gus@ahivamos.net' spec.summary = "Allows to paginate and search through ActiveRecord associations in rails." spec.description = "Yet another unnecessary and selfishly-created pagination and search gem for rails. This gem will add methods to your ActiveRecord associations and classes so you can search and paginate." spec.homepage = 'http://github.com/gusrub/rooble' spec.license = 'MIT' spec.date = Date.today.to_s spec.require_paths = ["lib"] spec.files = `git ls-files`.split("\n") spec.platform = Gem::Platform::RUBY spec.post_install_message = "Here, have a cookie for installing this wonderful gem: 🍪" spec.add_dependency 'activesupport', '~> 4.0', '>= 4.0.0' spec.add_dependency 'activerecord', '~> 4.0', '>= 4.0.0' spec.add_development_dependency 'bundler', '~> 1.0', '>= 1.0.0' spec.add_development_dependency "rake", "~> 10.0" end
Version data entries
9 entries across 9 versions & 1 rubygems