From 33c92db4cfabd16538472ce0f7ff1c255588d228 Mon Sep 17 00:00:00 2001 From: Amy Fong Date: Tue, 20 May 2014 15:18:47 -0400 Subject: Ruby/chef solo: Add recipes-devtools/ruby/highline_git.bb HighLine was designed to ease the tedious tasks of doing console input and output with low-level methods like gets() and puts(). HighLine provides a robust system for requesting data from a user, without needing to code all the error checking and validation rules and without needing to convert the typed Strings into what your program really needs. Just tell HighLine what you're after, and let it do all the work. Signed-off-by: Mark Asselstine Signed-off-by: Amy Fong --- .../recipes-devtools/ruby/highline_git.bb | 30 ++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 meta-openstack/recipes-devtools/ruby/highline_git.bb diff --git a/meta-openstack/recipes-devtools/ruby/highline_git.bb b/meta-openstack/recipes-devtools/ruby/highline_git.bb new file mode 100644 index 0000000..c8994ce --- /dev/null +++ b/meta-openstack/recipes-devtools/ruby/highline_git.bb @@ -0,0 +1,30 @@ +# +# Copyright (C) 2014 Wind River Systems, Inc. +# +SUMMARY = "Provides a robust system for requesting data from a user." +DESCRIPTION = "HighLine was designed to ease the tedious tasks of \ +doing console input and output with low-level methods like gets() and \ +puts(). HighLine provides a robust system for requesting data from a \ +user, without needing to code all the error checking and validation \ +rules and without needing to convert the typed Strings into what your \ +program really needs. Just tell HighLine what you're after, and let it \ +do all the work." + +LICENSE = "GPLv2" +LIC_FILES_CHKSUM = "file://LICENSE;md5=884766faee6a0d2931af978757e1a5fc" + +PR = "r0" + +BPV = "1.6.21" +PV = "${BPV}" +SRCREV = "4d5ec40d20853c73f1fd75c7681397bf50b05517" + +S = "${WORKDIR}/git" + +SRC_URI = " \ + git://github.com/JEG2/highline.git \ + " + +inherit ruby + +BBCLASSEXTEND = "native" -- cgit v1.2.3-54-g00ecf