-
Notifications
You must be signed in to change notification settings - Fork 22
/
kickster.gemspec
22 lines (19 loc) · 1.04 KB
/
kickster.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
$LOAD_PATH.unshift File.expand_path("../lib", __FILE__)
require "kickster/version"
Gem::Specification.new do |spec|
spec.name = "kickster"
spec.version = Kickster::VERSION
spec.platform = Gem::Platform::RUBY
spec.author = "Nielsen Ramon"
spec.summary = "Worry-free deploying to GitHub Pages using Jekyll."
spec.description = "Kickster provides a basic Jekyll project setup packed with web best practises and useful optimization tools increasing your overall project quality. Kickster ships with automated and worry-free deployment scripts for GitHub Pages."
spec.email = "nielsenramon1@gmail.com"
spec.homepage = "http://kickster.nielsenramon.com/"
spec.license = "MIT"
spec.files = `git ls-files`.split("\n")
spec.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
spec.require_paths = ['lib']
spec.add_runtime_dependency("thor", "~> 0")
spec.add_development_dependency "bundler", "~> 1.8"
spec.add_development_dependency "rake", "~> 10.0"
end