forked from madadam/liquidizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
liquidizer.gemspec
28 lines (23 loc) · 1006 Bytes
/
liquidizer.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
require 'liquidizer/version'
Gem::Specification.new do |s|
s.name = 'liquidizer'
s.version = Liquidizer::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Adam Cigánek"]
s.email = 'adam.ciganek@gmail.com'
s.homepage = 'http://github.com/madadam/liquidizer'
s.summary = 'Support for Ruby on Rails views powered by Liquid and loaded from database'
s.description = <<END
WIth this gem, you can render your Ruby on Rails views with liquid templates that are loaded from database. This way, the look and feel of your site can be safely configured by it's users.
END
s.required_rubygems_version = ">= 1.3.7"
s.add_dependency 'actionpack', '~> 2.3.5'
s.add_dependency 'activerecord', '~> 2.3.5'
s.add_dependency 'liquid', '>= 2.0.0'
s.files = Dir.glob('{lib,bin}/**/*')
s.files << 'README.rdoc'
s.files << 'Rakefile'
end