Skip to content

Commit

Permalink
Fix rubocop alerts
Browse files Browse the repository at this point in the history
  • Loading branch information
candanedo committed Feb 8, 2024
1 parent 1e6dc80 commit 6e00fc4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion lib/use_paragon.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,15 @@
require "use_paragon/version"
require "use_paragon/workflow"

# UseParagon gem base module
module UseParagon
# Configuration from initializer
class << self
def configuration
@configuration ||= Configuration.new
end

def configure(&block)
def configure
yield(configuration)
end
end
Expand Down
2 changes: 1 addition & 1 deletion lib/use_paragon/configuration.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ module UseParagon
class Configuration
attr_accessor :private_key, :project_id
end
end
end

0 comments on commit 6e00fc4

Please sign in to comment.