-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathnirvanahq.gemspec
executable file
·35 lines (28 loc) · 1.19 KB
/
nirvanahq.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
30
31
32
33
34
35
# coding: UTF-8
Gem::Specification.new do |s|
s.name = "nirvanahq"
s.version = "0.1.4"
s.platform = Gem::Platform::RUBY
s.authors = ["Mitchell Amihod"]
s.email = ["mitchell@amihod.com"]
s.homepage = "http://github.com/meeech/nirv"
s.summary = "Gem for NirvanaHQ.com"
s.description = "Gem for interacting with the NirvanaHQ API. Includes a CLI tool. Pretty alpha."
s.rubyforge_project = s.name
s.required_rubygems_version = ">= 1.3.6"
# If you have runtime dependencies, add them here
s.add_dependency "json", ">= 0"
s.add_dependency "simpleconsole"
s.add_dependency "uuid", ">= 0"
# If you have development dependencies, add them here
s.add_development_dependency "rake"
s.add_development_dependency "redgreen"
# s.add_development_dependency "mocha"
# The list of files to be contained in the gem
s.files = `git ls-files`.split("\n")
s.executables = `git ls-files`.split("\n").map{|f| f =~ /^bin\/(.*)/ ? $1 : nil}.compact
# s.extensions = `git ls-files ext/extconf.rb`.split("\n")
s.require_path = 'lib'
# For C extensions
# s.extensions = "ext/extconf.rb"
end