diff options
Diffstat (limited to 'dev-ruby/oauth/oauth-0.5.8.ebuild')
-rw-r--r-- | dev-ruby/oauth/oauth-0.5.8.ebuild | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/dev-ruby/oauth/oauth-0.5.8.ebuild b/dev-ruby/oauth/oauth-0.5.8.ebuild index a675a968338d..6aacd85e42e9 100644 --- a/dev-ruby/oauth/oauth-0.5.8.ebuild +++ b/dev-ruby/oauth/oauth-0.5.8.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=8 -USE_RUBY="ruby26 ruby27" +USE_RUBY="ruby26 ruby27 ruby30" RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md TODO" @@ -26,13 +26,13 @@ ruby_add_bdepend "test? ( dev-ruby/mocha:1.0 dev-ruby/webmock dev-ruby/rack - dev-ruby/actionpack:6.0 - dev-ruby/railties:6.0 + dev-ruby/actionpack:6.1 + dev-ruby/railties:6.1 )" all_ruby_prepare() { # Require a compatible version of mocha - sed -i -e '1igem "mocha", "~> 1.0"; gem "railties", "~>6.0.0" ; gem "actionpack", "~>6.0.0"' \ + sed -i -e '1igem "mocha", "~> 1.0"; gem "railties", "~>6.1.0" ; gem "actionpack", "~>6.1.0"' \ -e '2i gem "test-unit"; require "test/unit"' \ -e '/mocha/ s/mini_test/minitest/' \ -e '/\(byebug\|minitest_helpers\|simplecov\)/I s:^:#:' test/test_helper.rb || die |