Sha256: 8ca906fa09c4207bf4a65a8c8f6e539590395062177ca9479f0b85efe3e15624

Contents?: true

Size: 1008 Bytes

Versions: 1

Compression:

Stored size: 1008 Bytes

Contents

# -*- encoding: utf-8 -*-
require File.expand_path('../lib/liquor/version', __FILE__)

Gem::Specification.new do |gem|
  gem.authors       = ["Ivan Evtukhovich"]
  gem.email         = ["evtuhovich@gmail.com"]
  gem.description   = %q{Liquor is a safe (not evaling) template language based on Liquid template language}
  gem.summary       = %q{Liquor is a safe (not evaling) template language based on Liquid template language. Safe means that templates cannot affect security of the server they are rendered on. So it is usable when you need to give an ability to edit templates to your users (HTML or email).}
  gem.homepage      = "https://github.com/evilmartians/liquor"

  gem.files         = `git ls-files`.split($\)
  gem.executables   = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
  gem.test_files    = gem.files.grep(%r{^(test|spec|features)/})
  gem.name          = "liquor"
  gem.require_paths = ["lib"]
  gem.version       = Liquor::VERSION

  gem.add_dependency 'rails', '~> 3.2.0'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
liquor-0.1.0 liquor.gemspec