clavis 0.7.1 ā†’ 0.7.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/Rakefile CHANGED
@@ -326,14 +326,62 @@ end
326
326
 
327
327
  begin
328
328
  require "brakeman"
329
- desc "Run Brakeman"
330
- task brakeman: :environment do
331
- Brakeman.run(app_path: ".")
329
+ desc "Run Brakeman on the test Rails application"
330
+ task brakeman: :bootstrap_rails_app do
331
+ # Rails app path is guaranteed to exist because of the bootstrap_rails_app dependency
332
+ rails_app_path = File.join(File.dirname(__FILE__), "rails-app")
333
+
334
+ puts "Running Brakeman on rails-app to check Clavis integration"
335
+
336
+ # Use the ignore file to manage confirmed false positives only
337
+ # Keep this list as small as possible and document any entries
338
+ result = Brakeman.run(
339
+ app_path: rails_app_path,
340
+ ignore_file: ".brakeman.ignore"
341
+ )
342
+
343
+ if result.warnings.any?
344
+ puts "Brakeman found #{result.warnings.count} potential security issues."
345
+
346
+ # Still filter and highlight Clavis-specific warnings for visibility
347
+ clavis_warnings = result.warnings.select do |warning|
348
+ warning.file&.include?("clavis") ||
349
+ warning.message&.include?("clavis") ||
350
+ warning.code&.include?("clavis")
351
+ end
352
+
353
+ if clavis_warnings.any?
354
+ puts "#{clavis_warnings.count} warnings specifically related to Clavis code:"
355
+ clavis_warnings.each_with_index do |warning, index|
356
+ puts "#{index + 1}. [#{warning.confidence}] #{warning.warning_type} in #{warning.file}:#{warning.line}"
357
+ puts " #{warning.message}"
358
+ puts ""
359
+ end
360
+ end
361
+
362
+ # Show all warnings in summary form
363
+ puts "\nAll warnings:"
364
+ result.warnings.each_with_index do |warning, index|
365
+ puts "#{index + 1}. [#{warning.confidence}] #{warning.warning_type} in #{warning.file}:#{warning.line}"
366
+ puts " #{warning.message}"
367
+ puts ""
368
+ end
369
+
370
+ # Exit with failure unless warnings are explicitly allowed
371
+ exit 1 unless ENV["ALLOW_BRAKEMAN_WARNINGS"]
372
+ else
373
+ puts "Brakeman scan completed with no warnings."
374
+ end
332
375
  end
333
376
  rescue LoadError
334
377
  desc "Run Brakeman"
335
378
  task brakeman: :environment do
336
- abort "Brakeman is not available. Run 'bundle install' first."
379
+ puts "Brakeman is not available. Please add it to your Gemfile or install it with:"
380
+ puts " gem install brakeman"
381
+ puts ""
382
+ puts "Note: This task will fail if any security issues are found in the rails-app."
383
+ puts "To allow warnings and continue anyway, set ALLOW_BRAKEMAN_WARNINGS=1"
384
+ exit 1
337
385
  end
338
386
  end
339
387
 
@@ -2,5 +2,5 @@
2
2
 
3
3
  module Clavis
4
4
  # The current version of Clavis.
5
- VERSION = "0.7.1"
5
+ VERSION = "0.7.2"
6
6
  end
@@ -103,32 +103,49 @@ module Clavis
103
103
  end
104
104
 
105
105
  def show_post_install_message
106
- say "\nClavis has been installed successfully!"
107
-
108
- # Next steps
109
- say "\nNext steps:"
110
-
106
+ say "\nClavis has been installed successfully! šŸ”‘"
107
+
108
+ # What was done section
109
+ say "\n=== What Was Done ==="
110
+ say "āœ… Generated migration for OAuth identities"
111
+ say "āœ… Added OAuth fields to your User model"
112
+ say "āœ… Created ClavisUserMethods concern for your User model"
113
+ say "āœ… Mounted Clavis engine at '/auth' in routes.rb"
114
+ say "āœ… Generated configuration initializer"
115
+
116
+ # Required steps section
117
+ say "\n=== Required Steps ==="
111
118
  steps = []
