Permalink
Switch branches/tags
Nothing to show
Commits on Aug 22, 2018
  1. fix exception when no user is logged in

    pushcx committed Aug 22, 2018
    Odd production exceptions this morning from story_params that @user was nil
    when it checked @user.is_moderator. I think a user was scripting the story
    submission form or cleared cookies after opening it. I'm deliberately not
    adding the obvious nil check to story_params because non-users shouldn't be
    submitting story data; I want the exception that the before_action is missing.
Commits on Aug 21, 2018
  1. bump dependencies

    pushcx committed Aug 21, 2018
    PR #533
  2. turn on belongs_to_required_by_default

    pushcx committed Aug 21, 2018
    Close #508
Commits on Aug 16, 2018
  1. bump public_suffix

    thomasdziedzic committed Aug 16, 2018
  2. bump factory_bot_rails

    thomasdziedzic committed Aug 16, 2018
    also fix deprecations:
    
    ```
    To automatically update from static attributes to dynamic ones,
    install rubocop-rspec and run:
    
    rubocop \
      --require rubocop-rspec \
      --only FactoryBot/AttributeDefinedStatically \
      --auto-correct
    ```
  3. bump bullet

    thomasdziedzic committed Aug 16, 2018
Commits on Aug 15, 2018
  1. bump rubocop

    thomasdziedzic committed Aug 15, 2018
  2. bump capybara

    thomasdziedzic committed Aug 15, 2018
  3. bump unicorn

    thomasdziedzic committed Aug 15, 2018
  4. bump uglifier

    thomasdziedzic committed Aug 15, 2018
  5. bump jquery-rails

    thomasdziedzic committed Aug 15, 2018
  6. bump faker

    thomasdziedzic committed Aug 15, 2018
  7. bump commonmarker

    thomasdziedzic committed Aug 15, 2018
  8. bump bcrypt

    thomasdziedzic committed Aug 15, 2018
  9. bump rspec-rails

    thomasdziedzic committed Aug 15, 2018
  10. fix count of story results

    pushcx committed Aug 15, 2018
  11. bump rails to 5.2.1

    thomasdziedzic authored and pushcx committed Aug 15, 2018
  12. finish rails 5.2 migration

    thomasdziedzic authored and pushcx committed Aug 14, 2018
  13. remove unneeded column from query

    thomasdziedzic authored and pushcx committed Aug 15, 2018
    Fixes #529
  14. unpin mysql2 and update

    pushcx committed Aug 15, 2018
    I can't see a reason for us to pin a specific version of this gem.
    
    Closes #532
Commits on Aug 14, 2018
  1. rubocop

    pushcx committed Aug 14, 2018
  2. guideline hint when title has separator

    pushcx committed Aug 14, 2018
    Closes #523 and (hopefully) eliminates a chore for me.
  3. enable default_protect_from_forgery and use_authenticated_message_enc…

    thomasdziedzic-pd authored and pushcx committed Aug 14, 2018
    …ryption
    
    Part of the Rails 5.2 update. PR #516
Commits on Aug 8, 2018
  1. modlog username changes

    pushcx committed Aug 8, 2018
  2. make comment link bigger on mobile

    pushcx committed Aug 8, 2018
    Close #524
Commits on Aug 6, 2018
  1. fix bounds on whitespace reduction

    pushcx committed Aug 6, 2018
    The story_cache for Story i9u0aw has a line with 72 spaces. Subtracting that
    from the line length of 72, that's 0, so the gsub regexp becomes /(.{1,0})/
    and throws an exception.
Commits on Aug 1, 2018
  1. generate sitemaps

    pushcx committed Aug 1, 2018
    Google's indexing of the site is very spotty, and this seems a lot easier than
    improving our builtin search engine.
Commits on Jul 31, 2018
  1. prohibit graphic codepoints

    pushcx committed Jul 31, 2018
Commits on Jul 29, 2018
  1. Move tag description on top tagged pages to above stories

    pushcx committed Jul 29, 2018
    It's easy to miss up in the header.
Commits on Jul 25, 2018
  1. notes: fix boolean field

    pushcx committed Jul 25, 2018