diff options
author | Hans de Graaff <graaff@gentoo.org> | 2016-09-11 08:38:53 +0200 |
---|---|---|
committer | Hans de Graaff <graaff@gentoo.org> | 2016-09-11 08:52:41 +0200 |
commit | 88f0c979704c9b2ba56fc17c2d11a8f4a82b2f56 (patch) | |
tree | e6558309e13460e74e48279e860689de1a37abf3 /dev-ruby/web-console/web-console-3.3.1.ebuild | |
parent | dev-ruby/debug_inspector: add ruby23 (diff) | |
download | gentoo-88f0c979704c9b2ba56fc17c2d11a8f4a82b2f56.tar.gz gentoo-88f0c979704c9b2ba56fc17c2d11a8f4a82b2f56.tar.bz2 gentoo-88f0c979704c9b2ba56fc17c2d11a8f4a82b2f56.zip |
dev-ruby/web-console: add 3.3.1
Package-Manager: portage-2.2.28
Diffstat (limited to 'dev-ruby/web-console/web-console-3.3.1.ebuild')
-rw-r--r-- | dev-ruby/web-console/web-console-3.3.1.ebuild | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/dev-ruby/web-console/web-console-3.3.1.ebuild b/dev-ruby/web-console/web-console-3.3.1.ebuild new file mode 100644 index 000000000000..89e756266742 --- /dev/null +++ b/dev-ruby/web-console/web-console-3.3.1.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +USE_RUBY="ruby22 ruby23" + +RUBY_FAKEGEM_RECIPE_DOC="rdoc" +RUBY_FAKEGEM_EXTRADOC="CHANGELOG.markdown README.markdown" + +RUBY_FAKEGEM_GEMSPEC="web-console.gemspec" + +inherit ruby-fakegem + +DESCRIPTION="A debugging tool for your Ruby on Rails applications" +HOMEPAGE="https://github.com/rails/web-console" +SRC_URI="https://github.com/rails/web-console/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="3" +KEYWORDS="~amd64" +IUSE="" + +ruby_add_rdepend " + >=dev-ruby/actionview-5.0:* + >=dev-ruby/activemodel-5.0:* + dev-ruby/debug_inspector + >=dev-ruby/railties-5.0:* +" + +ruby_add_bdepend "test? ( + dev-ruby/bundler + >=dev-ruby/rails-5.0 + dev-ruby/sqlite3 + dev-ruby/mocha + www-servers/puma +)" + +all_ruby_prepare() { + # Use an installed rails version rather than live source from github. + sed -i -e '/\(rack\|rails\|simplecov\)/ s/,/#/' \ + -e '/simplecov/d' Gemfile || die + + sed -i -e '/simplecov/I s:^:#:' test/test_helper.rb || die +} |