-
Notifications
You must be signed in to change notification settings - Fork 19
/
tumblargh.gemspec
27 lines (22 loc) · 1001 Bytes
/
tumblargh.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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/tumblargh/version', __FILE__)
Gem::Specification.new do |s|
s.name = 'tumblargh'
s.version = Tumblargh::VERSION
s.license = 'MIT'
s.summary = 'Groan-less Tumblr theme development.'
s.description = "Tumblargh aims to reduce suffering involved with building a theme by offering a way to fully develop, lint and test Tumblr themes locally, with real posts from any existing Tumblog."
s.authors = ['Jason Webster']
s.email = '[email protected]'
s.homepage = 'http://github.com/jasonwebster/tumblargh'
s.files = `git ls-files`.split("\n")
s.require_paths = ['lib']
s.add_dependency 'activesupport', '>= 3.1'
s.add_dependency 'api_cache'
s.add_dependency 'nokogiri'
s.add_dependency 'treetop'
s.add_development_dependency 'autotest-standalone'
s.add_development_dependency 'rake'
s.add_development_dependency 'rspec'
s.add_development_dependency 'simplecov'
end