-
Notifications
You must be signed in to change notification settings - Fork 0
/
sweetie.gemspec
29 lines (24 loc) · 1.29 KB
/
sweetie.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
$LOAD_PATH.push File.expand_path('../lib', __FILE__)
require 'sweetie/version'
Gem::Specification.new do |s|
s.name = 'sweetie'
s.version = Sweetie::VERSION
s.date = '2012-07-15'
s.licenses = ['MIT']
s.authors = ['Matthias Guenther']
s.email = '[email protected]'
s.homepage = 'https://github.com/wikimatze/sweetie'
s.summary = 'Count links, images, number of html pages, and last-build time of a
jekyll project. In addition it can get last updates of all bitbucket
repositories of a user.'
s.description = 'Sweetie counts the links, images, number of html pages, and last-build
time of a jekyll project. In addition it can get the last changes of all
bitbuckets repositories of a user.'
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec}/*`.split("\n")
s.extra_rdoc_files = ['README.md']
s.add_runtime_dependency 'nokogiri', '~> 1.13'
s.add_runtime_dependency 'json', '~> 2.3'
s.add_development_dependency 'rake', '~> 12.3'
s.add_development_dependency 'rspec', '~> 3.3'
end