Skip to content

Commit

Permalink
Gemfile: Remove support for 1.9
Browse files Browse the repository at this point in the history
  • Loading branch information
judofyr committed Jul 22, 2022
1 parent 5ece643 commit 0814563
Showing 1 changed file with 11 additions and 15 deletions.
26 changes: 11 additions & 15 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,9 @@ group :development do
gem 'ronn', '~> 0.7.3'
end

can_execjs = (RUBY_VERSION >= '1.9.3')

group :primary do
gem 'builder'
gem 'haml', '>= 4' if RUBY_VERSION >= '2.0.0'
gem 'haml', '>= 4'
gem 'erubis'
gem 'markaby'

Expand All @@ -27,17 +25,15 @@ group :primary do
gem 'sass-embedded'
end

if can_execjs
gem 'less'
gem 'coffee-script'
gem 'livescript'
gem 'babel-transpiler'
gem 'typescript-node'
end
gem 'less'
gem 'coffee-script'
gem 'livescript'
gem 'babel-transpiler'
gem 'typescript-node'
end

platform :mri do
gem 'duktape', '~> 1.3.0.6' if can_execjs
gem 'duktape', '~> 1.3.0.6'
end

group :secondary do
Expand All @@ -55,17 +51,17 @@ group :secondary do
gem 'pdf-reader', '~> 1.3.3'
end

gem 'nokogiri' if RUBY_VERSION > '1.9.2'
gem 'nokogiri'

platform :ruby do
gem 'wikicloth'
gem 'rinku' # dependency for wikicloth for handling links

gem 'yajl-ruby'
gem 'redcarpet' if RUBY_VERSION > '1.8.7'
gem 'rdiscount', '>= 2.1.6' if RUBY_VERSION != '1.9.2'
gem 'redcarpet'
gem 'rdiscount', '>= 2.1.6'
gem 'RedCloth'
gem 'commonmarker' if RUBY_VERSION > '1.9.3'
gem 'commonmarker'
end

platform :mri do
Expand Down

0 comments on commit 0814563

Please sign in to comment.