diff options
Diffstat (limited to 'dev-ruby/combustion/combustion-1.3.7-r2.ebuild')
-rw-r--r-- | dev-ruby/combustion/combustion-1.3.7-r2.ebuild | 58 |
1 files changed, 0 insertions, 58 deletions
diff --git a/dev-ruby/combustion/combustion-1.3.7-r2.ebuild b/dev-ruby/combustion/combustion-1.3.7-r2.ebuild deleted file mode 100644 index a7313fbd40ee..000000000000 --- a/dev-ruby/combustion/combustion-1.3.7-r2.ebuild +++ /dev/null @@ -1,58 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -USE_RUBY="ruby27 ruby30 ruby31 ruby32" -RUBY_FAKEGEM_BINWRAP="" -RUBY_FAKEGEM_EXTRADOC="README.md" -RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec" -inherit ruby-fakegem - -DESCRIPTION="Elegant Rails Engine Testing" -HOMEPAGE="https://github.com/pat/combustion" -SRC_URI="https://github.com/pat/combustion/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~arm" - -ruby_add_rdepend " - >=dev-ruby/activesupport-3.0.0:* - >=dev-ruby/railties-3.0.0:* - >=dev-ruby/thor-0.14.6:* -" -# Needed for e.g. cannot load such file -- action_mailer/railtie -ruby_add_bdepend " - test? ( - >=dev-ruby/activemodel-3.0.0:* - >=dev-ruby/activerecord-3.0.0:* - dev-ruby/bundler - >=dev-ruby/rails-3.0.0:* - dev-ruby/rspec:3 - >=dev-ruby/sqlite3-1.4 - ) -" - -each_ruby_prepare() { - sed -i \ - -e '/sqlite3/s:1.3.13:1.4:' \ - -e '/rubocop/d' \ - Gemfile || die - - # appraisal, rubocop: useless for us test deps - # mysql2, pg,: optional runtime deps - sed -i \ - -e '/appraisal/d' \ - -e '/mysql2/d' \ - -e '/pg/d' \ - -e '/rubocop/d' \ - ${PN}.gemspec || die - - sed -i -e '/rubocop/d' Rakefile || die -} - -each_ruby_test() { - local -x DB_ADAPTER=sqlite3 - ${RUBY} -S bundle exec rake spec || die -} |