Skip to content

Commit

Permalink
Merge pull request #5 from dazzl-tv/feature/update-deps
Browse files Browse the repository at this point in the history
Feature/update deps
  • Loading branch information
Dev-Crea authored Sep 23, 2021
2 parents d87e5e2 + 934e90c commit a31fedf
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 24 deletions.
40 changes: 20 additions & 20 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,56 +1,55 @@
PATH
remote: .
specs:
validates_timeliness-mongoid (5.0.0)
validates_timeliness-mongoid (5.0.1)
mongoid (~> 7.2, >= 7.2.2)
validates_timeliness (~> 5.0)

GEM
remote: https://rubygems.org/
specs:
activemodel (6.1.3.1)
activesupport (= 6.1.3.1)
activesupport (6.1.3.1)
activemodel (6.1.4.1)
activesupport (= 6.1.4.1)
activesupport (6.1.4.1)
concurrent-ruby (~> 1.0, >= 1.0.2)
i18n (>= 1.6, < 2)
minitest (>= 5.1)
tzinfo (~> 2.0)
zeitwerk (~> 2.3)
ast (2.4.2)
bson (4.12.0)
bson (4.12.1)
byebug (11.1.3)
coderay (1.1.3)
concurrent-ruby (1.1.8)
concurrent-ruby (1.1.9)
diff-lcs (1.4.4)
docile (1.3.5)
faker (2.17.0)
docile (1.4.0)
faker (2.19.0)
i18n (>= 1.6, < 2)
i18n (1.8.10)
concurrent-ruby (~> 1.0)
kwalify (0.7.2)
method_source (1.0.0)
minitest (5.14.4)
mongo (2.14.0)
mongo (2.15.1)
bson (>= 4.8.2, < 5.0.0)
mongoid (7.2.2)
mongoid (7.3.3)
activemodel (>= 5.1, < 6.2)
mongo (>= 2.10.5, < 3.0.0)
parallel (1.20.1)
parser (3.0.1.1)
ruby2_keywords (~> 0.0.5)
parallel (1.21.0)
parser (3.0.2.0)
ast (~> 2.4.1)
pry (0.13.1)
coderay (~> 1.1)
method_source (~> 1.0)
pry-byebug (3.9.0)
byebug (~> 11.0)
pry (~> 0.13.0)
psych (3.3.1)
rainbow (3.0.0)
rake (13.0.3)
reek (6.0.4)
rake (13.0.6)
reek (6.0.6)
kwalify (~> 0.7.0)
parser (~> 3.0.0)
psych (~> 3.1)
rainbow (>= 2.0, < 4.0)
regexp_parser (2.1.1)
rexml (3.2.5)
Expand All @@ -76,18 +75,19 @@ GEM
rubocop-ast (>= 1.2.0, < 2.0)
ruby-progressbar (~> 1.7)
unicode-display_width (>= 1.4.0, < 3.0)
rubocop-ast (1.5.0)
rubocop-ast (1.11.0)
parser (>= 3.0.1.1)
rubocop-faker (1.1.0)
faker (>= 2.12.0)
rubocop (>= 0.82.0)
rubocop-performance (1.11.2)
rubocop-performance (1.11.5)
rubocop (>= 1.7.0, < 2.0)
rubocop-ast (>= 0.4.0)
rubocop-rspec (2.3.0)
rubocop-rspec (2.4.0)
rubocop (~> 1.0)
rubocop-ast (>= 1.1.0)
ruby-progressbar (1.11.0)
ruby2_keywords (0.0.5)
simplecov (0.21.2)
docile (~> 1.1)
simplecov-html (~> 0.11)
Expand All @@ -97,7 +97,7 @@ GEM
timeliness (0.4.4)
tzinfo (2.0.4)
concurrent-ruby (~> 1.0)
unicode-display_width (2.0.0)
unicode-display_width (2.1.0)
validates_timeliness (5.0.0)
timeliness (>= 0.3.10, < 1)
zeitwerk (2.4.2)
Expand Down
2 changes: 1 addition & 1 deletion lib/validates_timeliness/mongoid/info.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

module ValidatesTimeliness
module Mongoid
VERSION = '5.0.0'
VERSION = '5.0.1'

# Name to gem
GEM_NAME = 'validates_timeliness-mongoid'
Expand Down
8 changes: 5 additions & 3 deletions validates_timeliness-mongoid.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,12 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'validates_timeliness/mongoid/info'

Gem::Specification.new do |spec|
spec.version = if ENV['GITHUB_REF'].eql?('refs/heads/develop')
"#{ValidatesTimeliness::Mongoid::VERSION}.pre.#{ENV['GITHUB_RUN_ID']}"
version = ValidatesTimeliness::Mongoid::VERSION
spec.version = if ENV.key?('GITHUB_RUN_ID') &&
!ENV['GITHUB_REF'].eql?('refs/heads/master')
"#{version}.pre.#{ENV['GITHUB_RUN_ID']}"
else
ValidatesTimeliness::Mongoid::VERSION
version
end

spec.name = ValidatesTimeliness::Mongoid::GEM_NAME
Expand Down

0 comments on commit a31fedf

Please sign in to comment.