Skip to content

Commit

Permalink
Merge pull request #64 from dxw/dependabot/bundler/standard-1.40.1
Browse files Browse the repository at this point in the history
Update standard requirement from ~> 0.1 to ~> 1.40
  • Loading branch information
jdudley1123 authored Nov 12, 2024
2 parents e7c53e1 + 510d08a commit 48bf94b
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 15 deletions.
40 changes: 27 additions & 13 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ GEM
csv
mini_mime (>= 1.0.0)
multi_xml (>= 0.5.2)
json (2.7.2)
language_server-protocol (3.17.0.3)
lint_roller (1.1.0)
method_source (1.1.0)
mini_mime (1.1.5)
multi_xml (0.7.1)
Expand Down Expand Up @@ -53,24 +56,35 @@ GEM
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.13.0)
rspec-support (3.13.1)
rubocop (1.10.0)
rubocop (1.65.1)
json (~> 2.3)
language_server-protocol (>= 3.17.0)
parallel (~> 1.10)
parser (>= 3.0.0.0)
parser (>= 3.3.0.2)
rainbow (>= 2.2.2, < 4.0)
regexp_parser (>= 1.8, < 3.0)
rexml
rubocop-ast (>= 1.2.0, < 2.0)
regexp_parser (>= 2.4, < 3.0)
rexml (>= 3.2.5, < 4.0)
rubocop-ast (>= 1.31.1, < 2.0)
ruby-progressbar (~> 1.7)
unicode-display_width (>= 1.4.0, < 3.0)
unicode-display_width (>= 2.4.0, < 3.0)
rubocop-ast (1.32.3)
parser (>= 3.3.1.0)
rubocop-performance (1.9.2)
rubocop (>= 0.90.0, < 2.0)
rubocop-ast (>= 0.4.0)
rubocop-performance (1.21.1)
rubocop (>= 1.48.1, < 2.0)
rubocop-ast (>= 1.31.1, < 2.0)
ruby-progressbar (1.13.0)
standard (0.13.0)
rubocop (= 1.10.0)
rubocop-performance (= 1.9.2)
standard (1.40.1)
language_server-protocol (~> 3.17.0.2)
lint_roller (~> 1.0)
rubocop (~> 1.65.0)
standard-custom (~> 1.0.0)
standard-performance (~> 1.4)
standard-custom (1.0.2)
lint_roller (~> 1.0)
rubocop (~> 1.50)
standard-performance (1.4.0)
lint_roller (~> 1.1)
rubocop-performance (~> 1.21.0)
unicode-display_width (2.6.0)
webmock (3.24.0)
addressable (>= 2.8.0)
Expand All @@ -87,7 +101,7 @@ DEPENDENCIES
pry (~> 0.14.0)
rake (~> 13.2.1)
rspec (~> 3.0)
standard (~> 0.1)
standard (~> 1.40)
webmock (~> 3.5)

BUNDLED WITH
Expand Down
2 changes: 1 addition & 1 deletion lib/opsgenie/schedule.rb
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def timeline(date: Date.today, interval: nil, interval_unit: nil)
TimelineRotation.new(
id: rotation["id"],
name: rotation["name"],
periods: (rotation["periods"] || [])
periods: rotation["periods"] || []
)
end
end
Expand Down
2 changes: 1 addition & 1 deletion opsgenie-schedule.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Gem::Specification.new do |spec|
spec.add_development_dependency "pry", "~> 0.14.0"
spec.add_development_dependency "rake", "~> 13.2.1"
spec.add_development_dependency "rspec", "~> 3.0"
spec.add_development_dependency "standard", "~> 0.1"
spec.add_development_dependency "standard", "~> 1.40"
spec.add_development_dependency "webmock", "~> 3.5"
spec.add_development_dependency "dotenv", "~> 3.1"

Expand Down

0 comments on commit 48bf94b

Please sign in to comment.