class-table-inheritance 1.1.1 → 1.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,23 @@
1
+ require 'rake'
2
+ require 'rake/testtask'
3
+ require 'rake/rdoctask'
4
+
5
+ desc 'Default: run unit tests.'
6
+ task :default => :test
7
+
8
+ desc 'Test the class_table_inheritance plugin.'
9
+ Rake::TestTask.new(:test) do |t|
10
+ t.libs << 'lib'
11
+ t.libs << 'test'
12
+ t.pattern = 'test/**/*_test.rb'
13
+ t.verbose = true
14
+ end
15
+
16
+ desc 'Generate documentation for the class_table_inheritance plugin.'
17
+ Rake::RDocTask.new(:rdoc) do |rdoc|
18
+ rdoc.rdoc_dir = 'rdoc'
19
+ rdoc.title = 'ClassTableInheritance'
20
+ rdoc.options << '--line-numbers' << '--inline-source'
21
+ rdoc.rdoc_files.include('README')
22
+ rdoc.rdoc_files.include('lib/**/*.rb')
23
+ end
data/init.rb ADDED
@@ -0,0 +1 @@
1
+ require 'class-table-inheritance'
metadata CHANGED
@@ -1,25 +1,25 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: class-table-inheritance
3
3
  version: !ruby/object:Gem::Version
4
- hash: 17
4
+ hash: 23
5
5
  prerelease: false
6
6
  segments:
7
7
  - 1
8
8
  - 1
9
- - 1
10
- version: 1.1.1
9
+ - 2
10
+ version: 1.1.2
11
11
  platform: ruby
12
12
  authors:
13
13
  - Bruno Frank Cordeiro
14
- autorequire: name
14
+ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2010-12-01 00:00:00 -02:00
18
+ date: 2010-12-03 00:00:00 -02:00
19
19
  default_executable:
20
20
  dependencies: []
21
21
 
22
- description:
22
+ description: ActiveRecord plugin designed to allow simple multiple table inheritance CTI.
23
23
  email: bfscordeiro@gmail.com
24
24
  executables: []
25
25
 
@@ -28,10 +28,16 @@ extensions: []
28
28
  extra_rdoc_files:
29
29
  - README
30
30
  files:
31
+ - class-table-inheritance-1.0.0.gem
32
+ - class-table-inheritance-1.1.0.gem
33
+ - class-table-inheritance-1.1.1.gem
34
+ - class-table-inheritance-1.2.0.gem
35
+ - class-table-inheritance-1.2.1.gem
36
+ - init.rb
31
37
  - lib/class-table-inheritance.rb
32
38
  - lib/inherits-migration.rb
39
+ - Rakefile
33
40
  - README
34
- - test/class_table_inheritance_test.rb
35
41
  has_rdoc: true
36
42
  homepage:
37
43
  licenses: []
@@ -66,5 +72,5 @@ rubygems_version: 1.3.7
66
72
  signing_key:
67
73
  specification_version: 3
68
74
  summary: ActiveRecord plugin designed to allow simple multiple table (class) inheritance.
69
- test_files:
70
- - test/class_table_inheritance_test.rb
75
+ test_files: []
76
+
@@ -1,8 +0,0 @@
1
- require 'test_helper'
2
-
3
- class ClassTableInheritanceTest < ActiveSupport::TestCase
4
- # Replace this with your real tests.
5
- test "the truth" do
6
- assert true
7
- end
8
- end