Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use Gemfiles to manage dev/test dependencies + cleanup #1949

Merged
merged 8 commits into from
Sep 24, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove unnecessary sinatra-contrib dev deps
  • Loading branch information
dentarg committed Sep 16, 2023
commit 0a8ea4863aa4443a2276585943e59337780f6bcb
17 changes: 0 additions & 17 deletions sinatra-contrib/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,28 +9,16 @@ gem 'sinatra', path: '..'
gem 'rack-test', github: 'rack/rack-test'

group :development, :test do
platform :jruby do
gem 'json'
gem 'rdoc'
gem 'therubyrhino'
gem 'jar-dependencies', '= 0.4.1' # Gem::LoadError with jar-dependencies 0.4.2
end

platform :jruby, :ruby do
gem 'hamlit', '>= 3'
gem 'liquid'
# Use main until there's a slim release that can be used with Tilt 2.1.0
# https://github.com/slim-template/slim/pull/910
gem 'slim', github: 'slim-template/slim'
end

platform :ruby do
gem 'execjs', '>= 2.0.0'
gem 'redcarpet', '>= 3.5.1'
gem 'yajl-ruby'
end

gem 'multi_json'
end

rack_version = ENV['rack'].to_s
Expand All @@ -43,12 +31,7 @@ tilt_version = nil if tilt_version.empty? || (tilt_version == 'stable')
tilt_version = { github: 'jeremyevans/tilt' } if tilt_version == 'head'
gem 'tilt', tilt_version

gem 'asciidoctor'
gem 'builder'
gem 'erubi'
gem 'haml'
gem 'markaby'
gem 'nokogiri', '>= 1.13.6'
gem 'rake', '>= 12.3.3'
gem 'rspec', '~> 3'
gem 'sass-embedded', '~> 1.54'