eBooru/Gemfile.lock

432 lines
9.9 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:
2024-04-28 05:07:10 -04:00
actioncable (7.1.3.2)
actionpack (= 7.1.3.2)
activesupport (= 7.1.3.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
nio4r (~> 2.0)
2018-04-25 17:35:52 -04:00
websocket-driver (>= 0.6.1)
zeitwerk (~> 2.6)
2024-04-28 05:07:10 -04:00
actionmailbox (7.1.3.2)
actionpack (= 7.1.3.2)
activejob (= 7.1.3.2)
activerecord (= 7.1.3.2)
activestorage (= 7.1.3.2)
activesupport (= 7.1.3.2)
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
2024-04-28 05:07:10 -04:00
actionmailer (7.1.3.2)
actionpack (= 7.1.3.2)
actionview (= 7.1.3.2)
activejob (= 7.1.3.2)
activesupport (= 7.1.3.2)
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
rails-dom-testing (~> 2.2)
2024-04-28 05:07:10 -04:00
actionpack (7.1.3.2)
actionview (= 7.1.3.2)
activesupport (= 7.1.3.2)
nokogiri (>= 1.8.5)
racc
rack (>= 2.2.4)
rack-session (>= 1.0.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
rack-test (>= 0.6.3)
rails-dom-testing (~> 2.2)
rails-html-sanitizer (~> 1.6)
2024-04-28 05:07:10 -04:00
actiontext (7.1.3.2)
actionpack (= 7.1.3.2)
activerecord (= 7.1.3.2)
activestorage (= 7.1.3.2)
activesupport (= 7.1.3.2)
2022-10-10 07:22:35 -04:00
globalid (>= 0.6.0)
2019-08-29 00:50:40 -04:00
nokogiri (>= 1.8.5)
2024-04-28 05:07:10 -04:00
actionview (7.1.3.2)
activesupport (= 7.1.3.2)
2014-04-14 17:32:01 -04:00
builder (~> 3.1)
erubi (~> 1.11)
rails-dom-testing (~> 2.2)
rails-html-sanitizer (~> 1.6)
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)
2024-04-28 05:07:10 -04:00
activejob (7.1.3.2)
activesupport (= 7.1.3.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
globalid (>= 0.3.6)
2024-04-28 05:07:10 -04:00
activemodel (7.1.3.2)
activesupport (= 7.1.3.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
activemodel-serializers-xml (1.0.2)
activemodel (> 5.x)
activesupport (> 5.x)
2014-04-14 17:32:01 -04:00
builder (~> 3.1)
2024-04-28 05:07:10 -04:00
activerecord (7.1.3.2)
activemodel (= 7.1.3.2)
activesupport (= 7.1.3.2)
timeout (>= 0.4.0)
2024-04-28 05:07:10 -04:00
activestorage (7.1.3.2)
actionpack (= 7.1.3.2)
activejob (= 7.1.3.2)
activerecord (= 7.1.3.2)
activesupport (= 7.1.3.2)
2022-04-28 10:57:55 -04:00
marcel (~> 1.0)
2024-04-28 05:07:10 -04:00
activesupport (7.1.3.2)
base64
bigdecimal
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)
connection_pool (>= 2.2.5)
drb
i18n (>= 1.6, < 2)
minitest (>= 5.1)
mutex_m
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)
base64 (0.2.0)
2023-12-03 10:21:30 -05:00
bcrypt (3.1.20)
2024-04-28 05:07:10 -04:00
better_html (2.1.1)
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-04-28 05:07:10 -04:00
bigdecimal (3.1.7)
bootsnap (1.18.3)
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)
2024-04-28 05:07:10 -04:00
crack (1.0.0)
bigdecimal
rexml
2020-02-26 05:02:37 -05:00
crass (1.0.6)
2024-04-28 05:07:10 -04:00
dalli (3.2.8)
datadog (2.0.0.beta2)
debase-ruby_core_source (= 3.3.1)
2024-04-28 05:07:10 -04:00
libdatadog (~> 7.0.0.1.0)
libddwaf (~> 1.14.0.0.0)
msgpack
2023-12-03 10:21:30 -05:00
date (3.3.4)
debase-ruby_core_source (3.3.1)
2024-04-28 05:07:10 -04:00
debug (1.9.2)
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)
2024-04-28 05:07:10 -04:00
dotenv (3.1.0)
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
2024-04-28 05:07:10 -04:00
drb (2.2.1)
erubi (1.12.0)
2024-04-28 05:07:10 -04:00
factory_bot (6.4.6)
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)
faker (3.4.2)
i18n (>= 1.8.11, < 2)
2024-01-25 15:28:28 -05:00
faraday (2.9.0)
faraday-net_http (>= 2.0, < 3.2)
faraday-follow_redirects (0.3.0)
faraday (>= 1, < 3)
2024-01-25 15:28:28 -05:00
faraday-net_http (3.1.0)
net-http
faraday-retry (2.2.1)
faraday (~> 2.0)
2023-12-03 10:21:30 -05:00
ffi (1.16.3)
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)
2024-04-28 05:07:10 -04:00
i18n (1.14.4)
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)
2024-04-28 05:07:10 -04:00
irb (1.12.0)
rdoc
reline (>= 0.4.2)
2024-04-28 05:07:10 -04:00
json (2.7.2)
2020-01-02 13:24:33 -05:00
jsonapi-renderer (0.2.2)
language_server-protocol (3.17.0.3)
2024-04-28 05:07:10 -04:00
libdatadog (7.0.0.1.0)
libddwaf (1.14.0.0.0)
ffi (~> 1.0)
2024-04-28 05:07:10 -04:00
listen (3.9.0)
2019-10-06 07:40:54 -04:00
rb-fsevent (~> 0.10, >= 0.10.3)
rb-inotify (~> 0.9, >= 0.9.10)
logger (1.6.0)
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-04-28 05:07:10 -04:00
mailgun-ruby (1.2.14)
2021-04-02 23:29:38 -04:00
rest-client (>= 2.0.2)
2024-04-28 05:07:10 -04:00
marcel (1.0.4)
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-04-28 05:07:10 -04:00
mime-types-data (3.2024.0305)
mini_mime (1.1.5)
2024-04-28 05:07:10 -04:00
mini_portile2 (2.8.6)
minitest (5.22.3)
mocha (2.2.0)
ruby2_keywords (>= 0.0.5)
msgpack (1.7.2)
2020-07-18 09:36:16 -04:00
multi_json (1.15.0)
mutex_m (0.2.0)
2024-01-25 15:28:28 -05:00
net-http (0.4.1)
uri
2024-04-28 05:07:10 -04:00
net-imap (0.4.10)
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-04-28 05:07:10 -04:00
net-smtp (0.5.0)
net-protocol
2019-09-13 15:46:44 -04:00
netrc (0.11.0)
2024-04-28 05:07:10 -04:00
nio4r (2.7.1)
nokogiri (1.16.4)
mini_portile2 (~> 2.8.2)
2021-01-17 15:47:35 -05:00
racc (~> 1.4)
2024-04-28 05:07:10 -04:00
opensearch-ruby (3.2.0)
faraday (>= 1.0, < 3)
multi_json (>= 1.0)
2024-01-25 15:28:28 -05:00
parallel (1.24.0)
2024-04-28 05:05:37 -04:00
parser (3.3.1.0)
ast (~> 2.4.1)
racc
2024-04-28 05:07:10 -04:00
pg (1.5.6)
pitchfork (0.13.0)
rack (>= 2.0)
raindrops (~> 0.7)
prism (0.30.0)
psych (5.1.2)
stringio
2024-04-28 05:07:10 -04:00
public_suffix (5.0.5)
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 (3.0.11)
2023-12-03 10:21:30 -05:00
rack-proxy (0.7.7)
2018-07-06 19:41:08 -04:00
rack
rack-session (2.0.0)
rack (>= 3.0.0)
rack-test (2.1.0)
2022-07-13 22:44:55 -04:00
rack (>= 1.3)
rackup (2.1.0)
rack (>= 3)
webrick (~> 1.8)
2024-04-28 05:07:10 -04:00
rails (7.1.3.2)
actioncable (= 7.1.3.2)
actionmailbox (= 7.1.3.2)
actionmailer (= 7.1.3.2)
actionpack (= 7.1.3.2)
actiontext (= 7.1.3.2)
actionview (= 7.1.3.2)
activejob (= 7.1.3.2)
activemodel (= 7.1.3.2)
activerecord (= 7.1.3.2)
activestorage (= 7.1.3.2)
activesupport (= 7.1.3.2)
bundler (>= 1.15.0)
2024-04-28 05:07:10 -04:00
railties (= 7.1.3.2)
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)
2024-04-28 05:07:10 -04:00
railties (7.1.3.2)
actionpack (= 7.1.3.2)
activesupport (= 7.1.3.2)
irb
rackup (>= 1.0.0)
2022-04-28 10:57:55 -04:00
rake (>= 12.2)
thor (~> 1.0, >= 1.2.2)
zeitwerk (~> 2.6)
rainbow (3.1.1)
raindrops (0.20.1)
2024-04-28 05:07:10 -04:00
rake (13.2.1)
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)
rbs (3.5.3)
logger
2024-04-28 05:07:10 -04:00
rdoc (6.6.3.1)
psych (>= 4.0.0)
2023-12-03 10:21:30 -05:00
recaptcha (5.16.0)
2024-04-28 05:07:10 -04:00
redis (5.2.0)
redis-client (>= 0.22.0)
redis-client (0.22.1)
connection_pool
2024-01-25 15:28:28 -05:00
regexp_parser (2.9.0)
2024-04-28 05:07:10 -04:00
reline (0.5.3)
io-console (~> 0.5)
request_store (1.7.0)
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)
rexml (3.3.6)
strscan
2024-04-28 05:07:10 -04:00
rubocop (1.63.4)
json (~> 2.3)
language_server-protocol (>= 3.17.0)
parallel (~> 1.10)
2024-04-28 05:05:37 -04:00
parser (>= 3.3.0.2)
rainbow (>= 2.2.2, < 4.0)
regexp_parser (>= 1.8, < 3.0)
rexml (>= 3.2.5, < 4.0)
2024-04-28 05:05:37 -04:00
rubocop-ast (>= 1.31.1, < 2.0)
ruby-progressbar (~> 1.7)
2023-02-22 14:18:47 -05:00
unicode-display_width (>= 2.4.0, < 3.0)
2024-04-28 05:05:37 -04:00
rubocop-ast (1.31.2)
parser (>= 3.3.0.4)
rubocop-erb (0.4.0)
2023-02-23 07:22:26 -05:00
better_html
rubocop (~> 1.45)
2024-04-28 05:05:37 -04:00
rubocop-rails (2.24.1)
activesupport (>= 4.2.0)
rack (>= 1.1)
rubocop (>= 1.33.0, < 2.0)
2024-04-28 05:05:37 -04:00
rubocop-ast (>= 1.31.1, < 2.0)
ruby-lsp (0.17.16)
language_server-protocol (~> 3.17.0)
prism (>= 0.29.0, < 0.31)
rbs (>= 3, < 4)
2024-04-04 16:09:12 -04:00
sorbet-runtime (>= 0.5.10782)
ruby-lsp-rails (0.3.13)
ruby-lsp (>= 0.17.12, < 0.18.0)
ruby-progressbar (1.13.0)
2024-04-28 05:07:10 -04:00
ruby-vips (2.2.1)
2021-04-02 23:29:38 -04:00
ffi (~> 1.12)
2021-08-12 10:16:18 -04:00
ruby2_keywords (0.0.5)
2024-04-28 05:07:10 -04:00
rugged (1.7.2)
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-04-28 05:07:10 -04:00
shoulda-matchers (6.2.0)
2021-08-12 10:16:18 -04:00
activesupport (>= 5.2.0)
2024-04-28 05:07:10 -04:00
sidekiq (7.2.4)
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)
2024-04-28 05:07:10 -04:00
sidekiq-unique-jobs (8.0.10)
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)
2024-04-28 05:07:10 -04:00
sorbet-runtime (0.5.11361)
2018-01-20 18:47:56 -05:00
streamio-ffmpeg (3.0.2)
multi_json (~> 1.8)
stringio (3.1.0)
strscan (3.1.0)
2024-04-28 05:07:10 -04:00
thor (1.3.1)
2023-12-03 10:21:30 -05:00
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)
2024-01-25 15:28:28 -05:00
uri (0.13.0)
2024-04-28 05:07:10 -04:00
webmock (3.23.0)
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)
webrick (1.8.1)
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)
2024-04-28 05:07:10 -04:00
zeitwerk (2.6.13)
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
datadog
debug
2023-10-15 07:08:28 -04:00
diffy
2024-02-17 06:46:44 -05:00
dotenv
2019-04-13 02:03:51 -04:00
draper
2016-03-16 20:30:09 -04:00
dtext_rb!
factory_bot_rails
faker
faraday
faraday-follow_redirects
faraday-retry
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
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
pitchfork
puma
rails (~> 7.1.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
rexml (>= 3.3.6)
rubocop
2023-02-23 07:22:26 -05:00
rubocop-erb
rubocop-rails
ruby-lsp
ruby-lsp-rails (~> 0.3.13)
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
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