-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #51 from digitalmoksha/bw-fix-console
Update bin/console to be able to run the gem
- Loading branch information
Showing
4 changed files
with
22 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,20 @@ | ||
#!/usr/bin/env ruby | ||
# frozen_string_literal: true | ||
|
||
# | ||
# This file was generated by Bundler. | ||
# | ||
# The application 'console' is installed as part of a gem, and | ||
# this file is here to facilitate running it. | ||
# | ||
require 'bundler/setup' | ||
require 'selma' | ||
require 'irb' | ||
|
||
ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../Gemfile", __dir__) | ||
puts <<~TEXT | ||
------------------- | ||
Example Usage: | ||
bundle_binstub = File.expand_path("bundle", __dir__) | ||
html = 'Test of the <strong>emergency</strong> <script>scripting</script> system' | ||
sanitizer = Selma::Sanitizer.new(Selma::Sanitizer::Config::DEFAULT) # or try RELAXED | ||
rewriter = Selma::Rewriter.new(sanitizer: sanitizer) | ||
rewriter.rewrite(html) | ||
------------------- | ||
if File.file?(bundle_binstub) | ||
if /This file was generated by Bundler/.match?(File.read(bundle_binstub, 300)) | ||
load(bundle_binstub) | ||
else | ||
abort("Your `bin/bundle` was not generated by Bundler, so this binstub cannot run. | ||
Replace `bin/bundle` by running `bundle binstubs bundler --force`, then run this command again.") | ||
end | ||
end | ||
TEXT | ||
|
||
require "rubygems" | ||
require "bundler/setup" | ||
|
||
load Gem.bin_path("selma", "console") | ||
IRB.start(__FILE__) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,8 @@ | ||
#!/usr/bin/env ruby | ||
# frozen_string_literal: true | ||
#!/usr/bin/env bash | ||
set -euo pipefail | ||
IFS=$'\n\t' | ||
set -vx | ||
|
||
# | ||
# This file was generated by Bundler. | ||
# | ||
# The application 'setup' is installed as part of a gem, and | ||
# this file is here to facilitate running it. | ||
# | ||
bundle install | ||
|
||
ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../Gemfile", __dir__) | ||
|
||
bundle_binstub = File.expand_path("bundle", __dir__) | ||
|
||
if File.file?(bundle_binstub) | ||
if /This file was generated by Bundler/.match?(File.read(bundle_binstub, 300)) | ||
load(bundle_binstub) | ||
else | ||
abort("Your `bin/bundle` was not generated by Bundler, so this binstub cannot run. | ||
Replace `bin/bundle` by running `bundle binstubs bundler --force`, then run this command again.") | ||
end | ||
end | ||
|
||
require "rubygems" | ||
require "bundler/setup" | ||
|
||
load Gem.bin_path("selma", "setup") | ||
# Do any other automated setup that you need to do here |