-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy patharduino_ci.gemspec
27 lines (22 loc) · 1.03 KB
/
arduino_ci.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
# coding: utf-8
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "arduino_ci/version"
Gem::Specification.new do |spec|
spec.name = "arduino_ci"
spec.version = ArduinoCI::VERSION
spec.licenses = ['Apache 2.0']
spec.authors = ["Ian Katz"]
spec.email = ["[email protected]"]
spec.summary = "Tools for building and unit testing Arduino libraries"
spec.description = spec.description
spec.homepage = "http://github.com/ifreecarve/arduino_ci"
spec.files = ['README.md', '.yardopts'] + Dir['lib/**/*.*'].reject { |f| f.match(%r{^(test|spec|features)/}) }
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.add_development_dependency "bundler", "~> 1.15"
spec.add_development_dependency "rspec", "~> 3.0"
spec.add_development_dependency 'rubocop', '~> 0', '>= 0.46.0'
spec.add_development_dependency 'yard', '~>0.8', '>= 0.8'
end