Compare commits

...

3 Commits

Author SHA1 Message Date
599e82a106 upversioned 2023-01-12 20:25:24 +01:00
6eea09d8eb upversioned mongoid 2023-01-12 20:21:09 +01:00
de414b0ee7 upversioned 2023-01-12 20:17:19 +01:00
3 changed files with 7 additions and 7 deletions

1
.gitignore vendored
View File

@ -15,3 +15,4 @@ spec/reports
test/tmp
test/version_tmp
tmp
.idea

View File

@ -1,5 +1,5 @@
module Mongoid
module Enum
VERSION = "0.4.0"
VERSION = "0.4.6"
end
end

View File

@ -6,11 +6,11 @@ require 'mongoid/enum/version'
Gem::Specification.new do |spec|
spec.name = "mongoid-enum"
spec.version = Mongoid::Enum::VERSION
spec.authors = ["Nicholas Bruning"]
spec.email = ["nicholas@bruning.com.au"]
spec.description = %q{Heavily inspired by DDH's ActiveRecord::Enum, this little library is there to help you cut down the cruft in your models and make the world a happier place at the same time.}
spec.authors = ["Mike Sutton"]
spec.email = ["tech@wizewerx.com"]
spec.description = %q{Forked from https://github.com/thetron/mongoid-enum/commits?author=thetron.}
spec.summary = %q{Sweet enum sugar for your Mongoid documents}
spec.homepage = "https://github.com/thetron/mongoid-enum"
spec.homepage = "https://git.wizewerx.tech/foss/mongoid-enum"
spec.license = "MIT"
spec.files = `git ls-files`.split($/)
@ -18,8 +18,7 @@ Gem::Specification.new do |spec|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.add_runtime_dependency "mongoid", "~> 5.0"
spec.add_runtime_dependency "mongoid", "~> 8.0"
spec.add_development_dependency "bundler", "~> 1.3"
spec.add_development_dependency "rake"
spec.add_development_dependency "rspec", "~> 3.1"