-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcipr.gemspec
28 lines (23 loc) · 944 Bytes
/
cipr.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.unshift 'lib'
require "cipr/version"
Gem::Specification.new do |s|
s.name = "cipr"
s.version = Cipr::VERSION
s.date = Time.now.strftime('%Y-%m-%d')
s.summary = "cipr tests your pull requests."
s.homepage = "http://github.com/marksim/cipr"
s.email = "[email protected]"
s.authors = [ "Mark Simoneau" ]
s.has_rdoc = false
s.files = %w( README.md LICENSE )
s.files += Dir.glob("lib/**/*")
s.files += Dir.glob("bin/**/*")
s.files += Dir.glob("spec/**/*")
s.executables = %w( cipr )
s.add_runtime_dependency 'choice'
s.add_runtime_dependency 'httparty'
s.add_runtime_dependency 'git'
s.add_runtime_dependency 'json'
s.add_development_dependency 'rspec'
s.description = "cipr tests your pull requests and comments the results"
end