-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfunky-cli.gemspec
More file actions
27 lines (22 loc) · 1.06 KB
/
funky-cli.gemspec
File metadata and controls
27 lines (22 loc) · 1.06 KB
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('../mrblib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'funky-cli/version.rb'
Gem::Specification.new do |spec|
spec.name = "funky-cli"
spec.version = FunkyCli::VERSION
spec.authors = ["Thiago Scalone"]
spec.email = ["thiago@cloudwalk.io"]
spec.summary = "CLI for DaFunk projects"
spec.description = "DaFunk is a Embedded System Framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration."
spec.homepage = "http://github.com/da_funk/funky-cli"
spec.license = "MIT"
spec.files = `git ls-files -z`.split("\x0") + Dir["exe/*"]
spec.executables = Dir["bin/*"].collect { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.bindir = 'bin'
spec.require_paths = ["mrblib"]
spec.required_ruby_version = '>= 1.9.3'
spec.add_dependency "rake", "~> 10.4"
spec.add_dependency "bundler", "~> 1.7"
end