Sha256: 997e054507d6bc7ba9b8a20300a4e88ca904f8fd6b1d7dce727e5c1e54a57b4d

Contents?: true

Size: 1.2 KB

Versions: 1

Compression:

Stored size: 1.2 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 3. 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.rubyforge_project         = "haml-rails"
  s.required_rubygems_version = ">= 1.3.6"

  s.add_dependency "haml",          "~> 3.0.18"
  s.add_dependency "activesupport", "~> 3.0.0"
  s.add_dependency "actionpack",    "~> 3.0.0"
  s.add_dependency "railties",      "~> 3.0.0"

  s.add_development_dependency "rails",   "~> 3.0.0"
  s.add_development_dependency "bundler", "~> 1.0.0"

  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

1 entries across 1 versions & 1 rubygems

Version Path
haml-rails-0.3.1 haml-rails.gemspec