forked from derrickreimer/condensation
-
Notifications
You must be signed in to change notification settings - Fork 3
/
condensation.gemspec
30 lines (25 loc) · 1.17 KB
/
condensation.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
29
30
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'condensation/version'
Gem::Specification.new do |spec|
spec.name = 'condensation'
spec.version = Condensation::VERSION
spec.authors = ['Derrick Reimer']
spec.licenses = ['MIT']
spec.email = ['[email protected]']
spec.description = 'A collection of handy extensions to the Liquid templating language'
spec.summary = 'Condensation is a collection of handy extensions to the Liquid templating language'
spec.homepage = 'https://github.com/djreimer/condensation'
spec.files = `git ls-files`.split("\n")
spec.executables = spec.files.grep(%r{^bin/}).map { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ['lib']
spec.add_development_dependency 'bundler'
spec.add_development_dependency 'rake'
spec.add_development_dependency 'timecop'
spec.add_development_dependency 'rubocop'
spec.add_dependency 'liquid', '~> 5.3.0'
spec.add_dependency 'tzinfo', '~> 1.1'
spec.add_dependency 'activesupport', '>= 3.0'
end