# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'rooble/version' require 'date' Gem::Specification.new do |spec| spec.name = 'rooble' spec.version = Rooble::VERSION spec.authors = ["Gustavo Rubio"] spec.email = 'mail@gustavorub.io' 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 = 'https://bitbucket.org/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', '>= 6.1' spec.add_dependency 'activerecord', '>= 6.1' spec.add_development_dependency 'bundler', '>= 1.17' spec.add_development_dependency "rake", ">= 10.0" end