Sha256: f8ff26ef5ccd70b0be774a8926412c222ab7597d18cfc662d928bf44d0330e16

Contents?: true

Size: 938 Bytes

Versions: 1

Compression:

Stored size: 938 Bytes

Contents

# -*- encoding: utf-8 -*-
$LOAD_PATH << File.expand_path('../lib', __FILE__)
require 'opal/haml/version'

Gem::Specification.new do |s|
  s.name         = 'opal-haml'
  s.version      = Opal::Haml::VERSION
  s.author       = 'Adam Beynon'
  s.email        = 'adam@adambeynon.com'
  s.homepage     = 'https://github.com/opal/opal-haml#readme'
  s.summary      = 'Run Haml templates client-side with Opal'
  s.description  = 'Run Haml templates client-side with Opal.'
  s.license      = 'MIT'

  s.files          = `git ls-files`.split("\n")
  s.executables    = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
  s.test_files     = `git ls-files -- {test,spec,features}/*`.split("\n")
  s.require_paths  = ['lib']

  s.add_dependency 'opal', ['>= 0.10', '< 2']
  s.add_dependency 'opal-sprockets', '~> 0.4.1'
  s.add_dependency 'haml'

  s.add_development_dependency 'opal-rspec'
  s.add_development_dependency 'rake'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
opal-haml-0.4.6 opal-haml.gemspec