-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathlucie.gemspec
22 lines (18 loc) · 984 Bytes
/
lucie.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# -*- encoding: utf-8 -*-
require File.expand_path("../lucie-lib/lib/lucie/version", __FILE__)
version = Lucie::VERSION
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
Gem::Specification.new do |gem|
gem.name = "lucie"
gem.version = version
gem.authors = ["Nucc"]
gem.email = ["[email protected]"]
gem.description = %q{Command line utility framework}
gem.summary = %q{Lucie is a console application framework like Rails for Ruby programmers or Symfony for PHP developers. While these tools help the web developers in create beautiful websites rapidly, there's no easy way to create complex console applications like do this in Ruby on Rails. Lucie wants to bridge this gap.}
gem.homepage = "http://my.luc.ie"
gem.files = ["README.md"]
gem.add_dependency "lucie-lib", version
gem.add_dependency "lucie-bin", version
gem.add_development_dependency "yard", "~> 0.8.7"
end