Skip to content

Commit

Permalink
Fix install error and update dependency.
Browse files Browse the repository at this point in the history
  • Loading branch information
nomoon committed Oct 4, 2018
1 parent 3a713c0 commit 347098f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion Rakefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# frozen_string_literal: true

require "bundler/gem_tasks"
begin
require "bundler/gem_tasks"
rescue LoadError
nil
end

require "thermite/tasks"
Thermite::Tasks.new(optional_rust_extension: true)
Expand Down
2 changes: 1 addition & 1 deletion sanscript.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Gem::Specification.new do |spec|
spec.required_ruby_version = "~> 2.3"

spec.add_development_dependency "benchmark-ips", "~> 2.7"
spec.add_development_dependency "bundler", "~> 1.13"
spec.add_development_dependency "bundler", "~> 1.16"
spec.add_development_dependency "coveralls", "~> 0.8"
spec.add_development_dependency "pry", "~> 0.10"
spec.add_development_dependency "rake", "~> 12"
Expand Down

0 comments on commit 347098f

Please sign in to comment.