murbanski-affected_on_destroy 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
data/Rakefile CHANGED
@@ -10,6 +10,7 @@ begin
10
10
  gem.email = "marcin@urbanski.vdl.pl"
11
11
  gem.homepage = "http://github.com/murbanski/affected_on_destroy"
12
12
  gem.authors = ["Marcin Urbanski"]
13
+ gem.files = FileList["[A-Z]*", "{rails,lib}/**/*"]
13
14
  # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
14
15
  end
15
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.1
1
+ 0.0.2
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: murbanski-affected_on_destroy
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Marcin Urbanski
@@ -23,16 +23,12 @@ extra_rdoc_files:
23
23
  - LICENSE
24
24
  - README.md
25
25
  files:
26
- - .gitignore
27
26
  - LICENSE
28
27
  - README.md
29
28
  - Rakefile
30
29
  - VERSION
31
- - affected_on_destroy.gemspec
32
30
  - lib/affected_on_destroy.rb
33
31
  - rails/init.rb
34
- - test/affected_on_destroy_test.rb
35
- - test/test_helper.rb
36
32
  has_rdoc: true
37
33
  homepage: http://github.com/murbanski/affected_on_destroy
38
34
  post_install_message:
@@ -59,6 +55,5 @@ rubygems_version: 1.2.0
59
55
  signing_key:
60
56
  specification_version: 2
61
57
  summary: Rails plugin showing which related records will be deleted from DB when :dependent => :destroy is used
62
- test_files:
63
- - test/affected_on_destroy_test.rb
64
- - test/test_helper.rb
58
+ test_files: []
59
+
data/.gitignore DELETED
@@ -1,5 +0,0 @@
1
- *.sw?
2
- .DS_Store
3
- coverage
4
- rdoc
5
- pkg
@@ -1,48 +0,0 @@
1
- # -*- encoding: utf-8 -*-
2
-
3
- Gem::Specification.new do |s|
4
- s.name = %q{affected_on_destroy}
5
- s.version = "0.0.1"
6
-
7
- s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8
- s.authors = ["Marcin Urbanski"]
9
- s.date = %q{2009-06-26}
10
- s.description = %q{Rails plugin showing which related records will be deleted from DB when :dependent => :destroy is used}
11
- s.email = %q{marcin@urbanski.vdl.pl}
12
- s.extra_rdoc_files = [
13
- "LICENSE",
14
- "README.md"
15
- ]
16
- s.files = [
17
- ".gitignore",
18
- "LICENSE",
19
- "README.md",
20
- "Rakefile",
21
- "VERSION",
22
- "affected_on_destroy.gemspec",
23
- "lib/affected_on_destroy.rb",
24
- "rails/init.rb",
25
- "test/affected_on_destroy_test.rb",
26
- "test/test_helper.rb"
27
- ]
28
- s.has_rdoc = true
29
- s.homepage = %q{http://github.com/murbanski/affected_on_destroy}
30
- s.rdoc_options = ["--charset=UTF-8"]
31
- s.require_paths = ["lib"]
32
- s.rubygems_version = %q{1.3.1}
33
- s.summary = %q{Rails plugin showing which related records will be deleted from DB when :dependent => :destroy is used}
34
- s.test_files = [
35
- "test/affected_on_destroy_test.rb",
36
- "test/test_helper.rb"
37
- ]
38
-
39
- if s.respond_to? :specification_version then
40
- current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
41
- s.specification_version = 2
42
-
43
- if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
44
- else
45
- end
46
- else
47
- end
48
- end
@@ -1,7 +0,0 @@
1
- require 'test_helper'
2
-
3
- class AffectedOnDestroyTest < Test::Unit::TestCase
4
- should "probably rename this file and start testing for real" do
5
- flunk "hey buddy, you should probably rename this file and start testing for real"
6
- end
7
- end
data/test/test_helper.rb DELETED
@@ -1,10 +0,0 @@
1
- require 'rubygems'
2
- require 'test/unit'
3
- require 'shoulda'
4
-
5
- $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
6
- $LOAD_PATH.unshift(File.dirname(__FILE__))
7
- require 'affected_on_destroy'
8
-
9
- class Test::Unit::TestCase
10
- end