-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbegin.gemspec
29 lines (26 loc) · 1.51 KB
/
begin.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'begin/version'
Gem::Specification.new do |spec|
spec.name = 'begin'
spec.version = Begin::VERSION
spec.authors = ['Jason Fox']
spec.email = ['jasonrobertfox@gmail.com']
spec.summary = 'Quickly create a basic ruby package with clean coding tools.'
spec.description = 'I don\'t want a single thing preventing me from starting off (even the smallest) library without a good infrastructure to support TDD and clean coding standards. I got tired of reconfiguring the same tools in basically the same way every time. With this one command you can set up a library, fire up Guard, and jump right into the TDD loop: Red, Green, Refactor.'
spec.homepage = 'http://github.com/neverstopbuilding/begin'
spec.license = 'MIT'
spec.files = `git ls-files`.split($/)
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ['lib']
spec.add_dependency 'thor', '~> 0.18.1'
spec.add_development_dependency 'bundler', '~> 1.5'
spec.add_development_dependency 'rake', '~> 10.1.1'
spec.add_development_dependency 'aruba', '~> 0.5.3'
spec.add_development_dependency 'rspec', '~> 2.8.0'
spec.add_development_dependency 'cucumber', '>= 0'
spec.add_development_dependency 'bundler', '~> 1.0'
spec.add_development_dependency 'rubocop', '~> 0.16.0'
end