From 961b8f54f74c3956694df67d2d296bfcf93e2b8a Mon Sep 17 00:00:00 2001 From: Amy Fong Date: Tue, 20 May 2014 15:24:47 -0400 Subject: Ruby/chef solo: Add recipes-devtools/ruby/rack_git.bb Provides a minimal, modular and adaptable interface for developing web applications in Ruby. By wrapping HTTP requests and responses in the simplest way possible, it unifies and distills the API for web servers, web frameworks, and software in between (the so-called middleware) into a single method call. Signed-off-by: Mark Asselstine Signed-off-by: Amy Fong --- meta-openstack/recipes-devtools/ruby/rack_git.bb | 28 ++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 meta-openstack/recipes-devtools/ruby/rack_git.bb (limited to 'meta-openstack/recipes-devtools/ruby/rack_git.bb') diff --git a/meta-openstack/recipes-devtools/ruby/rack_git.bb b/meta-openstack/recipes-devtools/ruby/rack_git.bb new file mode 100644 index 0000000..7d6ab81 --- /dev/null +++ b/meta-openstack/recipes-devtools/ruby/rack_git.bb @@ -0,0 +1,28 @@ +# +# Copyright (C) 2014 Wind River Systems, Inc. +# +SUMMARY = "Provides an interface for developing web applications in Ruby." +DESCRIPTION = "Provides a minimal, modular and adaptable interface for \ +developing web applications in Ruby. By wrapping HTTP requests and \ +responses in the simplest way possible, it unifies and distills the \ +API for web servers, web frameworks, and software in between (the \ +so-called middleware) into a single method call." + +LICENSE = "MIT" +LIC_FILES_CHKSUM = "file://COPYING;md5=53d9c9f5c6fd716007e621045f6caa49" + +PR = "r0" + +BPV = "1.5.2" +PV = "${BPV}" +SRCREV = "ac590d055c936bb9a618e955a690dc836c625211" + +S = "${WORKDIR}/git" + +SRC_URI = " \ + git://github.com/rack/rack.git \ + " + +inherit ruby + +BBCLASSEXTEND = "native" -- cgit v1.2.3-54-g00ecf