Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
uvlad7 committed Oct 10, 2023
1 parent c827d41 commit 85f6366
Showing 1 changed file with 13 additions and 14 deletions.
27 changes: 13 additions & 14 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,27 +1,26 @@
# frozen_string_literal: true

source "https://rubygems.org"
source 'https://rubygems.org'

# Specify your gem's dependencies in xml2json.gemspec
gemspec

gem "rake", "~> 13.0"
gem 'rake', '~> 13.0'

gem "rake-compiler"
gem "rb_sys", "~> 0.9.63"
gem 'rake-compiler'
gem 'rb_sys', '~> 0.9.63'

gem "rspec", "~> 3.0"
gem 'rspec', '~> 3.0'

gem "rubocop", "~> 1.21"
gem 'rubocop', '~> 1.21'

gem "yard-rustdoc"
gem 'yard-rustdoc'

gem "pry"
gem "pry-byebug"
gem "yard"
gem 'pry'
gem 'pry-byebug'
gem 'yard'
# # Cause I want to use rack adapter
gem "rack"
gem "rackup"
gem 'rack'
gem 'rackup'
# # Cause I want to use rack adapter with puma server
gem "puma"

gem 'puma'

0 comments on commit 85f6366

Please sign in to comment.