diff options
author | Hans de Graaff <graaff@gentoo.org> | 2010-10-02 12:52:19 +0000 |
---|---|---|
committer | Hans de Graaff <graaff@gentoo.org> | 2010-10-02 12:52:19 +0000 |
commit | 9957bcfe916daeb56533b1ccb7001361a3d095a0 (patch) | |
tree | a5a438e46ebdcf26094b3cd46e27fe41ed41a3fd /dev-ruby/twitter/twitter-0.9.12.ebuild | |
parent | Marked ~x64-macos, bug #333981 (diff) | |
download | gentoo-2-9957bcfe916daeb56533b1ccb7001361a3d095a0.tar.gz gentoo-2-9957bcfe916daeb56533b1ccb7001361a3d095a0.tar.bz2 gentoo-2-9957bcfe916daeb56533b1ccb7001361a3d095a0.zip |
Version bump with enhancements and bug fixes. Reenable tests.
(Portage version: 2.1.8.3/cvs/Linux x86_64)
Diffstat (limited to 'dev-ruby/twitter/twitter-0.9.12.ebuild')
-rw-r--r-- | dev-ruby/twitter/twitter-0.9.12.ebuild | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/dev-ruby/twitter/twitter-0.9.12.ebuild b/dev-ruby/twitter/twitter-0.9.12.ebuild new file mode 100644 index 000000000000..8a67fd382c35 --- /dev/null +++ b/dev-ruby/twitter/twitter-0.9.12.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/twitter/twitter-0.9.12.ebuild,v 1.1 2010/10/02 12:52:19 graaff Exp $ + +EAPI="2" +USE_RUBY="ruby18" + +RUBY_FAKEGEM_TASK_DOC="" +RUBY_FAKEGEM_EXTRADOC="HISTORY.rdoc Notes README.rdoc" + +inherit ruby-fakegem + +DESCRIPTION="Ruby wrapper around the Twitter API" +HOMEPAGE="http://twitter.rubyforge.org/" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +ruby_add_rdepend ">=dev-ruby/httparty-0.6.1 + >=dev-ruby/oauth-0.4.3 + >=dev-ruby/hashie-0.4.0 + >=dev-ruby/multi_json-0.0.4" + +ruby_add_bdepend "test? ( + >=dev-ruby/fakeweb-1.3.0 + >=dev-ruby/mocha-0.9.8 + >=dev-ruby/shoulda-2.10.0 + )" + +all_ruby_prepare() { + sed -i -e '/check_dependencies/d' Rakefile || die "Unable to remove dependency check." + + sed -i -e '/[Bb]undler/d' Rakefile || die "Unable to remove bundler code." +} |