File tree 5 files changed +13
-8
lines changed
5 files changed +13
-8
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 1.8.1
4
+
5
+ ### Fixed
6
+
7
+ - Fix issue with Rails 8 lazy loading routes (#247 )
8
+
3
9
## 1.8.0
4
10
5
11
### Added
Original file line number Diff line number Diff line change @@ -18,12 +18,10 @@ load("rails/tasks/statistics.rake")
18
18
19
19
require "bundler/gem_tasks"
20
20
21
- require "rake/testtask"
22
-
23
- Rake ::TestTask . new ( :test ) do |t |
24
- t . libs << "test"
25
- t . pattern = "test/**/*_test.rb"
26
- t . verbose = false
21
+ task ( :test ) do
22
+ puts ( "Use `bin/rails test`" )
23
+ puts ( "-" * 80 )
24
+ system ( "bin/rails test" )
27
25
end
28
26
29
27
task ( default : :test )
Original file line number Diff line number Diff line change 2
2
3
3
module Passwordless
4
4
# :nodoc:
5
- VERSION = "1.8.0 "
5
+ VERSION = "1.8.1 "
6
6
end
Original file line number Diff line number Diff line change 59
59
# config.action_view.annotate_rendered_view_with_filenames = true
60
60
61
61
host = "www.example.com"
62
+ config . hosts << host
62
63
config . action_mailer . default_url_options = { host : host }
63
64
routes . default_url_options [ :host ] = host
64
65
end
Original file line number Diff line number Diff line change 10
10
#
11
11
# It's strongly recommended that you check this file into your version control system.
12
12
13
- ActiveRecord ::Schema [ 7.2 ] . define ( version : 2023_06_21_085550 ) do
13
+ ActiveRecord ::Schema [ 8.0 ] . define ( version : 2023_06_21_085550 ) do
14
14
create_table "admins" , force : :cascade do |t |
15
15
t . string "email"
16
16
t . datetime "created_at" , null : false
You can’t perform that action at this time.
0 commit comments