-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgithub_revisions.gemspec
More file actions
26 lines (20 loc) · 888 Bytes
/
github_revisions.gemspec
File metadata and controls
26 lines (20 loc) · 888 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
$:.push File.expand_path('../lib', __FILE__)
# Maintain your gem's version:
require 'github_revisions/version'
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = 'github_revisions'
s.version = GithubRevisions::VERSION
s.authors = ['Jake0oo0']
s.email = ['jake0oo0dev@gmail.com']
s.homepage = 'http://revisions.jake0oo0.me'
s.summary = 'Access a list of revisions for various Github repositories.'
s.description = 'Access a list of revisions for various Github repositories.'
s.license = 'MIT'
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.require_paths = ['lib']
s.add_development_dependency 'kaminari', '>= 0.15.0'
s.add_dependency 'rails', '>= 4.0.3', '<= 4.1.6'
s.add_dependency 'github_api', '>= 0.12.1'
end