Skip to content

Commit

Permalink
drop the multi_json dependency, we're not using 1.8.7 anymore
Browse files Browse the repository at this point in the history
  • Loading branch information
whoward committed Feb 6, 2016
1 parent 5d0f44d commit 5b7d227
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions cadenza.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,4 @@ Gem::Specification.new do |s|

s.files = Dir.glob('lib/**/*.rb')
s.test_files = Dir.glob('test/**/*.rb')

s.add_dependency 'multi_json', '>= 1.3.0'
end
2 changes: 1 addition & 1 deletion lib/cadenza/cli/options.rb
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def initialize(*args)

def context_option(context)
context = File.read(context) if File.exist?(context)
@options[:context] = MultiJson.load(context)
@options[:context] = JSON.parse(context)
end

def add_load_path(path)
Expand Down

0 comments on commit 5b7d227

Please sign in to comment.