diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2012-06-10 11:11:28 +0200 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2012-06-10 11:11:28 +0200 |
commit | 6553912a6dff9b2c8bd3f06cb5f10488eef2c18c (patch) | |
tree | 804cbb720c993afd5453ea4a8086b264e22382fe /edoors-ruby.gemspec | |
parent | 74d45762846ea7e6ac09f65fb31672b822f7a349 (diff) | |
download | edoors-ruby-6553912a6dff9b2c8bd3f06cb5f10488eef2c18c.zip edoors-ruby-6553912a6dff9b2c8bd3f06cb5f10488eef2c18c.tar.gz |
project iotas->edoors-ruby, module Iotas->Edoors
Diffstat (limited to 'edoors-ruby.gemspec')
-rw-r--r-- | edoors-ruby.gemspec | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/edoors-ruby.gemspec b/edoors-ruby.gemspec new file mode 100644 index 0000000..7d63d63 --- /dev/null +++ b/edoors-ruby.gemspec @@ -0,0 +1,28 @@ +#! /usr/bin/env ruby +# -*- coding: UTF-8 -*- +# +$:.push File.expand_path("../lib", __FILE__) +require 'version' +# +Gem::Specification.new do |s| + s.name = "edoors-ruby" + s.version = Edoors::VERSION + s.authors = ["Jérémy Zurcher"] + s.email = ["jeremy@asynk.ch"] + s.homepage = "http://github.com/jeremyz/edoors-ruby" + s.summary = %q{ruby rewrite of C++ application framework evenja (http://www.revena.com/evenja)} + s.description = %q{Evenja propose a data centric paradigm. A traditional programm composed of many functions + is decomposed into small autonomous modifications applied on the data implemented in different instances of Door base class. + Routing between these doors is handled through links or user application destinations.} + + s.files = `git ls-files`.split("\n") + s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") + s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } + s.require_paths = ["lib"] + + s.add_runtime_dependency "json" + s.add_development_dependency "rspec", ["~> 2.6"] + s.add_development_dependency "rake" +end +# +# EOF |