Sha256: 85a0e07765965f661e5ff48647db3998447f5567235e562b05bbb9bc6a71cd0e

Contents?: true

Size: 1.38 KB

Versions: 5

Compression:

Stored size: 1.38 KB

Contents

# -*- encoding: utf-8 -*-
require File.expand_path("../lib/haml-rails/version", __FILE__)

Gem::Specification.new do |s|
  s.name        = "haml-rails"
  s.version     = Haml::Rails::VERSION
  s.platform    = Gem::Platform::RUBY
  s.authors     = ["André Arko"]
  s.email       = ["andre@arko.net"]
  s.homepage    = "http://github.com/indirect/haml-rails"
  s.summary     = "let your Gemfile do the configuring"
  s.description = "Haml-rails provides Haml generators for Rails 4. It also enables Haml as the templating engine for you, so you don't have to screw around in your own application.rb when your Gemfile already clearly indicated what templating engine you have installed. Hurrah."
  s.licenses    = ["MIT"]

  s.rubyforge_project         = "haml-rails"
  s.required_rubygems_version = ">= 1.3.6"

  s.add_dependency "haml",          [">= 3.1", "< 5.0"]
  s.add_dependency "activesupport", [">= 4.0.1"]
  s.add_dependency "actionpack",    [">= 4.0.1"]
  s.add_dependency "railties",      [">= 4.0.1"]
  s.add_dependency "html2haml",     [">= 1.0.1"]

  s.add_development_dependency "rails",   [">= 4.0.1"]
  s.add_development_dependency "bundler", "~> 1.2"
  s.add_development_dependency "rake"
  s.add_development_dependency 'appraisal', '>= 0.3.8'

  s.files        = `git ls-files`.split("\n")
  s.executables  = `git ls-files`.split("\n").select{|f| f =~ /^bin/}
  s.require_path = 'lib'
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
haml-rails-0.8.2 haml-rails.gemspec
haml-rails-0.8.1 haml-rails.gemspec
haml-rails-0.8.0 haml-rails.gemspec
haml-rails-0.7.0 haml-rails.gemspec
haml-rails-0.6.0 haml-rails.gemspec