forked from ruhoh/ruhoh.rb
-
Notifications
You must be signed in to change notification settings - Fork 1
/
ruhoh.gemspec
31 lines (27 loc) · 1.11 KB
/
ruhoh.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
$LOAD_PATH.unshift 'lib'
require 'ruhoh/version'
Gem::Specification.new do |s|
s.name = "ruhoh"
s.version = Ruhoh::Version
s.date = Time.now.strftime('%Y-%m-%d')
s.license = "http://www.opensource.org/licenses/MIT"
s.summary = 'Ruby based library to process your Ruhoh static blog.'
s.homepage = "http://github.com/ruhoh/ruhoh.rb"
s.email = "[email protected]"
s.authors = ['Jade Dominguez']
s.description = 'Ruhoh is a Universal API for your static blog.'
s.executables = ["ruhoh"]
# dependencies defined in Gemfile
s.add_dependency 'rack', "~> 1.4"
s.add_dependency 'mustache', "~> 0.99"
s.add_dependency 'directory_watcher', "~> 1.4.0"
s.add_dependency 'redcarpet', "~> 2.1"
s.add_dependency 'nokogiri', "~> 1.5"
s.add_development_dependency 'cucumber'
s.add_development_dependency 'capybara'
s.add_development_dependency 'rspec-expectations'
s.files = `git ls-files`.
split("\n").
sort.
reject { |file| file =~ /^(\.|rdoc|pkg|coverage)/ }
end