-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathjekyll_github_sample.gemspec
More file actions
26 lines (21 loc) · 919 Bytes
/
jekyll_github_sample.gemspec
File metadata and controls
26 lines (21 loc) · 919 Bytes
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 -*-
$:.push File.expand_path('../lib', __FILE__)
require 'jekyll_github_sample/version'
Gem::Specification.new do |s|
s.name = 'jekyll_github_sample'
s.version = JekyllGithubSample::VERSION
s.license = 'MIT'
s.authors = ['Ben Willis']
s.email = ['benjamin.willis@gmail.com']
s.homepage = 'https://github.com/bwillis/jekyll-github-sample'
s.summary = %q{Include a sample of a Github repo file.}
s.description = %q{Easily reference and include a Github repo file in your post.}
s.files = `git ls-files -z`.split("\x0")
s.test_files = `git ls-files -- {spec}/*`.split('\n')
s.require_paths = ['lib']
s.add_dependency 'activesupport', '>= 4.0', '< 7.0'
s.add_dependency 'jekyll', '>= 3.0', '< 5.0'
s.add_development_dependency 'rspec'
s.add_development_dependency 'bundler'
s.add_development_dependency 'rake'
end