acts_as_tableless 0.0.3 → 0.1.0

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.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: acts_as_tableless
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.1.0
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-06-22 00:00:00.000000000 Z
12
+ date: 2012-06-27 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rails
@@ -61,8 +61,13 @@ files:
61
61
  - test/dummy/app/assets/stylesheets/application.css
62
62
  - test/dummy/app/controllers/application_controller.rb
63
63
  - test/dummy/app/helpers/application_helper.rb
64
- - test/dummy/app/models/active_record_modle_with_association.rb
65
- - test/dummy/app/models/has_many_tableless_object.rb
64
+ - test/dummy/app/models/color.rb
65
+ - test/dummy/app/models/letter.rb
66
+ - test/dummy/app/models/number.rb
67
+ - test/dummy/app/models/shape.rb
68
+ - test/dummy/app/models/size.rb
69
+ - test/dummy/app/models/user.rb
70
+ - test/dummy/app/models/user_color.rb
66
71
  - test/dummy/app/views/layouts/application.html.erb
67
72
  - test/dummy/config/application.rb
68
73
  - test/dummy/config/boot.rb
@@ -80,7 +85,12 @@ files:
80
85
  - test/dummy/config/locales/en.yml
81
86
  - test/dummy/config/routes.rb
82
87
  - test/dummy/config.ru
88
+ - test/dummy/db/development.sqlite3
89
+ - test/dummy/db/migrate/20120626092235_create_users.rb
90
+ - test/dummy/db/migrate/20120626092236_create_user_colors.rb
91
+ - test/dummy/db/schema.rb
83
92
  - test/dummy/db/test.sqlite3
93
+ - test/dummy/log/development.log
84
94
  - test/dummy/log/test.log
85
95
  - test/dummy/public/404.html
86
96
  - test/dummy/public/422.html
@@ -120,8 +130,13 @@ test_files:
120
130
  - test/dummy/app/assets/stylesheets/application.css
121
131
  - test/dummy/app/controllers/application_controller.rb
122
132
  - test/dummy/app/helpers/application_helper.rb
123
- - test/dummy/app/models/active_record_modle_with_association.rb
124
- - test/dummy/app/models/has_many_tableless_object.rb
133
+ - test/dummy/app/models/color.rb
134
+ - test/dummy/app/models/letter.rb
135
+ - test/dummy/app/models/number.rb
136
+ - test/dummy/app/models/shape.rb
137
+ - test/dummy/app/models/size.rb
138
+ - test/dummy/app/models/user.rb
139
+ - test/dummy/app/models/user_color.rb
125
140
  - test/dummy/app/views/layouts/application.html.erb
126
141
  - test/dummy/config/application.rb
127
142
  - test/dummy/config/boot.rb
@@ -139,7 +154,12 @@ test_files:
139
154
  - test/dummy/config/locales/en.yml
140
155
  - test/dummy/config/routes.rb
141
156
  - test/dummy/config.ru
157
+ - test/dummy/db/development.sqlite3
158
+ - test/dummy/db/migrate/20120626092235_create_users.rb
159
+ - test/dummy/db/migrate/20120626092236_create_user_colors.rb
160
+ - test/dummy/db/schema.rb
142
161
  - test/dummy/db/test.sqlite3
162
+ - test/dummy/log/development.log
143
163
  - test/dummy/log/test.log
144
164
  - test/dummy/public/404.html
145
165
  - test/dummy/public/422.html
@@ -1,7 +0,0 @@
1
- class ActiveRecordModleWithAssociation < ActiveRecord::Base
2
- acts_as_tableless
3
- column :id, :integer
4
- column :name, :string
5
- attr_accessible :id, :name
6
- has_many :has_many_tableless_objects
7
- end
@@ -1,7 +0,0 @@
1
- class HasManyTablelessObject < ActiveRecord::Base
2
- acts_as_tableless
3
- column :id, :integer
4
- column :test, :string
5
- column :active_record_modle_with_association_id, :integer
6
- attr_accessible :id, :test, :active_record_modle_with_association_id
7
- end