Skip to content

Commit

Permalink
Carlos says cross my fingers
Browse files Browse the repository at this point in the history
  • Loading branch information
that-jill committed Oct 2, 2024
1 parent f93528e commit 00eec1d
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 8 deletions.
1 change: 1 addition & 0 deletions .github/workflows/consent.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,6 @@ jobs:
{ 'ruby': '3.3', 'gemfile': 'gemfiles/rails_6_0.gemfile'},
{ 'ruby': '3.2', 'gemfile': 'gemfiles/rails_6_1.gemfile'},
{ 'ruby': '3.3', 'gemfile': 'gemfiles/rails_6_1.gemfile'},
{ 'ruby': '3.1', 'gemfile': 'gemfiles/rails_7_0.gemfile'},
]
secrets: inherit
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@
end

tracker(:department) do
create :created_by_department, foreign_key: :created_by_department_id,
create(:created_by_department, foreign_key: :created_by_department_id,
class_name: "::Internal::Department",
value: ->(object) { object&.created_by&.department }
update :updated_by_department, foreign_key: :updated_by_department_id,
value: ->(object) { object&.created_by&.department })
update(:updated_by_department, foreign_key: :updated_by_department_id,
class_name: "::Internal::Department",
value: ->(object) { object&.updated_by&.department }
value: ->(object) { object&.updated_by&.department })
end
end
1 change: 0 additions & 1 deletion packages/cygnet/cygnet.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ Gem::Specification.new do |s|
s.add_development_dependency "rainbow", "2.2.2"
s.add_development_dependency "rake", "~> 13.0"
s.add_development_dependency "rspec", "~> 3.0"
s.add_development_dependency "rubocop-powerhome", "0.5.3"
s.add_development_dependency "simplecov", "0.15.1"
s.add_development_dependency "test-unit", "3.1.5"
s.add_development_dependency "yard", "0.9.21"
Expand Down
3 changes: 0 additions & 3 deletions packages/rubocop-cobra/rubocop-cobra.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,6 @@ Gem::Specification.new do |spec|
# For more information and examples about making a new gem, check out our
# guide at: https://bundler.io/guides/creating_gem.html

# pinning the rails version until we can update the required_ruby_version
spec.add_dependency "rails", "~> 7.0"

spec.add_dependency "rubocop", "1.66.1"
spec.add_dependency "rubocop-powerhome"
spec.metadata["rubygems_mfa_required"] = "true"
Expand Down

0 comments on commit 00eec1d

Please sign in to comment.