upversioned

This commit is contained in:
Mike Sutton 2023-01-12 20:17:19 +01:00
parent b57fb616cb
commit de414b0ee7
3 changed files with 6 additions and 6 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.5"
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($/)
@ -19,7 +19,6 @@ Gem::Specification.new do |spec|
spec.require_paths = ["lib"]
spec.add_runtime_dependency "mongoid", "~> 5.0"
spec.add_development_dependency "bundler", "~> 1.3"
spec.add_development_dependency "rake"
spec.add_development_dependency "rspec", "~> 3.1"