Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcode.gemspec
More file actions
Latest commit
29 lines (26 loc) · 856 Bytes
/
Copy pathcode.gemspec
File metadata and controls
29 lines (26 loc) · 856 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
27
28
29
# Ensure we require the local version and not one we might have installed already
requireFile.join([File.dirname(__FILE__),'lib','code','version.rb'])
spec=Gem::Specification.newdo |s|
s.name='code'
s.version=Code::VERSION
s.author='Venkat'
s.email='venkat@coderly.com'
s.homepage='http://www.coderly.com'
s.platform=Gem::Platform::RUBY
s.summary='Our command line toolbelt for common tasks'
# Add your other files here if you make them
s.files=%w(
bin/code
lib/code/version.rb
lib/code.rb
)
s.require_paths << 'lib'
s.bindir='bin'
s.executables << 'code'
s.add_development_dependency('rake')
s.add_development_dependency('rdoc')
s.add_development_dependency('aruba')
s.add_development_dependency('rspec')
s.add_runtime_dependency('gli','2.8.0')
s.add_runtime_dependency('hub')
end