forked from OrganisedMinds/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathomcli.gemspec
27 lines (27 loc) · 925 Bytes
/
omcli.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
# Ensure we require the local version and not one we might have installed already
require File.join([File.dirname(__FILE__),'lib','omcli','version.rb'])
spec = Gem::Specification.new do |s|
s.name = 'omcli'
s.version = OmCli::VERSION
s.author = 'Your Name Here'
s.email = '[email protected]'
s.homepage = 'http://your.website.com'
s.platform = Gem::Platform::RUBY
s.summary = 'A description of your project'
# Add your other files here if you make them
s.files = %w(
bin/omcli
lib/omcli/version.rb
lib/omcli.rb
)
s.require_paths << 'lib'
s.has_rdoc = true
s.extra_rdoc_files = ['README.rdoc','omcli.rdoc']
s.rdoc_options << '--title' << 'omcli' << '--main' << 'README.rdoc' << '-ri'
s.bindir = 'bin'
s.executables << 'omcli'
s.add_development_dependency('rake')
s.add_development_dependency('rdoc')
s.add_development_dependency('aruba')
s.add_runtime_dependency('gli','2.8.1')
end