File: Gemfile

package info (click to toggle)
ruby-html2haml 2.3.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 288 kB
  • sloc: ruby: 1,577; makefile: 6
file content (15 lines) | stat: -rw-r--r-- 323 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
source 'https://rubygems.org'

gemspec

gem 'nokogiri', RUBY_VERSION < '2.1' ? '~> 1.6.0' : '>= 1.7'

if RUBY_VERSION < '2.1'
  gem 'ruby_parser', '< 3.14'
elsif RUBY_VERSION < '2.3'
  gem 'ruby_parser', '< 3.18'
else
  gem 'ruby_parser', '>= 3.18'
end

gem 'sexp_processor', RUBY_VERSION < '2.1' ? '< 4.14.0' : '> 4.14.0'