Skip to content

Commit

Permalink
Fix ruby 3.x incompatibilities, fix file permissions
Browse files Browse the repository at this point in the history
  • Loading branch information
kyle-query committed Sep 13, 2023
1 parent cb66ff6 commit c3f4008
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,4 @@ DEPENDENCIES
yard (~> 0.9.20)

BUNDLED WITH
1.17.3
2.4.19
8 changes: 4 additions & 4 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ task :default => :spec
require "rspec/core/rake_task"
RSpec::Core::RakeTask.new do |t|
t.verbose = false
t.rspec_opts = %w(-w -rspec_helper)
t.rspec_opts = "-w -rspec_helper"

if ENV.include?("CI") or ENV.include?("TRAVIS")
t.rspec_opts += %w(--format progress)
if ENV.include?("CI")
t.rspec_opts += " --format progress"
else
t.rspec_opts += %w(--format documentation)
t.rspec_opts += " --format documentation"
end
end

Expand Down
Empty file modified examples/generate.rb
100755 → 100644
Empty file.
Empty file modified examples/tokenizer.rb
100755 → 100644
Empty file.
Empty file modified notes/output.rb
100755 → 100644
Empty file.
1 change: 0 additions & 1 deletion stupidedi.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ Gem::Specification.new do |s|
"bin/*",
"lib/**/*",
"doc/**/*.md"].map {|glob| Dir[glob] }.flatten
s.has_rdoc = false
s.bindir = "bin"
s.executables = ["edi-pp", "edi-ed"]
s.require_path = "lib"
Expand Down

0 comments on commit c3f4008

Please sign in to comment.