eBooru/Gemfile.lock

408 lines
9.4 KiB
Plaintext
Raw Normal View History

2019-05-01 16:17:08 -04:00
GIT
2023-01-23 14:43:56 -05:00
remote: https://github.com/e621ng/dtext_rb.git
revision: 5ef8fd7a5205c832f4c18197911717e7d491494e
branch: master
2019-05-01 16:17:08 -04:00
specs:
dtext_rb (1.11.0)
2019-05-01 16:17:08 -04:00
2010-08-18 18:44:18 -04:00
GEM
2014-07-01 17:34:50 -04:00
remote: https://rubygems.org/
2010-08-18 18:44:18 -04:00
specs:
2023-12-03 10:21:30 -05:00
actioncable (7.0.8)
actionpack (= 7.0.8)
activesupport (= 7.0.8)
Raise error on unpermitted params. Fail loudly if we forget to whitelist a param instead of silently ignoring it. misc models: convert to strong params. artist commentaries: convert to strong params. * Disallow changing or setting post_id to a nonexistent post. artists: convert to strong params. * Disallow setting `is_banned` in create/update actions. Changing it this way instead of with the ban/unban actions would leave the artist in a partially banned state. bans: convert to strong params. * Disallow changing the user_id after the ban has been created. comments: convert to strong params. favorite groups: convert to strong params. news updates: convert to strong params. post appeals: convert to strong params. post flags: convert to strong params. * Disallow users from setting the `is_deleted` / `is_resolved` flags. ip bans: convert to strong params. user feedbacks: convert to strong params. * Disallow users from setting `disable_dmail_notification` when creating feedbacks. * Disallow changing the user_id after the feedback has been created. notes: convert to strong params. wiki pages: convert to strong params. * Also fix non-Builders being able to delete wiki pages. saved searches: convert to strong params. pools: convert to strong params. * Disallow setting `post_count` or `is_deleted` in create/update actions. janitor trials: convert to strong params. post disapprovals: convert to strong params. * Factor out quick-mod bar to shared partial. * Fix quick-mod bar to use `Post#is_approvable?` to determine visibility of Approve button. dmail filters: convert to strong params. password resets: convert to strong params. user name change requests: convert to strong params. posts: convert to strong params. users: convert to strong params. * Disallow setting password_hash, last_logged_in_at, last_forum_read_at, has_mail, and dmail_filter_attributes[user_id]. * Remove initialize_default_image_size (dead code). uploads: convert to strong params. * Remove `initialize_status` because status already defaults to pending in the database. tag aliases/implications: convert to strong params. tags: convert to strong params. forum posts: convert to strong params. * Disallow changing the topic_id after creating the post. * Disallow setting is_deleted (destroy/undelete actions should be used instead). * Remove is_sticky / is_locked (nonexistent attributes). forum topics: convert to strong params. * merges https://github.com/evazion/danbooru/tree/wip-rails-5.1 * lock pg gem to 0.21 (1.0.0 is incompatible with rails 5.1.4) * switch to factorybot and change all references Co-authored-by: r888888888 <r888888888@gmail.com> Co-authored-by: evazion <noizave@gmail.com> add diffs
2018-04-02 13:51:26 -04:00
nio4r (~> 2.0)
2018-04-25 17:35:52 -04:00
websocket-driver (>= 0.6.1)
2023-12-03 10:21:30 -05:00
actionmailbox (7.0.8)
actionpack (= 7.0.8)
activejob (= 7.0.8)
activerecord (= 7.0.8)
activestorage (= 7.0.8)
activesupport (= 7.0.8)
2019-08-29 00:50:40 -04:00
mail (>= 2.7.1)
2022-10-10 07:22:35 -04:00
net-imap
net-pop
net-smtp
2023-12-03 10:21:30 -05:00
actionmailer (7.0.8)
actionpack (= 7.0.8)
actionview (= 7.0.8)
activejob (= 7.0.8)
activesupport (= 7.0.8)
2014-12-10 19:23:49 -05:00
mail (~> 2.5, >= 2.5.4)
2022-10-10 07:22:35 -04:00
net-imap
net-pop
net-smtp
Raise error on unpermitted params. Fail loudly if we forget to whitelist a param instead of silently ignoring it. misc models: convert to strong params. artist commentaries: convert to strong params. * Disallow changing or setting post_id to a nonexistent post. artists: convert to strong params. * Disallow setting `is_banned` in create/update actions. Changing it this way instead of with the ban/unban actions would leave the artist in a partially banned state. bans: convert to strong params. * Disallow changing the user_id after the ban has been created. comments: convert to strong params. favorite groups: convert to strong params. news updates: convert to strong params. post appeals: convert to strong params. post flags: convert to strong params. * Disallow users from setting the `is_deleted` / `is_resolved` flags. ip bans: convert to strong params. user feedbacks: convert to strong params. * Disallow users from setting `disable_dmail_notification` when creating feedbacks. * Disallow changing the user_id after the feedback has been created. notes: convert to strong params. wiki pages: convert to strong params. * Also fix non-Builders being able to delete wiki pages. saved searches: convert to strong params. pools: convert to strong params. * Disallow setting `post_count` or `is_deleted` in create/update actions. janitor trials: convert to strong params. post disapprovals: convert to strong params. * Factor out quick-mod bar to shared partial. * Fix quick-mod bar to use `Post#is_approvable?` to determine visibility of Approve button. dmail filters: convert to strong params. password resets: convert to strong params. user name change requests: convert to strong params. posts: convert to strong params. users: convert to strong params. * Disallow setting password_hash, last_logged_in_at, last_forum_read_at, has_mail, and dmail_filter_attributes[user_id]. * Remove initialize_default_image_size (dead code). uploads: convert to strong params. * Remove `initialize_status` because status already defaults to pending in the database. tag aliases/implications: convert to strong params. tags: convert to strong params. forum posts: convert to strong params. * Disallow changing the topic_id after creating the post. * Disallow setting is_deleted (destroy/undelete actions should be used instead). * Remove is_sticky / is_locked (nonexistent attributes). forum topics: convert to strong params. * merges https://github.com/evazion/danbooru/tree/wip-rails-5.1 * lock pg gem to 0.21 (1.0.0 is incompatible with rails 5.1.4) * switch to factorybot and change all references Co-authored-by: r888888888 <r888888888@gmail.com> Co-authored-by: evazion <noizave@gmail.com> add diffs
2018-04-02 13:51:26 -04:00
rails-dom-testing (~> 2.0)
2023-12-03 10:21:30 -05:00
actionpack (7.0.8)
actionview (= 7.0.8)
activesupport (= 7.0.8)
rack (~> 2.0, >= 2.2.4)
Raise error on unpermitted params. Fail loudly if we forget to whitelist a param instead of silently ignoring it. misc models: convert to strong params. artist commentaries: convert to strong params. * Disallow changing or setting post_id to a nonexistent post. artists: convert to strong params. * Disallow setting `is_banned` in create/update actions. Changing it this way instead of with the ban/unban actions would leave the artist in a partially banned state. bans: convert to strong params. * Disallow changing the user_id after the ban has been created. comments: convert to strong params. favorite groups: convert to strong params. news updates: convert to strong params. post appeals: convert to strong params. post flags: convert to strong params. * Disallow users from setting the `is_deleted` / `is_resolved` flags. ip bans: convert to strong params. user feedbacks: convert to strong params. * Disallow users from setting `disable_dmail_notification` when creating feedbacks. * Disallow changing the user_id after the feedback has been created. notes: convert to strong params. wiki pages: convert to strong params. * Also fix non-Builders being able to delete wiki pages. saved searches: convert to strong params. pools: convert to strong params. * Disallow setting `post_count` or `is_deleted` in create/update actions. janitor trials: convert to strong params. post disapprovals: convert to strong params. * Factor out quick-mod bar to shared partial. * Fix quick-mod bar to use `Post#is_approvable?` to determine visibility of Approve button. dmail filters: convert to strong params. password resets: convert to strong params. user name change requests: convert to strong params. posts: convert to strong params. users: convert to strong params. * Disallow setting password_hash, last_logged_in_at, last_forum_read_at, has_mail, and dmail_filter_attributes[user_id]. * Remove initialize_default_image_size (dead code). uploads: convert to strong params. * Remove `initialize_status` because status already defaults to pending in the database. tag aliases/implications: convert to strong params. tags: convert to strong params. forum posts: convert to strong params. * Disallow changing the topic_id after creating the post. * Disallow setting is_deleted (destroy/undelete actions should be used instead). * Remove is_sticky / is_locked (nonexistent attributes). forum topics: convert to strong params. * merges https://github.com/evazion/danbooru/tree/wip-rails-5.1 * lock pg gem to 0.21 (1.0.0 is incompatible with rails 5.1.4) * switch to factorybot and change all references Co-authored-by: r888888888 <r888888888@gmail.com> Co-authored-by: evazion <noizave@gmail.com> add diffs
2018-04-02 13:51:26 -04:00
rack-test (>= 0.6.3)
rails-dom-testing (~> 2.0)
2019-08-29 00:50:40 -04:00
rails-html-sanitizer (~> 1.0, >= 1.2.0)
2023-12-03 10:21:30 -05:00
actiontext (7.0.8)
actionpack (= 7.0.8)
activerecord (= 7.0.8)
activestorage (= 7.0.8)
activesupport (= 7.0.8)
2022-10-10 07:22:35 -04:00
globalid (>= 0.6.0)
2019-08-29 00:50:40 -04:00
nokogiri (>= 1.8.5)
2023-12-03 10:21:30 -05:00
actionview (7.0.8)
activesupport (= 7.0.8)
2014-04-14 17:32:01 -04:00
builder (~> 3.1)
Raise error on unpermitted params. Fail loudly if we forget to whitelist a param instead of silently ignoring it. misc models: convert to strong params. artist commentaries: convert to strong params. * Disallow changing or setting post_id to a nonexistent post. artists: convert to strong params. * Disallow setting `is_banned` in create/update actions. Changing it this way instead of with the ban/unban actions would leave the artist in a partially banned state. bans: convert to strong params. * Disallow changing the user_id after the ban has been created. comments: convert to strong params. favorite groups: convert to strong params. news updates: convert to strong params. post appeals: convert to strong params. post flags: convert to strong params. * Disallow users from setting the `is_deleted` / `is_resolved` flags. ip bans: convert to strong params. user feedbacks: convert to strong params. * Disallow users from setting `disable_dmail_notification` when creating feedbacks. * Disallow changing the user_id after the feedback has been created. notes: convert to strong params. wiki pages: convert to strong params. * Also fix non-Builders being able to delete wiki pages. saved searches: convert to strong params. pools: convert to strong params. * Disallow setting `post_count` or `is_deleted` in create/update actions. janitor trials: convert to strong params. post disapprovals: convert to strong params. * Factor out quick-mod bar to shared partial. * Fix quick-mod bar to use `Post#is_approvable?` to determine visibility of Approve button. dmail filters: convert to strong params. password resets: convert to strong params. user name change requests: convert to strong params. posts: convert to strong params. users: convert to strong params. * Disallow setting password_hash, last_logged_in_at, last_forum_read_at, has_mail, and dmail_filter_attributes[user_id]. * Remove initialize_default_image_size (dead code). uploads: convert to strong params. * Remove `initialize_status` because status already defaults to pending in the database. tag aliases/implications: convert to strong params. tags: convert to strong params. forum posts: convert to strong params. * Disallow changing the topic_id after creating the post. * Disallow setting is_deleted (destroy/undelete actions should be used instead). * Remove is_sticky / is_locked (nonexistent attributes). forum topics: convert to strong params. * merges https://github.com/evazion/danbooru/tree/wip-rails-5.1 * lock pg gem to 0.21 (1.0.0 is incompatible with rails 5.1.4) * switch to factorybot and change all references Co-authored-by: r888888888 <r888888888@gmail.com> Co-authored-by: evazion <noizave@gmail.com> add diffs
2018-04-02 13:51:26 -04:00
erubi (~> 1.4)
rails-dom-testing (~> 2.0)
2019-08-29 00:50:40 -04:00
rails-html-sanitizer (~> 1.1, >= 1.2.0)
2023-12-03 10:21:30 -05:00
active_model_serializers (0.10.14)
actionpack (>= 4.1)
activemodel (>= 4.1)
2020-01-02 13:24:33 -05:00
case_transform (>= 0.2)
jsonapi-renderer (>= 0.1.1.beta1, < 0.3)
2023-12-03 10:21:30 -05:00
activejob (7.0.8)
activesupport (= 7.0.8)
Raise error on unpermitted params. Fail loudly if we forget to whitelist a param instead of silently ignoring it. misc models: convert to strong params. artist commentaries: convert to strong params. * Disallow changing or setting post_id to a nonexistent post. artists: convert to strong params. * Disallow setting `is_banned` in create/update actions. Changing it this way instead of with the ban/unban actions would leave the artist in a partially banned state. bans: convert to strong params. * Disallow changing the user_id after the ban has been created. comments: convert to strong params. favorite groups: convert to strong params. news updates: convert to strong params. post appeals: convert to strong params. post flags: convert to strong params. * Disallow users from setting the `is_deleted` / `is_resolved` flags. ip bans: convert to strong params. user feedbacks: convert to strong params. * Disallow users from setting `disable_dmail_notification` when creating feedbacks. * Disallow changing the user_id after the feedback has been created. notes: convert to strong params. wiki pages: convert to strong params. * Also fix non-Builders being able to delete wiki pages. saved searches: convert to strong params. pools: convert to strong params. * Disallow setting `post_count` or `is_deleted` in create/update actions. janitor trials: convert to strong params. post disapprovals: convert to strong params. * Factor out quick-mod bar to shared partial. * Fix quick-mod bar to use `Post#is_approvable?` to determine visibility of Approve button. dmail filters: convert to strong params. password resets: convert to strong params. user name change requests: convert to strong params. posts: convert to strong params. users: convert to strong params. * Disallow setting password_hash, last_logged_in_at, last_forum_read_at, has_mail, and dmail_filter_attributes[user_id]. * Remove initialize_default_image_size (dead code). uploads: convert to strong params. * Remove `initialize_status` because status already defaults to pending in the database. tag aliases/implications: convert to strong params. tags: convert to strong params. forum posts: convert to strong params. * Disallow changing the topic_id after creating the post. * Disallow setting is_deleted (destroy/undelete actions should be used instead). * Remove is_sticky / is_locked (nonexistent attributes). forum topics: convert to strong params. * merges https://github.com/evazion/danbooru/tree/wip-rails-5.1 * lock pg gem to 0.21 (1.0.0 is incompatible with rails 5.1.4) * switch to factorybot and change all references Co-authored-by: r888888888 <r888888888@gmail.com> Co-authored-by: evazion <noizave@gmail.com> add diffs
2018-04-02 13:51:26 -04:00
globalid (>= 0.3.6)
2023-12-03 10:21:30 -05:00
activemodel (7.0.8)
activesupport (= 7.0.8)
Raise error on unpermitted params. Fail loudly if we forget to whitelist a param instead of silently ignoring it. misc models: convert to strong params. artist commentaries: convert to strong params. * Disallow changing or setting post_id to a nonexistent post. artists: convert to strong params. * Disallow setting `is_banned` in create/update actions. Changing it this way instead of with the ban/unban actions would leave the artist in a partially banned state. bans: convert to strong params. * Disallow changing the user_id after the ban has been created. comments: convert to strong params. favorite groups: convert to strong params. news updates: convert to strong params. post appeals: convert to strong params. post flags: convert to strong params. * Disallow users from setting the `is_deleted` / `is_resolved` flags. ip bans: convert to strong params. user feedbacks: convert to strong params. * Disallow users from setting `disable_dmail_notification` when creating feedbacks. * Disallow changing the user_id after the feedback has been created. notes: convert to strong params. wiki pages: convert to strong params. * Also fix non-Builders being able to delete wiki pages. saved searches: convert to strong params. pools: convert to strong params. * Disallow setting `post_count` or `is_deleted` in create/update actions. janitor trials: convert to strong params. post disapprovals: convert to strong params. * Factor out quick-mod bar to shared partial. * Fix quick-mod bar to use `Post#is_approvable?` to determine visibility of Approve button. dmail filters: convert to strong params. password resets: convert to strong params. user name change requests: convert to strong params. posts: convert to strong params. users: convert to strong params. * Disallow setting password_hash, last_logged_in_at, last_forum_read_at, has_mail, and dmail_filter_attributes[user_id]. * Remove initialize_default_image_size (dead code). uploads: convert to strong params. * Remove `initialize_status` because status already defaults to pending in the database. tag aliases/implications: convert to strong params. tags: convert to strong params. forum posts: convert to strong params. * Disallow changing the topic_id after creating the post. * Disallow setting is_deleted (destroy/undelete actions should be used instead). * Remove is_sticky / is_locked (nonexistent attributes). forum topics: convert to strong params. * merges https://github.com/evazion/danbooru/tree/wip-rails-5.1 * lock pg gem to 0.21 (1.0.0 is incompatible with rails 5.1.4) * switch to factorybot and change all references Co-authored-by: r888888888 <r888888888@gmail.com> Co-authored-by: evazion <noizave@gmail.com> add diffs
2018-04-02 13:51:26 -04:00
activemodel-serializers-xml (1.0.2)
activemodel (> 5.x)
activesupport (> 5.x)
2014-04-14 17:32:01 -04:00
builder (~> 3.1)
2023-12-03 10:21:30 -05:00
activerecord (7.0.8)
activemodel (= 7.0.8)
activesupport (= 7.0.8)
activestorage (7.0.8)
actionpack (= 7.0.8)
activejob (= 7.0.8)
activerecord (= 7.0.8)
activesupport (= 7.0.8)
2022-04-28 10:57:55 -04:00
marcel (~> 1.0)
2021-08-12 10:16:18 -04:00
mini_mime (>= 1.1.0)
2023-12-03 10:21:30 -05:00
activesupport (7.0.8)
Raise error on unpermitted params. Fail loudly if we forget to whitelist a param instead of silently ignoring it. misc models: convert to strong params. artist commentaries: convert to strong params. * Disallow changing or setting post_id to a nonexistent post. artists: convert to strong params. * Disallow setting `is_banned` in create/update actions. Changing it this way instead of with the ban/unban actions would leave the artist in a partially banned state. bans: convert to strong params. * Disallow changing the user_id after the ban has been created. comments: convert to strong params. favorite groups: convert to strong params. news updates: convert to strong params. post appeals: convert to strong params. post flags: convert to strong params. * Disallow users from setting the `is_deleted` / `is_resolved` flags. ip bans: convert to strong params. user feedbacks: convert to strong params. * Disallow users from setting `disable_dmail_notification` when creating feedbacks. * Disallow changing the user_id after the feedback has been created. notes: convert to strong params. wiki pages: convert to strong params. * Also fix non-Builders being able to delete wiki pages. saved searches: convert to strong params. pools: convert to strong params. * Disallow setting `post_count` or `is_deleted` in create/update actions. janitor trials: convert to strong params. post disapprovals: convert to strong params. * Factor out quick-mod bar to shared partial. * Fix quick-mod bar to use `Post#is_approvable?` to determine visibility of Approve button. dmail filters: convert to strong params. password resets: convert to strong params. user name change requests: convert to strong params. posts: convert to strong params. users: convert to strong params. * Disallow setting password_hash, last_logged_in_at, last_forum_read_at, has_mail, and dmail_filter_attributes[user_id]. * Remove initialize_default_image_size (dead code). uploads: convert to strong params. * Remove `initialize_status` because status already defaults to pending in the database. tag aliases/implications: convert to strong params. tags: convert to strong params. forum posts: convert to strong params. * Disallow changing the topic_id after creating the post. * Disallow setting is_deleted (destroy/undelete actions should be used instead). * Remove is_sticky / is_locked (nonexistent attributes). forum topics: convert to strong params. * merges https://github.com/evazion/danbooru/tree/wip-rails-5.1 * lock pg gem to 0.21 (1.0.0 is incompatible with rails 5.1.4) * switch to factorybot and change all references Co-authored-by: r888888888 <r888888888@gmail.com> Co-authored-by: evazion <noizave@gmail.com> add diffs
2018-04-02 13:51:26 -04:00
concurrent-ruby (~> 1.0, >= 1.0.2)
i18n (>= 1.6, < 2)
minitest (>= 5.1)
tzinfo (~> 2.0)
2024-01-25 15:28:28 -05:00
addressable (2.8.6)
2022-10-10 07:22:35 -04:00
public_suffix (>= 2.0.2, < 6.0)
ast (2.4.2)
2023-12-03 10:21:30 -05:00
bcrypt (3.1.20)
better_html (2.0.2)
2023-02-23 07:22:26 -05:00
actionview (>= 6.0)
activesupport (>= 6.0)
ast (~> 2.0)
erubi (~> 1.4)
parser (>= 2.4)
smart_properties
2024-01-25 15:28:28 -05:00
bootsnap (1.17.1)
2022-10-10 07:22:35 -04:00
msgpack (~> 1.2)
builder (3.2.4)
2020-01-02 13:24:33 -05:00
case_transform (0.2)
activesupport
2024-01-25 15:28:28 -05:00
concurrent-ruby (1.2.3)
connection_pool (2.4.1)
crack (0.4.5)
rexml
2020-02-26 05:02:37 -05:00
crass (1.0.6)
2023-12-03 10:21:30 -05:00
dalli (3.2.6)
date (3.3.4)
debug (1.9.1)
irb (~> 1.10)
reline (>= 0.3.8)
2023-10-15 07:08:28 -04:00
diffy (3.4.2)
2024-01-25 15:28:28 -05:00
domain_name (0.6.20240107)
2022-10-10 07:22:35 -04:00
dotenv (2.8.1)
dotenv-rails (2.8.1)
dotenv (= 2.8.1)
2020-07-18 09:36:16 -04:00
railties (>= 3.2)
2021-08-12 10:16:18 -04:00
draper (4.0.2)
2019-04-13 02:03:51 -04:00
actionpack (>= 5.0)
activemodel (>= 5.0)
activemodel-serializers-xml (>= 1.0)
activesupport (>= 5.0)
request_store (>= 1.0)
2021-08-12 10:16:18 -04:00
ruby2_keywords
erubi (1.12.0)
2024-01-25 15:28:28 -05:00
factory_bot (6.4.5)
2020-06-24 16:25:51 -04:00
activesupport (>= 5.0.0)
2024-01-25 15:28:28 -05:00
factory_bot_rails (6.4.3)
2023-12-03 10:21:30 -05:00
factory_bot (~> 6.4)
railties (>= 5.0.0)
2024-01-25 15:28:28 -05:00
faraday (2.9.0)
faraday-net_http (>= 2.0, < 3.2)
faraday-net_http (3.1.0)
net-http
2023-12-03 10:21:30 -05:00
ffi (1.16.3)
get_process_mem (0.2.7)
2019-08-10 08:02:15 -04:00
ffi (~> 1.0)
2023-12-03 10:21:30 -05:00
globalid (1.2.1)
activesupport (>= 6.1)
2024-01-25 15:28:28 -05:00
hashdiff (1.1.0)
2021-04-02 23:29:38 -04:00
http-accept (1.7.0)
2022-10-10 07:22:35 -04:00
http-cookie (1.0.5)
2013-08-07 21:12:07 -04:00
domain_name (~> 0.5)
httparty (0.21.0)
mini_mime (>= 1.0.0)
2017-06-23 00:20:04 -04:00
multi_xml (>= 0.5.2)
i18n (1.14.1)
2018-01-20 18:47:56 -05:00
concurrent-ruby (~> 1.0)
2024-01-25 15:28:28 -05:00
io-console (0.7.2)
irb (1.11.1)
rdoc
reline (>= 0.4.2)
2024-01-25 15:28:28 -05:00
json (2.7.1)
2020-01-02 13:24:33 -05:00
jsonapi-renderer (0.2.2)
2021-08-12 10:16:18 -04:00
kgio (2.11.4)
language_server-protocol (3.17.0.3)
listen (3.8.0)
2019-10-06 07:40:54 -04:00
rb-fsevent (~> 0.10, >= 0.10.3)
rb-inotify (~> 0.9, >= 0.9.10)
2023-12-03 10:21:30 -05:00
loofah (2.22.0)
2018-01-20 18:47:56 -05:00
crass (~> 1.0.2)
nokogiri (>= 1.12.0)
mail (2.8.1)
2018-01-20 18:47:56 -05:00
mini_mime (>= 0.1.1)
net-imap
net-pop
net-smtp
2024-01-25 15:28:28 -05:00
mailgun-ruby (1.2.13)
2021-04-02 23:29:38 -04:00
rest-client (>= 2.0.2)
2021-12-29 13:08:15 -05:00
marcel (1.0.2)
2020-04-08 12:40:01 -04:00
method_source (1.0.0)
2024-01-25 15:28:28 -05:00
mime-types (3.5.2)
Raise error on unpermitted params. Fail loudly if we forget to whitelist a param instead of silently ignoring it. misc models: convert to strong params. artist commentaries: convert to strong params. * Disallow changing or setting post_id to a nonexistent post. artists: convert to strong params. * Disallow setting `is_banned` in create/update actions. Changing it this way instead of with the ban/unban actions would leave the artist in a partially banned state. bans: convert to strong params. * Disallow changing the user_id after the ban has been created. comments: convert to strong params. favorite groups: convert to strong params. news updates: convert to strong params. post appeals: convert to strong params. post flags: convert to strong params. * Disallow users from setting the `is_deleted` / `is_resolved` flags. ip bans: convert to strong params. user feedbacks: convert to strong params. * Disallow users from setting `disable_dmail_notification` when creating feedbacks. * Disallow changing the user_id after the feedback has been created. notes: convert to strong params. wiki pages: convert to strong params. * Also fix non-Builders being able to delete wiki pages. saved searches: convert to strong params. pools: convert to strong params. * Disallow setting `post_count` or `is_deleted` in create/update actions. janitor trials: convert to strong params. post disapprovals: convert to strong params. * Factor out quick-mod bar to shared partial. * Fix quick-mod bar to use `Post#is_approvable?` to determine visibility of Approve button. dmail filters: convert to strong params. password resets: convert to strong params. user name change requests: convert to strong params. posts: convert to strong params. users: convert to strong params. * Disallow setting password_hash, last_logged_in_at, last_forum_read_at, has_mail, and dmail_filter_attributes[user_id]. * Remove initialize_default_image_size (dead code). uploads: convert to strong params. * Remove `initialize_status` because status already defaults to pending in the database. tag aliases/implications: convert to strong params. tags: convert to strong params. forum posts: convert to strong params. * Disallow changing the topic_id after creating the post. * Disallow setting is_deleted (destroy/undelete actions should be used instead). * Remove is_sticky / is_locked (nonexistent attributes). forum topics: convert to strong params. * merges https://github.com/evazion/danbooru/tree/wip-rails-5.1 * lock pg gem to 0.21 (1.0.0 is incompatible with rails 5.1.4) * switch to factorybot and change all references Co-authored-by: r888888888 <r888888888@gmail.com> Co-authored-by: evazion <noizave@gmail.com> add diffs
2018-04-02 13:51:26 -04:00
mime-types-data (~> 3.2015)
2024-01-25 15:28:28 -05:00
mime-types-data (3.2023.1205)
mini_mime (1.1.5)
2023-12-03 10:21:30 -05:00
mini_portile2 (2.8.5)
2024-01-25 15:28:28 -05:00
minitest (5.21.2)
mocha (2.1.0)
ruby2_keywords (>= 0.0.5)
msgpack (1.7.2)
2020-07-18 09:36:16 -04:00
multi_json (1.15.0)
multi_xml (0.6.0)
2024-01-25 15:28:28 -05:00
net-http (0.4.1)
uri
net-imap (0.4.9.1)
date
net-protocol
2022-10-10 07:22:35 -04:00
net-pop (0.1.2)
net-protocol
2023-12-03 10:21:30 -05:00
net-protocol (0.2.2)
timeout
2024-01-25 15:28:28 -05:00
net-smtp (0.4.0.1)
net-protocol
2019-09-13 15:46:44 -04:00
netrc (0.11.0)
2024-01-25 15:28:28 -05:00
newrelic_rpm (9.7.1)
2023-12-03 10:21:30 -05:00
nio4r (2.7.0)
2024-01-25 15:28:28 -05:00
nokogiri (1.16.0)
mini_portile2 (~> 2.8.2)
2021-01-17 15:47:35 -05:00
racc (~> 1.4)
2024-01-25 15:28:28 -05:00
opensearch-ruby (3.1.0)
faraday (>= 1.0, < 3)
multi_json (>= 1.0)
2024-01-25 15:28:28 -05:00
parallel (1.24.0)
2023-12-03 09:36:37 -05:00
parser (3.2.2.4)
ast (~> 2.4.1)
racc
2023-12-03 10:21:30 -05:00
pg (1.5.4)
prism (0.19.0)
psych (5.1.2)
stringio
2023-12-03 10:21:30 -05:00
public_suffix (5.0.4)
2024-01-25 15:28:28 -05:00
puma (6.4.2)
nio4r (~> 2.0)
2023-12-03 10:21:30 -05:00
racc (1.7.3)
rack (2.2.8)
2023-12-03 10:21:30 -05:00
rack-proxy (0.7.7)
2018-07-06 19:41:08 -04:00
rack
rack-test (2.1.0)
2022-07-13 22:44:55 -04:00
rack (>= 1.3)
2023-12-03 10:21:30 -05:00
rails (7.0.8)
actioncable (= 7.0.8)
actionmailbox (= 7.0.8)
actionmailer (= 7.0.8)
actionpack (= 7.0.8)
actiontext (= 7.0.8)
actionview (= 7.0.8)
activejob (= 7.0.8)
activemodel (= 7.0.8)
activerecord (= 7.0.8)
activestorage (= 7.0.8)
activesupport (= 7.0.8)
bundler (>= 1.15.0)
2023-12-03 10:21:30 -05:00
railties (= 7.0.8)
rails-dom-testing (2.2.0)
activesupport (>= 5.0.0)
minitest
Raise error on unpermitted params. Fail loudly if we forget to whitelist a param instead of silently ignoring it. misc models: convert to strong params. artist commentaries: convert to strong params. * Disallow changing or setting post_id to a nonexistent post. artists: convert to strong params. * Disallow setting `is_banned` in create/update actions. Changing it this way instead of with the ban/unban actions would leave the artist in a partially banned state. bans: convert to strong params. * Disallow changing the user_id after the ban has been created. comments: convert to strong params. favorite groups: convert to strong params. news updates: convert to strong params. post appeals: convert to strong params. post flags: convert to strong params. * Disallow users from setting the `is_deleted` / `is_resolved` flags. ip bans: convert to strong params. user feedbacks: convert to strong params. * Disallow users from setting `disable_dmail_notification` when creating feedbacks. * Disallow changing the user_id after the feedback has been created. notes: convert to strong params. wiki pages: convert to strong params. * Also fix non-Builders being able to delete wiki pages. saved searches: convert to strong params. pools: convert to strong params. * Disallow setting `post_count` or `is_deleted` in create/update actions. janitor trials: convert to strong params. post disapprovals: convert to strong params. * Factor out quick-mod bar to shared partial. * Fix quick-mod bar to use `Post#is_approvable?` to determine visibility of Approve button. dmail filters: convert to strong params. password resets: convert to strong params. user name change requests: convert to strong params. posts: convert to strong params. users: convert to strong params. * Disallow setting password_hash, last_logged_in_at, last_forum_read_at, has_mail, and dmail_filter_attributes[user_id]. * Remove initialize_default_image_size (dead code). uploads: convert to strong params. * Remove `initialize_status` because status already defaults to pending in the database. tag aliases/implications: convert to strong params. tags: convert to strong params. forum posts: convert to strong params. * Disallow changing the topic_id after creating the post. * Disallow setting is_deleted (destroy/undelete actions should be used instead). * Remove is_sticky / is_locked (nonexistent attributes). forum topics: convert to strong params. * merges https://github.com/evazion/danbooru/tree/wip-rails-5.1 * lock pg gem to 0.21 (1.0.0 is incompatible with rails 5.1.4) * switch to factorybot and change all references Co-authored-by: r888888888 <r888888888@gmail.com> Co-authored-by: evazion <noizave@gmail.com> add diffs
2018-04-02 13:51:26 -04:00
nokogiri (>= 1.6)
rails-html-sanitizer (1.6.0)
loofah (~> 2.21)
nokogiri (~> 1.14)
2023-12-03 10:21:30 -05:00
railties (7.0.8)
actionpack (= 7.0.8)
activesupport (= 7.0.8)
Raise error on unpermitted params. Fail loudly if we forget to whitelist a param instead of silently ignoring it. misc models: convert to strong params. artist commentaries: convert to strong params. * Disallow changing or setting post_id to a nonexistent post. artists: convert to strong params. * Disallow setting `is_banned` in create/update actions. Changing it this way instead of with the ban/unban actions would leave the artist in a partially banned state. bans: convert to strong params. * Disallow changing the user_id after the ban has been created. comments: convert to strong params. favorite groups: convert to strong params. news updates: convert to strong params. post appeals: convert to strong params. post flags: convert to strong params. * Disallow users from setting the `is_deleted` / `is_resolved` flags. ip bans: convert to strong params. user feedbacks: convert to strong params. * Disallow users from setting `disable_dmail_notification` when creating feedbacks. * Disallow changing the user_id after the feedback has been created. notes: convert to strong params. wiki pages: convert to strong params. * Also fix non-Builders being able to delete wiki pages. saved searches: convert to strong params. pools: convert to strong params. * Disallow setting `post_count` or `is_deleted` in create/update actions. janitor trials: convert to strong params. post disapprovals: convert to strong params. * Factor out quick-mod bar to shared partial. * Fix quick-mod bar to use `Post#is_approvable?` to determine visibility of Approve button. dmail filters: convert to strong params. password resets: convert to strong params. user name change requests: convert to strong params. posts: convert to strong params. users: convert to strong params. * Disallow setting password_hash, last_logged_in_at, last_forum_read_at, has_mail, and dmail_filter_attributes[user_id]. * Remove initialize_default_image_size (dead code). uploads: convert to strong params. * Remove `initialize_status` because status already defaults to pending in the database. tag aliases/implications: convert to strong params. tags: convert to strong params. forum posts: convert to strong params. * Disallow changing the topic_id after creating the post. * Disallow setting is_deleted (destroy/undelete actions should be used instead). * Remove is_sticky / is_locked (nonexistent attributes). forum topics: convert to strong params. * merges https://github.com/evazion/danbooru/tree/wip-rails-5.1 * lock pg gem to 0.21 (1.0.0 is incompatible with rails 5.1.4) * switch to factorybot and change all references Co-authored-by: r888888888 <r888888888@gmail.com> Co-authored-by: evazion <noizave@gmail.com> add diffs
2018-04-02 13:51:26 -04:00
method_source
2022-04-28 10:57:55 -04:00
rake (>= 12.2)
thor (~> 1.0)
2022-10-10 07:22:35 -04:00
zeitwerk (~> 2.5)
rainbow (3.1.1)
raindrops (0.20.1)
2023-12-03 10:21:30 -05:00
rake (13.1.0)
2022-10-10 07:22:35 -04:00
rb-fsevent (0.11.2)
rb-inotify (0.10.1)
2019-08-10 08:02:15 -04:00
ffi (~> 1.0)
rdoc (6.6.2)
psych (>= 4.0.0)
2023-12-03 10:21:30 -05:00
recaptcha (5.16.0)
redis (5.0.8)
redis-client (>= 0.17.0)
2024-01-25 15:28:28 -05:00
redis-client (0.19.1)
connection_pool
2024-01-25 15:28:28 -05:00
regexp_parser (2.9.0)
reline (0.4.2)
io-console (~> 0.5)
2022-10-10 07:22:35 -04:00
request_store (1.5.1)
2019-04-13 02:03:51 -04:00
rack (>= 1.4)
2023-12-03 10:21:30 -05:00
responders (3.1.1)
actionpack (>= 5.2)
railties (>= 5.2)
2021-04-02 23:29:38 -04:00
rest-client (2.1.0)
http-accept (>= 1.7.0, < 2.0)
2019-09-13 15:46:44 -04:00
http-cookie (>= 1.0.2, < 2.0)
mime-types (>= 1.16, < 4.0)
netrc (~> 0.8)
2019-08-10 08:02:15 -04:00
retriable (3.1.2)
rexml (3.2.6)
2023-12-03 09:36:37 -05:00
rubocop (1.58.0)
json (~> 2.3)
language_server-protocol (>= 3.17.0)
parallel (~> 1.10)
2023-12-03 09:36:37 -05:00
parser (>= 3.2.2.4)
rainbow (>= 2.2.2, < 4.0)
regexp_parser (>= 1.8, < 3.0)
rexml (>= 3.2.5, < 4.0)
2023-12-03 09:36:37 -05:00
rubocop-ast (>= 1.30.0, < 2.0)
ruby-progressbar (~> 1.7)
2023-02-22 14:18:47 -05:00
unicode-display_width (>= 2.4.0, < 3.0)
2023-12-03 09:36:37 -05:00
rubocop-ast (1.30.0)
2023-02-22 14:18:47 -05:00
parser (>= 3.2.1.0)
rubocop-erb (0.3.0)
2023-02-23 07:22:26 -05:00
better_html
rubocop (~> 1.45)
2023-12-03 09:36:37 -05:00
rubocop-rails (2.22.2)
activesupport (>= 4.2.0)
rack (>= 1.1)
rubocop (>= 1.33.0, < 2.0)
2023-12-03 09:36:37 -05:00
rubocop-ast (>= 1.30.0, < 2.0)
ruby-lsp (0.13.3)
language_server-protocol (~> 3.17.0)
prism (>= 0.19.0, < 0.20)
sorbet-runtime (>= 0.5.5685)
ruby-lsp-rails (0.2.8)
actionpack (>= 6.0)
activerecord (>= 6.0)
railties (>= 6.0)
ruby-lsp (>= 0.13.0, < 0.14.0)
sorbet-runtime (>= 0.5.9897)
ruby-progressbar (1.13.0)
2023-12-03 10:21:30 -05:00
ruby-vips (2.2.0)
2021-04-02 23:29:38 -04:00
ffi (~> 1.12)
2021-08-12 10:16:18 -04:00
ruby2_keywords (0.0.5)
2023-10-15 07:08:28 -04:00
rugged (1.7.1)
2021-04-02 23:29:38 -04:00
semantic_range (3.0.0)
2020-06-24 16:25:51 -04:00
shoulda-context (2.0.0)
2024-01-25 15:28:28 -05:00
shoulda-matchers (6.1.0)
2021-08-12 10:16:18 -04:00
activesupport (>= 5.2.0)
2024-01-25 15:28:28 -05:00
sidekiq (7.2.1)
concurrent-ruby (< 2)
connection_pool (>= 2.3.0)
rack (>= 2.2.4)
2024-01-25 15:28:28 -05:00
redis-client (>= 0.19.0)
sidekiq-unique-jobs (8.0.6)
concurrent-ruby (~> 1.0, >= 1.0.5)
sidekiq (>= 7.0.0, < 8.0.0)
thor (>= 1.0, < 3.0)
2023-12-03 10:21:30 -05:00
simple_form (5.3.0)
2021-02-18 16:08:38 -05:00
actionpack (>= 5.2)
activemodel (>= 5.2)
2023-02-23 07:22:26 -05:00
smart_properties (1.17.0)
sorbet-runtime (0.5.11188)
2018-01-20 18:47:56 -05:00
streamio-ffmpeg (3.0.2)
multi_json (~> 1.8)
stringio (3.1.0)
2023-12-03 10:21:30 -05:00
thor (1.3.0)
timeout (0.4.1)
tzinfo (2.0.6)
concurrent-ruby (~> 1.0)
2023-12-03 09:36:37 -05:00
unicode-display_width (2.5.0)
2021-12-29 13:08:15 -05:00
unicorn (6.1.0)
2013-04-16 01:17:09 -04:00
kgio (~> 2.6)
raindrops (~> 0.7)
2021-08-12 10:16:18 -04:00
unicorn-worker-killer (0.4.5)
2016-11-07 06:24:34 -05:00
get_process_mem (~> 0)
2021-08-12 10:16:18 -04:00
unicorn (>= 4, < 7)
2024-01-25 15:28:28 -05:00
uri (0.13.0)
webmock (3.19.1)
2021-08-12 10:16:18 -04:00
addressable (>= 2.8.0)
2017-06-29 19:05:01 -04:00
crack (>= 0.3.2)
2019-08-10 08:02:15 -04:00
hashdiff (>= 0.4.0, < 2.0.0)
2021-12-29 13:08:15 -05:00
webpacker (6.0.0.rc.6)
2020-04-08 12:40:01 -04:00
activesupport (>= 5.2)
2018-07-06 19:41:08 -04:00
rack-proxy (>= 0.6.1)
2020-04-08 12:40:01 -04:00
railties (>= 5.2)
semantic_range (>= 2.3.0)
websocket-driver (0.7.6)
Raise error on unpermitted params. Fail loudly if we forget to whitelist a param instead of silently ignoring it. misc models: convert to strong params. artist commentaries: convert to strong params. * Disallow changing or setting post_id to a nonexistent post. artists: convert to strong params. * Disallow setting `is_banned` in create/update actions. Changing it this way instead of with the ban/unban actions would leave the artist in a partially banned state. bans: convert to strong params. * Disallow changing the user_id after the ban has been created. comments: convert to strong params. favorite groups: convert to strong params. news updates: convert to strong params. post appeals: convert to strong params. post flags: convert to strong params. * Disallow users from setting the `is_deleted` / `is_resolved` flags. ip bans: convert to strong params. user feedbacks: convert to strong params. * Disallow users from setting `disable_dmail_notification` when creating feedbacks. * Disallow changing the user_id after the feedback has been created. notes: convert to strong params. wiki pages: convert to strong params. * Also fix non-Builders being able to delete wiki pages. saved searches: convert to strong params. pools: convert to strong params. * Disallow setting `post_count` or `is_deleted` in create/update actions. janitor trials: convert to strong params. post disapprovals: convert to strong params. * Factor out quick-mod bar to shared partial. * Fix quick-mod bar to use `Post#is_approvable?` to determine visibility of Approve button. dmail filters: convert to strong params. password resets: convert to strong params. user name change requests: convert to strong params. posts: convert to strong params. users: convert to strong params. * Disallow setting password_hash, last_logged_in_at, last_forum_read_at, has_mail, and dmail_filter_attributes[user_id]. * Remove initialize_default_image_size (dead code). uploads: convert to strong params. * Remove `initialize_status` because status already defaults to pending in the database. tag aliases/implications: convert to strong params. tags: convert to strong params. forum posts: convert to strong params. * Disallow changing the topic_id after creating the post. * Disallow setting is_deleted (destroy/undelete actions should be used instead). * Remove is_sticky / is_locked (nonexistent attributes). forum topics: convert to strong params. * merges https://github.com/evazion/danbooru/tree/wip-rails-5.1 * lock pg gem to 0.21 (1.0.0 is incompatible with rails 5.1.4) * switch to factorybot and change all references Co-authored-by: r888888888 <r888888888@gmail.com> Co-authored-by: evazion <noizave@gmail.com> add diffs
2018-04-02 13:51:26 -04:00
websocket-extensions (>= 0.1.0)
2020-06-13 00:52:16 -04:00
websocket-extensions (0.1.5)
2023-12-03 10:21:30 -05:00
zeitwerk (2.6.12)
2010-08-18 18:44:18 -04:00
PLATFORMS
ruby
DEPENDENCIES
2020-01-02 13:24:33 -05:00
active_model_serializers (~> 0.10.0)
addressable
Raise error on unpermitted params. Fail loudly if we forget to whitelist a param instead of silently ignoring it. misc models: convert to strong params. artist commentaries: convert to strong params. * Disallow changing or setting post_id to a nonexistent post. artists: convert to strong params. * Disallow setting `is_banned` in create/update actions. Changing it this way instead of with the ban/unban actions would leave the artist in a partially banned state. bans: convert to strong params. * Disallow changing the user_id after the ban has been created. comments: convert to strong params. favorite groups: convert to strong params. news updates: convert to strong params. post appeals: convert to strong params. post flags: convert to strong params. * Disallow users from setting the `is_deleted` / `is_resolved` flags. ip bans: convert to strong params. user feedbacks: convert to strong params. * Disallow users from setting `disable_dmail_notification` when creating feedbacks. * Disallow changing the user_id after the feedback has been created. notes: convert to strong params. wiki pages: convert to strong params. * Also fix non-Builders being able to delete wiki pages. saved searches: convert to strong params. pools: convert to strong params. * Disallow setting `post_count` or `is_deleted` in create/update actions. janitor trials: convert to strong params. post disapprovals: convert to strong params. * Factor out quick-mod bar to shared partial. * Fix quick-mod bar to use `Post#is_approvable?` to determine visibility of Approve button. dmail filters: convert to strong params. password resets: convert to strong params. user name change requests: convert to strong params. posts: convert to strong params. users: convert to strong params. * Disallow setting password_hash, last_logged_in_at, last_forum_read_at, has_mail, and dmail_filter_attributes[user_id]. * Remove initialize_default_image_size (dead code). uploads: convert to strong params. * Remove `initialize_status` because status already defaults to pending in the database. tag aliases/implications: convert to strong params. tags: convert to strong params. forum posts: convert to strong params. * Disallow changing the topic_id after creating the post. * Disallow setting is_deleted (destroy/undelete actions should be used instead). * Remove is_sticky / is_locked (nonexistent attributes). forum topics: convert to strong params. * merges https://github.com/evazion/danbooru/tree/wip-rails-5.1 * lock pg gem to 0.21 (1.0.0 is incompatible with rails 5.1.4) * switch to factorybot and change all references Co-authored-by: r888888888 <r888888888@gmail.com> Co-authored-by: evazion <noizave@gmail.com> add diffs
2018-04-02 13:51:26 -04:00
bcrypt
2017-06-14 19:35:16 -04:00
bootsnap
dalli
debug
2023-10-15 07:08:28 -04:00
diffy
2017-01-21 02:13:51 -05:00
dotenv-rails
2019-04-13 02:03:51 -04:00
draper
2016-03-16 20:30:09 -04:00
dtext_rb!
factory_bot_rails
2017-06-23 00:20:04 -04:00
httparty
Raise error on unpermitted params. Fail loudly if we forget to whitelist a param instead of silently ignoring it. misc models: convert to strong params. artist commentaries: convert to strong params. * Disallow changing or setting post_id to a nonexistent post. artists: convert to strong params. * Disallow setting `is_banned` in create/update actions. Changing it this way instead of with the ban/unban actions would leave the artist in a partially banned state. bans: convert to strong params. * Disallow changing the user_id after the ban has been created. comments: convert to strong params. favorite groups: convert to strong params. news updates: convert to strong params. post appeals: convert to strong params. post flags: convert to strong params. * Disallow users from setting the `is_deleted` / `is_resolved` flags. ip bans: convert to strong params. user feedbacks: convert to strong params. * Disallow users from setting `disable_dmail_notification` when creating feedbacks. * Disallow changing the user_id after the feedback has been created. notes: convert to strong params. wiki pages: convert to strong params. * Also fix non-Builders being able to delete wiki pages. saved searches: convert to strong params. pools: convert to strong params. * Disallow setting `post_count` or `is_deleted` in create/update actions. janitor trials: convert to strong params. post disapprovals: convert to strong params. * Factor out quick-mod bar to shared partial. * Fix quick-mod bar to use `Post#is_approvable?` to determine visibility of Approve button. dmail filters: convert to strong params. password resets: convert to strong params. user name change requests: convert to strong params. posts: convert to strong params. users: convert to strong params. * Disallow setting password_hash, last_logged_in_at, last_forum_read_at, has_mail, and dmail_filter_attributes[user_id]. * Remove initialize_default_image_size (dead code). uploads: convert to strong params. * Remove `initialize_status` because status already defaults to pending in the database. tag aliases/implications: convert to strong params. tags: convert to strong params. forum posts: convert to strong params. * Disallow changing the topic_id after creating the post. * Disallow setting is_deleted (destroy/undelete actions should be used instead). * Remove is_sticky / is_locked (nonexistent attributes). forum topics: convert to strong params. * merges https://github.com/evazion/danbooru/tree/wip-rails-5.1 * lock pg gem to 0.21 (1.0.0 is incompatible with rails 5.1.4) * switch to factorybot and change all references Co-authored-by: r888888888 <r888888888@gmail.com> Co-authored-by: evazion <noizave@gmail.com> add diffs
2018-04-02 13:51:26 -04:00
listen
2019-09-13 15:46:44 -04:00
mailgun-ruby
marcel
2010-08-18 18:44:18 -04:00
mocha
2013-02-16 23:01:53 -05:00
newrelic_rpm
opensearch-ruby
Raise error on unpermitted params. Fail loudly if we forget to whitelist a param instead of silently ignoring it. misc models: convert to strong params. artist commentaries: convert to strong params. * Disallow changing or setting post_id to a nonexistent post. artists: convert to strong params. * Disallow setting `is_banned` in create/update actions. Changing it this way instead of with the ban/unban actions would leave the artist in a partially banned state. bans: convert to strong params. * Disallow changing the user_id after the ban has been created. comments: convert to strong params. favorite groups: convert to strong params. news updates: convert to strong params. post appeals: convert to strong params. post flags: convert to strong params. * Disallow users from setting the `is_deleted` / `is_resolved` flags. ip bans: convert to strong params. user feedbacks: convert to strong params. * Disallow users from setting `disable_dmail_notification` when creating feedbacks. * Disallow changing the user_id after the feedback has been created. notes: convert to strong params. wiki pages: convert to strong params. * Also fix non-Builders being able to delete wiki pages. saved searches: convert to strong params. pools: convert to strong params. * Disallow setting `post_count` or `is_deleted` in create/update actions. janitor trials: convert to strong params. post disapprovals: convert to strong params. * Factor out quick-mod bar to shared partial. * Fix quick-mod bar to use `Post#is_approvable?` to determine visibility of Approve button. dmail filters: convert to strong params. password resets: convert to strong params. user name change requests: convert to strong params. posts: convert to strong params. users: convert to strong params. * Disallow setting password_hash, last_logged_in_at, last_forum_read_at, has_mail, and dmail_filter_attributes[user_id]. * Remove initialize_default_image_size (dead code). uploads: convert to strong params. * Remove `initialize_status` because status already defaults to pending in the database. tag aliases/implications: convert to strong params. tags: convert to strong params. forum posts: convert to strong params. * Disallow changing the topic_id after creating the post. * Disallow setting is_deleted (destroy/undelete actions should be used instead). * Remove is_sticky / is_locked (nonexistent attributes). forum topics: convert to strong params. * merges https://github.com/evazion/danbooru/tree/wip-rails-5.1 * lock pg gem to 0.21 (1.0.0 is incompatible with rails 5.1.4) * switch to factorybot and change all references Co-authored-by: r888888888 <r888888888@gmail.com> Co-authored-by: evazion <noizave@gmail.com> add diffs
2018-04-02 13:51:26 -04:00
pg
puma
rails (~> 7.0.0)
2017-09-16 15:44:17 -04:00
recaptcha
2018-11-12 21:02:49 -05:00
redis
2019-04-30 07:46:40 -04:00
request_store
2015-08-19 14:23:29 -04:00
responders
retriable
rubocop
2023-02-23 07:22:26 -05:00
rubocop-erb
rubocop-rails
ruby-lsp
ruby-lsp-rails
ruby-vips
2023-10-15 07:08:28 -04:00
rugged
shoulda-context
shoulda-matchers
sidekiq (~> 7.0)
sidekiq-unique-jobs
2010-10-08 18:42:26 -04:00
simple_form
2014-07-01 17:34:50 -04:00
streamio-ffmpeg
2013-04-16 01:17:09 -04:00
unicorn
2016-11-07 06:24:34 -05:00
unicorn-worker-killer
2017-06-29 19:05:01 -04:00
webmock
2018-07-06 19:41:08 -04:00
webpacker (>= 4.0.x)
BUNDLED WITH
2.4.10