Skip to content

Commit

Permalink
Get rid of concat (support ruby version < 2.4) (#3)
Browse files Browse the repository at this point in the history
Bump gem version
  • Loading branch information
vergilet authored Jul 19, 2019
1 parent ba5e916 commit 3adc3f9
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
repost (0.2.6)
repost (0.2.8)

GEM
remote: https://rubygems.org/
Expand Down Expand Up @@ -32,4 +32,4 @@ DEPENDENCIES
rspec (~> 3.0)

BUNDLED WITH
2.0.1
2.0.2
2 changes: 1 addition & 1 deletion lib/repost/senpai.rb
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def perform
else
form_body << submit_section
end
form_head.concat(compiled_body, form_footer)
form_head << compiled_body << form_footer
end

private
Expand Down
2 changes: 1 addition & 1 deletion lib/repost/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Repost
VERSION = "0.2.6"
VERSION = "0.2.8"
end
2 changes: 1 addition & 1 deletion repost.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
spec.email = ["[email protected]"]

spec.summary = %q{Gem implements Redirect using POST method}
spec.description = %q{Helps to make POST 'redirect', but actually builds <form> with method: :post under the hood}
spec.description = %q{Helps to make POST 'redirect', but actually builds [form] with method: :post under the hood}
spec.homepage = "https://vergilet.github.io/repost/"
spec.license = "MIT"

Expand Down

0 comments on commit 3adc3f9

Please sign in to comment.