-
Notifications
You must be signed in to change notification settings - Fork 0
/
pi_customizer.gemspec
30 lines (25 loc) · 1.09 KB
/
pi_customizer.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 'pi_customizer/version'
Gem::Specification.new do |spec|
spec.name = 'pi_customizer'
spec.version = PiCustomizer::VERSION
spec.license = 'MIT'
spec.author = 'Beate Ottenwälder'
spec.email = 'ottenwbe.public@gmail.com'
spec.homepage = 'https://github.com/ottenwbe/pi-gen-environment.git'
spec.summary = 'The pi_customizer gem!'
spec.description = 'The pi_customizer gem allows you to adapt Raspbian images to your needs!'
spec.files = Dir.glob('{envs}/**/*') + `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features)/})
end
spec.executables = spec.files.grep(%r{^bin/}) {|f| File.basename(f)}
spec.require_paths = ['lib']
spec.add_development_dependency 'bundler', '~> 2.0'
spec.add_development_dependency 'rake', '~> 13.0'
spec.add_development_dependency 'rspec', '~> 3.8'
spec.add_development_dependency 'simplecov', '~> 0.17'
spec.add_development_dependency 'rdoc', '~> 6.1'
spec.add_runtime_dependency 'thor', '~> 0.20'
end