-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdutiful.gemspec
25 lines (21 loc) · 897 Bytes
/
dutiful.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
$LOAD_PATH.unshift File.expand_path('../lib', __FILE__)
require 'dutiful/version'
Gem::Specification.new do |s|
s.name = 'dutiful'
s.version = Dutiful::VERSION
s.license = 'MIT'
s.authors = ['Bruno Pinto']
s.email = 'brunoferreirapinto@gmail.com'
s.homepage = 'http://github.com/bpinto/dutiful'
s.summary = "dutiful-#{Dutiful::VERSION}"
s.description = 'Dotfiles manager'
s.files = `git ls-files -- lib/* config/* db/* template/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
s.require_path = "lib"
s.add_runtime_dependency 'clamp', '~> 1.0'
s.add_runtime_dependency 'colorize', '~> 0.7'
s.add_runtime_dependency 'rsync', '~> 1.0'
s.add_runtime_dependency 'tomlrb', '~> 1.1'
s.add_development_dependency 'rake', '~> 10'
s.add_development_dependency 'rspec', '~> 3.3'
end