-
Notifications
You must be signed in to change notification settings - Fork 2
/
shard.gemspec
29 lines (22 loc) · 938 Bytes
/
shard.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
Gem::Specification.new do |s|
s.name = 'shard'
s.version = '0.3.0'
s.date = '2014-08-15'
s.summary = "Very lightweight ruby package manager built on gist."
s.description = <<-EOF
Shard is a light-weight code loading-and-running-and-sharing tool, built on top of http://gist.github.com.
You can load the shard's code using a Kernel#shard method, and can load, run, and test a shard directly from the command line.
EOF
s.license = "MIT"
s.files = ['lib/shard.rb'] + Dir['lib/shard/**/*.rb']
s.executables << 'shard'
s.authors = ["Mark Josef"]
s.email = '[email protected]'
s.homepage = "https://github.com/mark/shard"
s.required_ruby_version = '>= 1.9.3'
s.add_dependency 'octokit', '~> 3.3.0'
s.add_dependency "netrc", "~> 0.7.7"
s.add_dependency 'thor', '~> 0.18.1'
s.add_development_dependency 'rake'
s.add_development_dependency 'bundler'
end