This repository was archived by the owner on Aug 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsly.gemspec
More file actions
33 lines (32 loc) · 1.39 KB
/
sly.gemspec
File metadata and controls
33 lines (32 loc) · 1.39 KB
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
# Ensure we require the local version and not one we might have installed already
require File.join([File.dirname(__FILE__),'lib','sly','version.rb'])
spec = Gem::Specification.new do |s|
s.name = 'sly'
s.version = Sly::VERSION
s.author = 'Robert White'
s.email = 'robert@terracoding.com'
s.homepage = 'http://www.terracoding.com/sprintly'
s.platform = Gem::Platform::RUBY
s.summary = 'A small set of tools for working with Sprint.ly without leaving the command line.'
s.description = 'A small set of tools for working with Sprint.ly without leaving the command line.'
s.license = "cc-zero"
s.required_ruby_version = '>= 1.9.2'
# Add your other files here if you make them
s.files = Dir['bin/sly', 'lib/sly/version.rb', 'lib/sly.rb', 'lib/sly/*.rb']
s.require_paths << 'lib'
s.has_rdoc = true
s.extra_rdoc_files = ['README.rdoc','sly.rdoc']
s.rdoc_options << '--title' << 'sly' << '--main' << 'README.rdoc' << '-ri'
s.bindir = 'bin'
s.executables << 'sly'
s.add_dependency('curb', '>= 0.8')
s.add_dependency('json', '>= 1.4')
s.add_dependency('rainbow', '>= 2.0')
s.add_dependency('gli','>= 2.5.0')
s.add_development_dependency('rake')
s.add_development_dependency('rdoc')
s.add_development_dependency('aruba')
s.add_development_dependency('webmock')
s.add_development_dependency('cucumber')
s.add_development_dependency('rspec')
end