diff --git a/Gemfile b/Gemfile index e0bcd6f..e4d4247 100644 --- a/Gemfile +++ b/Gemfile @@ -67,6 +67,7 @@ gem "warning" group :cli, :development do gem "irb" gem "hanami-reloader", "~> 2.1.0.rc" + gem 'rubocop', require: false end group :cli, :development, :test do diff --git a/Gemfile.lock b/Gemfile.lock index 8a90718..220c0b5 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -61,7 +61,7 @@ GEM json (>= 2.0) xrpc (>= 0.0.4) builder (3.2.4) - capistrano (3.18.0) + capistrano (3.18.1) airbrussh (>= 1.0.0) i18n rake (>= 10.0.0) @@ -244,14 +244,14 @@ GEM httparty (0.21.0) mini_mime (>= 1.0.0) multi_xml (>= 0.5.2) - i18n (1.14.1) + i18n (1.14.4) concurrent-ruby (~> 1.0) ice_nine (0.11.2) image_processing (1.12.2) mini_magick (>= 4.9.5, < 5) ruby-vips (>= 2.0.17, < 3) io-console (0.7.2) - irb (1.11.2) + irb (1.12.0) rdoc reline (>= 0.4.2) json (2.7.1) @@ -275,7 +275,7 @@ GEM method_source (1.0.0) mime-types (3.5.2) mime-types-data (~> 3.2015) - mime-types-data (3.2024.0206) + mime-types-data (3.2024.0305) mini_magick (4.12.0) mini_mime (1.1.5) minitest (5.22.2) @@ -420,7 +420,7 @@ GEM diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-support (3.13.1) - rubocop (1.61.0) + rubocop (1.62.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -428,10 +428,10 @@ GEM rainbow (>= 2.2.2, < 4.0) regexp_parser (>= 1.8, < 3.0) rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.30.0, < 2.0) + rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (~> 1.7) unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.1) + rubocop-ast (1.31.2) parser (>= 3.3.0.4) rubocop-performance (1.20.2) rubocop (>= 1.48.1, < 2.0) @@ -463,10 +463,10 @@ GEM net-scp (>= 1.1.2) net-sftp (>= 2.1.2) net-ssh (>= 2.8.0) - standard (1.34.0) + standard (1.35.1) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.60) + rubocop (~> 1.62.0) standard-custom (~> 1.0.0) standard-performance (~> 1.3) standard-custom (1.0.2) @@ -567,6 +567,7 @@ DEPENDENCIES rexml rom-factory rom-sql + rubocop ruby-filemagic! ruby-readability sanitize diff --git a/public/assets/style.xslt b/public/assets/style.xslt index 99b07d2..747f918 100644 --- a/public/assets/style.xslt +++ b/public/assets/style.xslt @@ -55,6 +55,7 @@ + Published: diff --git a/slices/main/templates/feeds/statuses_rss.xml.builder b/slices/main/templates/feeds/statuses_rss.xml.builder index 505cb96..67ccec3 100644 --- a/slices/main/templates/feeds/statuses_rss.xml.builder +++ b/slices/main/templates/feeds/statuses_rss.xml.builder @@ -23,7 +23,7 @@ xml.channel do |channel| posts.each do |post| channel.item do |item| - item.title post.raw_content + item.title post.display_title item.description do |desc| desc.cdata! post.feed_content end