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.
- checksums.yaml +4 -4
- data/.brakeman.ignore +1 -0
- data/CHANGELOG.md +27 -15
- data/README.md +271 -537
- data/Rakefile +52 -4
- data/lib/clavis/version.rb +1 -1
- data/lib/generators/clavis/install_generator.rb +34 -17
- data/lib/generators/clavis/user_method/user_method_generator.rb +5 -16
- data/llms.md +256 -347
- metadata +2 -4
- data/UPGRADE.md +0 -57
- data/docs/integration.md +0 -272
- data/testing_plan.md +0 -710
data/Rakefile
CHANGED
@@ -326,14 +326,62 @@ end
|
|
326
326
|
|
327
327
|
begin
|
328
328
|
require "brakeman"
|
329
|
-
desc "Run Brakeman"
|
330
|
-
task brakeman: :
|
331
|
-
|
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
|
-
|
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
|
|
data/lib/clavis/version.rb
CHANGED
@@ -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
|
-
#
|
109
|
-
say "\
|
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
|
-
|
114
|
-
|
115
|
-
|
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
|
-
|
128
|
-
say "
|
129
|
-
say "
|
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
|
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
|
-
|
201
|
-
|
202
|
-
|
203
|
-
say "
|
204
|
-
say "
|
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
|