-
Notifications
You must be signed in to change notification settings - Fork 0
/
full_time.gemspec
30 lines (23 loc) · 970 Bytes
/
full_time.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'full_time/version'
Gem::Specification.new do |spec|
spec.name = 'full_time'
spec.version = FullTime::VERSION
spec.author = 'Andrew Babichev'
spec.email = '[email protected]'
spec.summary = 'Simple CV DSL'
spec.description = 'Handle your CV like a pro'
spec.homepage = 'https://github.com/Tensho/full_time'
spec.license = 'MIT'
spec.post_install_message = "Thanks for installing full_time!"
spec.files = Dir["example/**/*", "exe/**/*", "lib/**/*", "README.md"]
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.required_ruby_version = '~> 2.2'
spec.add_dependency 'tilt', '~> 2.0'
spec.add_development_dependency 'bundler', '~> 2'
spec.add_development_dependency 'rake', '~> 12.0'
spec.add_development_dependency 'rspec', '~> 3.5'
end