Skip to content
This repository was archived by the owner on Mar 5, 2026. It is now read-only.

Commit b6ef58c

Browse files
author
Uchio KONDO
committed
Fix rash dependency
- rash depends on hashie <= 2, this is troublesome
1 parent 2eca659 commit b6ef58c

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

buff.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Gem::Specification.new do |gem|
2929
gem.add_runtime_dependency 'yajl-ruby'
3030
gem.add_runtime_dependency 'faraday_middleware'
3131
gem.add_runtime_dependency 'faraday'
32-
gem.add_runtime_dependency 'rash'
32+
gem.add_runtime_dependency 'hashie'
3333
gem.add_runtime_dependency 'rake'
3434
gem.add_runtime_dependency 'addressable'
3535
end

lib/buff.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
require "faraday_middleware"
22
require "faraday"
33
require "json"
4-
require "rash"
4+
require "hashie/mash"
55
require "addressable/uri"
66

77
require_relative "buff/version"

0 commit comments

Comments
 (0)