Skip to content

Commit

Permalink
Merge pull request #51 from digitalmoksha/bw-fix-console
Browse files Browse the repository at this point in the history
Update bin/console to be able to run the gem
  • Loading branch information
gjtorikian authored Jun 4, 2024
2 parents 92af3ed + 6b200c8 commit b71ad75
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 46 deletions.
2 changes: 2 additions & 0 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,5 @@ require "rubygems/package_task"
gem_path = Gem::PackageTask.new(SELMA_SPEC).define
desc "Package the Ruby gem"
task "package" => [gem_path]

task default: [:test, :rubocop]
33 changes: 13 additions & 20 deletions bin/console
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__)
2 changes: 1 addition & 1 deletion bin/rake
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../Gemfile", __dir__)
bundle_binstub = File.expand_path("bundle", __dir__)

if File.file?(bundle_binstub)
if File.read(bundle_binstub, 300) =~ /This file was generated by Bundler/
if File.read(bundle_binstub, 300).include?("This file was generated by Bundler")
load(bundle_binstub)
else
abort("Your `bin/bundle` was not generated by Bundler, so this binstub cannot run.
Expand Down
31 changes: 6 additions & 25 deletions bin/setup
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

0 comments on commit b71ad75

Please sign in to comment.