112
119
 
113
- if @provide_css_instructions
114
- steps << "Include the Clavis styles in your layout:\n <%= stylesheet_link_tag 'clavis_styles' %>"
115
- end
116
-
117
- steps << "Configure your providers in config/initializers/clavis.rb"
118
- steps << "Run migrations: rails db:migrate"
119
- steps << "āš ļø Customize the user creation code in app/models/concerns/clavis_user_methods.rb"
120
- steps << "Add OAuth buttons to your views:\n <%= clavis_oauth_button :google %>"
120
+ steps << "Run migrations:\n $ rails db:migrate"
121
+ steps << "Configure your providers in config/initializers/clavis.rb:\n ā€¢ Add your client_id and client_secret\n ā€¢ Set correct redirect_uri values" # rubocop:disable Layout/LineLength
122
+ steps << "āš ļø IMPORTANT: Customize user creation in app/models/concerns/clavis_user_methods.rb\n ā€¢ The default only sets the email field, which is likely insufficient\n ā€¢ Add all required fields for your User model" # rubocop:disable Layout/LineLength
121
123
 
122
124
  # Output numbered steps
123
125
  steps.each_with_index do |step, index|
124
126
  say "#{index + 1}. #{step}"
125
127
  end
126
128
 
127
- say "\nClavis has configured your User model with OAuth support via the ClavisUserMethods concern."
128
- say "IMPORTANT: The default implementation only sets the email field when creating users."
129
- say "You MUST customize this to include all required fields for your User model."
129
+ # Password validation section
130
+ say "\n=== For Password-Protected Users ==="
131
+ say "If your User model uses has_secure_password:"
132
+ say "ā€¢ Uncomment the password validation section in app/models/concerns/clavis_user_methods.rb"
133
+ say "ā€¢ Choose one of the approaches described there"
134
+
135
+ # View integration section
136
+ say "\n=== Using In Your Views ==="
137
+ say "Add OAuth buttons to your login page:"
138
+ say "<%= clavis_oauth_button :google %>"
139
+ say "<%= clavis_oauth_button :github %>"
140
+
141
+ # CSS styling section
142
+ if @provide_css_instructions
143
+ say "\n=== For CSS Styling ==="
144
+ say "Include Clavis styles in your layout:"
145
+ say "<%= stylesheet_link_tag 'clavis_styles' %>"
146
+ end
130
147
 
131
- say "\nFor more information, see the documentation at https://github.com/clayton/clavis"
148
+ say "\nFor more information, see: https://github.com/clayton/clavis"
132
149
  end
133
150
 
134
151
  private
@@ -197,22 +197,11 @@ module Clavis
197
197
  end
198
198
 
199
199
  def show_instructions
200
- say "\nThe ClavisUserMethods concern has been created and included in your User model."
201
- say "This gives your User model the ability to find or create users from OAuth data."
202
-
203
- say "\nāš ļø IMPORTANT: You must customize the user creation code to match your User model!"
204
- say "The default implementation only sets the email field, which may not be sufficient."
205
-
206
- say "\nāš ļø IMPORTANT: If your User model uses has_secure_password, you need to handle password validation!"
207
- say "Look for the password validation section in app/models/concerns/clavis_user_methods.rb and"
208
- say "uncomment one of the approaches described there."
209
-
210
- say "\nTo customize:"
211
- say " 1. Edit app/models/concerns/clavis_user_methods.rb"
212
- say " 2. Add required fields to the user creation in find_or_create_from_clavis"
213
- say " 3. Handle password validation if your model uses has_secure_password"
214
-
215
- say "\nFor more information, see the documentation at https://github.com/clayton/clavis"
200
+ # The main instructions will be handled by install_generator.rb
201
+ # This is just a simple confirmation of what was done
202
+ say "\nClavis user methods have been added to your User model."
203
+ say "āœ… Created app/models/concerns/clavis_user_methods.rb"
204
+ say "āœ… Added 'include ClavisUserMethods' to your User model"
216
205
  end
217
206
  end
218
207
  end