Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
localhots committed Mar 20, 2024
1 parent c297969 commit 2a640be
Show file tree
Hide file tree
Showing 5 changed files with 66 additions and 9 deletions.
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
coverage
.bundle
tmp
Gemfile.lock
.gem
*.swp
pkg/*
/vendor
9 changes: 8 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
source 'https://rubygems.org'

gemspec

group :test do
gem "debugger"
gem 'rspec'
end

group :development, :test do
gem 'rake', '~> 10.4.0'
gem 'pry'
gem 'awesome_print'
end
54 changes: 54 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
PATH
remote: .
specs:
musicbrainz (0.7.7)
faraday
nokogiri

GEM
remote: https://rubygems.org/
specs:
awesome_print (1.9.2)
coderay (1.1.3)
diff-lcs (1.5.1)
faraday (2.9.0)
faraday-net_http (>= 2.0, < 3.2)
faraday-net_http (3.1.0)
net-http
method_source (1.0.0)
net-http (0.4.1)
uri
nokogiri (1.16.3-x86_64-linux)
racc (~> 1.4)
pry (0.14.2)
coderay (~> 1.1)
method_source (~> 1.0)
racc (1.7.3)
rake (10.4.2)
rspec (3.13.0)
rspec-core (~> 3.13.0)
rspec-expectations (~> 3.13.0)
rspec-mocks (~> 3.13.0)
rspec-core (3.13.0)
rspec-support (~> 3.13.0)
rspec-expectations (3.13.0)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.13.0)
rspec-mocks (3.13.0)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.13.0)
rspec-support (3.13.1)
uri (0.13.0)

PLATFORMS
x86_64-linux

DEPENDENCIES
awesome_print
musicbrainz!
pry
rake (~> 10.4.0)
rspec

BUNDLED WITH
2.3.26
8 changes: 2 additions & 6 deletions musicbrainz.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,6 @@ Gem::Specification.new do |gem|
gem.version = MusicBrainz::VERSION
gem.license = "MIT"

gem.add_dependency('faraday')
gem.add_dependency('nokogiri')
gem.add_development_dependency('rspec')
gem.add_development_dependency('awesome_print')
gem.add_development_dependency('rake', '~> 10.4.0')
gem.add_development_dependency('pry')
gem.add_runtime_dependency('faraday')
gem.add_runtime_dependency('nokogiri')
end
1 change: 1 addition & 0 deletions spec/spec_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
require "bundler/setup"
require "musicbrainz"
require "pry"
require "awesome_print"

RSpec.configure do |c|
c.order = 'random'
Expand Down

0 comments on commit 2a640be

Please sign in to comment.