summaryrefslogtreecommitdiff
blob: c8f00a15edd3b9f4883a7d48f3a08f1d53ef09bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/twitter/twitter-2.5.0.ebuild,v 1.1 2012/06/10 06:08:48 graaff Exp $

EAPI="2"
USE_RUBY="ruby18 ree18"

RUBY_FAKEGEM_TASK_DOC="yard"
RUBY_FAKEGEM_EXTRADOC="HISTORY.md README.md"

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/activesupport-3*
	=dev-ruby/faraday-0*
	>=dev-ruby/faraday-0.8
	>=dev-ruby/multi_json-1.3
	=dev-ruby/multi_json-1*
	=dev-ruby/simple_oauth-0.1*
	>=dev-ruby/simple_oauth-0.1.6"

ruby_add_bdepend "test? (
	dev-ruby/rspec:2
	dev-ruby/webmock
	)
	doc? ( dev-ruby/yard )"

all_ruby_prepare() {
	rm Gemfile || die
	sed -i -e '/[Bb]undler/d' Rakefile || die "Unable to remove bundler code."

	# Remove options not supported by older rspec
	rm .rspec || die
}

each_ruby_test() {
	CI=true ${RUBY} -S rspec spec || die
}