$:.push File.expand_path("../lib", __FILE__) require "mongoid/userstamps/version" Gem::Specification.new do |s| s.name = "mongoid-userstamps" s.version = Mongoid::Userstamps::VERSION s.authors = ["Geoffroy Planquart", "Thomas Boerger", "Johnny Shields", "Bharat Gupta", "Thomas Kuntz"] s.homepage = "https://github.com/CreaLettres/mongoid-userstamps" s.license = "MIT" s.summary = "Userstamps for Mongoid" s.description = "Userstamps for creator and updater fields using Mongoid" s.email = ["thomaskuntz67@gmail.com", "geoffroy@planquart.fr", "tboerger@tbpro.de"] s.files = `git ls-files`.split($/) s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) } s.test_files = s.files.grep(%r{^(test|spec|features)/}) s.require_paths = ["lib"] s.post_install_message = File.read("UPGRADING") if File.exist?("UPGRADING") s.add_dependency "mongoid", ">= 5.0.0", "<= 8.0" s.add_dependency "activesupport", ">= 4.2.0", "<= 7.1" end