summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans de Graaff <graaff@gentoo.org>2016-01-22 08:29:47 +0100
committerHans de Graaff <graaff@gentoo.org>2016-01-22 08:52:22 +0100
commit9f8249394049db0b44aa2389f085fd942439bc14 (patch)
treeb776ec894e467a06462407b3052e1d7177e8d0a6 /dev-ruby/protected_attributes
parentdev-ruby/fast_gettext: update description (diff)
downloadgentoo-9f8249394049db0b44aa2389f085fd942439bc14.tar.gz
gentoo-9f8249394049db0b44aa2389f085fd942439bc14.tar.bz2
gentoo-9f8249394049db0b44aa2389f085fd942439bc14.zip
dev-ruby/protected_attributes: cleanup
Package-Manager: portage-2.2.26
Diffstat (limited to 'dev-ruby/protected_attributes')
-rw-r--r--dev-ruby/protected_attributes/Manifest2
-rw-r--r--dev-ruby/protected_attributes/protected_attributes-1.0.9.ebuild40
-rw-r--r--dev-ruby/protected_attributes/protected_attributes-1.1.1.ebuild40
3 files changed, 0 insertions, 82 deletions
diff --git a/dev-ruby/protected_attributes/Manifest b/dev-ruby/protected_attributes/Manifest
index 89d9a28cd59c..8bdd4c80afef 100644
--- a/dev-ruby/protected_attributes/Manifest
+++ b/dev-ruby/protected_attributes/Manifest
@@ -1,3 +1 @@
-DIST protected_attributes-1.0.9.tar.gz 22212 SHA256 e22ce3bbf9a6edea7c468518fb86aafefb4137f937f62552fe2d56c89fc2e19e SHA512 ed630460df14ea290d9146448908067e0f418568fa31f1f7dbc014954738ca8ee0ff70992c8d77eab9af446a2e1a91e24acb7585d9030a4ab6cae6ede8ee8a4a WHIRLPOOL 7af9a3c1c2c93c0b17443b7fbcbedbd1baa7c54c7541a692353195d3ea457ac530f31f2446835918c2ee0512aa585b3d574a913a9eebd1a39f24c5a988ac3d8c
-DIST protected_attributes-1.1.1.tar.gz 23227 SHA256 bb946ebc575a8f9286ba689b641f6f397a79ea308c8008a1a30ee50c6c3b7bbc SHA512 94b21cfc5bbb16ad704e627a89d091d81e5a4c468052de3e6ad80292dab057408b4e6b230e68ef2382a089985faef790568851747e684710ecc5ad4ff6c3f0d3 WHIRLPOOL c5571d93a27301854bf27505ff98dc146a4f91fbb64f5d5ca36588239b535d6ca47f3971242ae2444e496151abd13239560cec2e17296c757549c826d911ba06
DIST protected_attributes-1.1.3.tar.gz 23148 SHA256 0dba89d47e96762b6e2c9cedc1d96a06a16bb307136e23cfc89830602bc97a4b SHA512 e20acd5c392eedc62af18745518249273351104dd0a05e33e459d2ac36706a7c6fdc151d4043370a4527d3e8e96417b26bad2e0f3b21cef3a512bd169d635d45 WHIRLPOOL 311cd7fd9634794d72fae25a903767cbf3894ea07814e8654739e30b3354a49cbe1417dd89462f94f7ed290e7d182132f57aa21106a1e9282be55f5c72508164
diff --git a/dev-ruby/protected_attributes/protected_attributes-1.0.9.ebuild b/dev-ruby/protected_attributes/protected_attributes-1.0.9.ebuild
deleted file mode 100644
index e217a9ffa03a..000000000000
--- a/dev-ruby/protected_attributes/protected_attributes-1.0.9.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-USE_RUBY="ruby19 ruby20 ruby21"
-
-RUBY_FAKEGEM_TASK_TEST="test"
-
-RUBY_FAKEGEM_TASK_DOC=""
-RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"
-
-inherit ruby-fakegem
-
-DESCRIPTION="Protect attributes from mass-assignment in ActiveRecord models"
-HOMEPAGE="https://github.com/rails/protected_attributes"
-SRC_URI="https://github.com/rails/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-SLOT="1"
-
-LICENSE="MIT"
-
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-
-ruby_add_rdepend "
- =dev-ruby/activemodel-4* >=dev-ruby/activemodel-4.0.1
-"
-
-ruby_add_bdepend "test? (
- dev-ruby/bundler
- =dev-ruby/actionpack-4*
- =dev-ruby/activerecord-4*
- =dev-ruby/rails-4*
- dev-ruby/mocha
- dev-ruby/sqlite3
-)"
-
-all_ruby_prepare() {
- sed -i -e '/github/ s:^:#:' Gemfile || die
-}
diff --git a/dev-ruby/protected_attributes/protected_attributes-1.1.1.ebuild b/dev-ruby/protected_attributes/protected_attributes-1.1.1.ebuild
deleted file mode 100644
index aeb4f5d78f03..000000000000
--- a/dev-ruby/protected_attributes/protected_attributes-1.1.1.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-USE_RUBY="ruby19 ruby20 ruby21"
-
-RUBY_FAKEGEM_TASK_TEST="test"
-
-RUBY_FAKEGEM_TASK_DOC=""
-RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"
-
-inherit ruby-fakegem
-
-DESCRIPTION="Protect attributes from mass-assignment in ActiveRecord models"
-HOMEPAGE="https://github.com/rails/protected_attributes"
-SRC_URI="https://github.com/rails/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-SLOT="1"
-
-LICENSE="MIT"
-
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-
-ruby_add_rdepend "
- =dev-ruby/activemodel-4*:* >=dev-ruby/activemodel-4.0.1:*
-"
-
-ruby_add_bdepend "test? (
- dev-ruby/bundler
- =dev-ruby/actionpack-4*
- =dev-ruby/activerecord-4*
- =dev-ruby/rails-4*
- dev-ruby/mocha
- dev-ruby/sqlite3
-)"
-
-all_ruby_prepare() {
- sed -i -e '/github/ s:^:#:' Gemfile || die
-}