-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstaticpress.gemspec
40 lines (33 loc) · 1.41 KB
/
staticpress.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
31
32
33
34
35
36
37
38
39
40
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/staticpress/version', __FILE__)
# http://timelessrepo.com/use-the-gemspec
Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY
s.name = 'staticpress'
s.version = Staticpress::Version
s.license = 'MIT'
s.summary = 'Blog-centric static site builder'
s.description = <<-DESCRIPTION
Staticpress is a blog-focused static site generator. It uses Tilt for rendering nearly any template you can think of and come with a built-in Rack server for easy development previews.
DESCRIPTION
s.authors = 'Raving Genius'
s.email = '[email protected]'
s.homepage = 'https://github.com/ravinggenius/staticpress'
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,feature}{,s}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
s.require_paths = ['lib']
s.add_development_dependency 'aruba'
s.add_development_dependency 'pry'
s.add_development_dependency 'rspec'
# test dependencies (see Gemfile)
s.add_development_dependency 'compass'
s.add_development_dependency 'haml'
s.add_development_dependency 'redcarpet'
s.add_development_dependency 'sass'
s.add_runtime_dependency 'bundler'
s.add_runtime_dependency 'hike'
s.add_runtime_dependency 'rack'
s.add_runtime_dependency 'thor'
s.add_runtime_dependency 'tilt'
end