diff options
Diffstat (limited to 'dev-ruby/ammeter/ammeter-0.2.2.ebuild')
-rw-r--r-- | dev-ruby/ammeter/ammeter-0.2.2.ebuild | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/dev-ruby/ammeter/ammeter-0.2.2.ebuild b/dev-ruby/ammeter/ammeter-0.2.2.ebuild new file mode 100644 index 000000000000..f3a1b13aab37 --- /dev/null +++ b/dev-ruby/ammeter/ammeter-0.2.2.ebuild @@ -0,0 +1,54 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ammeter/ammeter-0.2.2.ebuild,v 1.1 2012/01/16 20:51:03 flameeyes Exp $ + +EAPI=4 +USE_RUBY="ruby18 ree18" + +#RUBY_FAKEGEM_TASK_DOC="" +RUBY_FAKEGEM_TASK_TEST="spec" + +RUBY_FAKEGEM_EXTRADOC="README.md" + +RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec" + +inherit ruby-fakegem + +DESCRIPTION="Write specs for your Rails 3+ generators" +HOMEPAGE="https://github.com/alexrothenberg/ammeter" +LICENSE="MIT" + +SLOT="0" +KEYWORDS="~amd64" +IUSE="test" + +ruby_add_rdepend " + >=dev-ruby/activesupport-3.1 + >=dev-ruby/railties-3.1 + >=dev-ruby/rspec-2.2 + >=dev-ruby/rspec-rails-2.2 +" + +ruby_add_bdepend " + test? ( + dev-ruby/rails:3.1 + dev-ruby/uglifier + dev-ruby/rake + dev-ruby/coffee-rails + dev-ruby/sass-rails + dev-ruby/jquery-rails + dev-util/cucumber + dev-util/aruba + dev-ruby/sqlite3-ruby + )" + +all_ruby_prepare() { + # fix the gemspec; we remove the version dependencies from there, as + # it requires _older_ versions of its dependencies.. it doesn't + # really seem to be the case though. Also remove the references to + # git ls-files to avoid calling it. + sed -i \ + -e '/git ls-files/d' \ + -e '/\(cucumber\|aruba\)/s:,.*$::' \ + ${RUBY_FAKEGEM_GEMSPEC} || die +} |