-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathrobotlegs.gemspec
24 lines (20 loc) · 1 KB
/
robotlegs.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
# -*- encoding: utf-8 -*-
lib = File.expand_path("../lib", __FILE__)
$:.unshift lib unless $:.include?( lib )
require 'bundler'
require 'robotlegs'
Gem::Specification.new do |s|
s.name = Robotlegs::NAME
s.version = Robotlegs::VERSION
s.author = "Kristofer Joseph"
s.email = ["[email protected]"]
s.homepage = "http://projectsprouts.org"
s.summary = "A library for developing Robotlegs projects with Project Sprouts"
s.description = "GO AND CODE"
s.executables = ["rl-project","rl-context","rl-proxy","rl-mediator","rl-command","rl-service","rl-signal-command","rl-signal-context"]
s.rubyforge_project = "sprout-robotlegs"
s.required_rubygems_version = ">= 1.3.7"
s.files = FileList["**/*"].exclude /docs|.DS_Store|generated|.svn|.git|vendor/
s.add_bundler_dependencies
s.require_paths << 'lib'
end