-
Notifications
You must be signed in to change notification settings - Fork 10
/
dotify.gemspec
30 lines (26 loc) · 1.19 KB
/
dotify.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
28
29
30
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/dotify/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Matt Bridges"]
gem.email = ["mbridges.91@gmail.com"]
gem.description = %q{A CLI Tool for managing your dotfiles}
gem.summary = %q{A CLI Tool for managing your dotfiles}
gem.homepage = "https://github.com/mattdbridges/dotify"
gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "dotify"
gem.require_paths = ["lib"]
gem.version = Dotify::Version.build.level
gem.add_runtime_dependency "thor", "~> 0.15.4"
gem.add_runtime_dependency "multi_json", "~> 1.3.6"
gem.add_runtime_dependency "git", "~> 1.2.5"
gem.add_development_dependency 'rspec', '~> 2.11.0'
gem.add_development_dependency 'cucumber'
gem.add_development_dependency 'simplecov'
gem.add_development_dependency 'aruba'
gem.add_development_dependency 'webmock'
gem.add_development_dependency 'vcr'
gem.add_development_dependency 'guard-rspec'
gem.add_development_dependency 'guard-cucumber'
end