diff options
| author | Amy Fong <amy.fong@windriver.com> | 2014-05-20 15:24:32 -0400 |
|---|---|---|
| committer | Bruce Ashfield <bruce.ashfield@windriver.com> | 2014-05-24 00:27:57 -0400 |
| commit | 104cec20c942cf5e73e5452973eb14177aaec312 (patch) | |
| tree | 8680ebb99dd9cbf4fed2794a33fce412899aba99 /meta-openstack/recipes-devtools/ruby/pry_git.bb | |
| parent | 4f548c408e907511acd1d668eabccb48ff59b2ad (diff) | |
| download | meta-cloud-services-104cec20c942cf5e73e5452973eb14177aaec312.tar.gz | |
Ruby/chef solo: Add recipes-devtools/ruby/pry_git.bb
Pry is a powerful alternative to the standard IRB shell
for Ruby. It is written from scratch to provide a number of advanced
features.
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/ruby/pry_git.bb')
| -rw-r--r-- | meta-openstack/recipes-devtools/ruby/pry_git.bb | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/meta-openstack/recipes-devtools/ruby/pry_git.bb b/meta-openstack/recipes-devtools/ruby/pry_git.bb new file mode 100644 index 0000000..91e3c43 --- /dev/null +++ b/meta-openstack/recipes-devtools/ruby/pry_git.bb | |||
| @@ -0,0 +1,35 @@ | |||
| 1 | # | ||
| 2 | # Copyright (C) 2014 Wind River Systems, Inc. | ||
| 3 | # | ||
| 4 | SUMMARY = "Pry is an alternative to the standard IRB shell for Ruby." | ||
| 5 | DESCRIPTION = "Pry is a powerful alternative to the standard IRB shell \ | ||
| 6 | for Ruby. It is written from scratch to provide a number of advanced \ | ||
| 7 | features." | ||
| 8 | |||
| 9 | LICENSE = "MIT" | ||
| 10 | LIC_FILES_CHKSUM = "file://LICENSE;md5=7d1a6fbb73f604e1e716380490938bd4" | ||
| 11 | |||
| 12 | PR = "r0" | ||
| 13 | |||
| 14 | BPV = "0.9.12.6" | ||
| 15 | PV = "${BPV}" | ||
| 16 | SRCREV = "047788c4225b25bb0462e06715616964e4f0da15" | ||
| 17 | |||
| 18 | S = "${WORKDIR}/git" | ||
| 19 | |||
| 20 | SRC_URI = " \ | ||
| 21 | git://github.com/pry/pry.git \ | ||
| 22 | file://rdoc-fixup-opt.banner-heredoc.patch \ | ||
| 23 | " | ||
| 24 | |||
| 25 | inherit ruby | ||
| 26 | |||
| 27 | RUBY_COMPILE_FLAGS = "" | ||
| 28 | |||
| 29 | RDEPENDS += " \ | ||
| 30 | coderay \ | ||
| 31 | method-source \ | ||
| 32 | slop \ | ||
| 33 | " | ||
| 34 | |||
| 35 | BBCLASSEXTEND = "native" | ||
