forked from nebulab/simple_command
-
Notifications
You must be signed in to change notification settings - Fork 0
/
simple_command.gemspec
25 lines (22 loc) · 989 Bytes
/
simple_command.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'simple_command/version'
Gem::Specification.new do |s|
s.required_ruby_version = '>= 2.0'
s.name = 'simple_command'
s.version = SimpleCommand::VERSION
s.authors = ['Andrea Pavoni']
s.email = ['[email protected]']
s.summary = 'Easy way to build and manage commands (service objects)'
s.description = 'Easy way to build and manage commands (service objects)'
s.homepage = 'http://github.com/nebulab/simple_command'
s.license = 'MIT'
s.files = `git ls-files -z`.split("\x0")
s.executables = s.files.grep(/^bin\//) { |f| File.basename(f) }
s.test_files = s.files.grep(/^(test|spec|features)\//)
s.require_paths = ['lib']
s.add_development_dependency 'bundler', '~> 1.7'
s.add_development_dependency 'rake', '~> 10.0'
s.add_development_dependency 'rspec', '~> 3.1'
end