diff options
| author | Amy Fong <amy.fong@windriver.com> | 2014-05-20 15:25:08 -0400 |
|---|---|---|
| committer | Bruce Ashfield <bruce.ashfield@windriver.com> | 2014-05-24 00:27:57 -0400 |
| commit | 3116193dafe53b22e9028192bb40fa771ffdee77 (patch) | |
| tree | 10260a5e2d6b58fac13863aa271c1310e1e708ff /meta-openstack/recipes-devtools | |
| parent | bbf25647b66c6f1ba41046f2f107429d2ec89422 (diff) | |
| download | meta-cloud-services-3116193dafe53b22e9028192bb40fa771ffdee77.tar.gz | |
Ruby/chef solo: Add recipes-devtools/ruby/rest-client_git.bb
A simple HTTP and REST client for Ruby, inspired by the
Sinatra's microframework style of specifying actions: get, put, post,
delete.
Signed-off-by: Mark Asselstine <mark.asselstine@windriver.com>
Signed-off-by: Amy Fong <amy.fong@windriver.com>
Diffstat (limited to 'meta-openstack/recipes-devtools')
| -rw-r--r-- | meta-openstack/recipes-devtools/ruby/rest-client_git.bb | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/meta-openstack/recipes-devtools/ruby/rest-client_git.bb b/meta-openstack/recipes-devtools/ruby/rest-client_git.bb new file mode 100644 index 0000000..9d31e65 --- /dev/null +++ b/meta-openstack/recipes-devtools/ruby/rest-client_git.bb | |||
| @@ -0,0 +1,30 @@ | |||
| 1 | # | ||
| 2 | # Copyright (C) 2014 Wind River Systems, Inc. | ||
| 3 | # | ||
| 4 | SUMMARY = "A simple HTTP and REST client for Ruby" | ||
| 5 | DESCRIPTION = "A simple HTTP and REST client for Ruby, inspired by the \ | ||
| 6 | Sinatra's microframework style of specifying actions: get, put, post, \ | ||
| 7 | delete." | ||
| 8 | |||
| 9 | LICENSE = "MIT" | ||
| 10 | LIC_FILES_CHKSUM = "file://README.rdoc;beginline=285;md5=f649e8be3b8f05776195b7aa04d974c6" | ||
| 11 | |||
| 12 | PR = "r0" | ||
| 13 | |||
| 14 | BPV = "1.6.7" | ||
| 15 | PV = "${BPV}" | ||
| 16 | SRCREV = "d96be9d1dc8b1b4c04d90a62244b87ded8d86f0c" | ||
| 17 | |||
| 18 | S = "${WORKDIR}/git" | ||
| 19 | |||
| 20 | SRC_URI = " \ | ||
| 21 | git://github.com/rest-client/rest-client.git \ | ||
| 22 | " | ||
| 23 | |||
| 24 | inherit ruby | ||
| 25 | |||
| 26 | RDEPENDS += " \ | ||
| 27 | mime-types \ | ||
| 28 | " | ||
| 29 | |||
| 30 | BBCLASSEXTEND = "native" | ||
