Sha256: a6ca718ebbb5c10ef94ef7f8234278c6af8441783895f3e37671925cc492a123

Contents?: true

Size: 770 Bytes

Versions: 2

Compression:

Stored size: 770 Bytes

Contents

source 'https://rubygems.org'
gemspec

github = -> repo { "https://github.com/#{repo}" }
version = -> rs { -> vs { Gem::Requirement.new(rs) === Gem::Version.new(vs) } }
haml_version = ENV['HAML_VERSION'] ? "~> #{ENV['HAML_VERSION']}" : ">= 0"

gem 'haml', haml_version

case ENV['OPAL_VERSION']

when 'local'
  gem 'opal', path: '../opal'
  gem 'opal-sprockets', path: '../opal-sprockets'
  gem 'opal-rspec', path: '../opal-rspec'

when 'master'
  gem 'opal', git: github['opal/opal'], branch: :master
  gem 'opal-sprockets', git: github['opal/opal-sprockets']
  gem 'opal-rspec', git: github['opal/opal-rspec'], branch: 'master', submodules: true

when version['~> 1.0.0']
  gem 'opal-rspec', '~> 0.8.0.alpha1'

when version['~> 0.10.0']
  gem 'opal', '~> 0.10.5'

end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
opal-haml-0.5.1 Gemfile
opal-haml-0.5.0 Gemfile