-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrake_embedded.gemspec
28 lines (23 loc) · 1003 Bytes
/
rake_embedded.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
# coding: utf-8
lib = File.expand_path('../.', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'rake_embedded/version'
Gem::Specification.new do |spec|
spec.name = "rake_embedded"
spec.licenses = ['GPL-3.0']
spec.version = RakeEmbedded::VERSION
spec.authors = ["Franz Flasch"]
spec.email = ["franz.flasch@gmx.at"]
spec.summary = "Embedded C buildsystem for microcontrollers"
spec.description = "REM is a Yocto like buildsystem primarily intended for microcontrollers. It is based on ruby rake."
spec.homepage = "https://github.com/franzflasch/REM"
spec.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features)/})
end
spec.bindir = "."
spec.executables = "rem"
spec.require_paths = ["."]
spec.add_runtime_dependency "rake", ">= 12.0"
spec.add_development_dependency "bundler", ">= 1.14"
spec.add_development_dependency "rake", ">= 12.0"
end