datum 0.9.1 → 0.9.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.
data/lib/datum/version.rb
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
module Datum
|
|
2
|
-
VERSION = "0.9.
|
|
2
|
+
VERSION = "0.9.2"
|
|
3
3
|
end
|
|
4
4
|
|
|
5
5
|
## 0.8.1
|
|
@@ -25,4 +25,6 @@ end
|
|
|
25
25
|
## 0.9.1
|
|
26
26
|
## updated datum_migration template to include attr_accessible for all
|
|
27
27
|
## attributes
|
|
28
|
-
## fixed datum verification to use attr_accessible
|
|
28
|
+
## fixed datum verification to use attr_accessible
|
|
29
|
+
## 0.9.2
|
|
30
|
+
## tiny update to fix template for models
|
|
@@ -2,5 +2,5 @@
|
|
|
2
2
|
class <%= class_name %> < ActiveRecord::Base
|
|
3
3
|
establish_connection :datum
|
|
4
4
|
<%= " set_table_name :#{table_name}\n" if table_name -%>
|
|
5
|
-
attr_accessible <%=
|
|
5
|
+
attr_accessible <%= model_attributes.map { |a| ":#{a.name}" }.join(", ") %>
|
|
6
6
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: datum
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.9.
|
|
4
|
+
version: 0.9.2
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -122,7 +122,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
122
122
|
version: '0'
|
|
123
123
|
segments:
|
|
124
124
|
- 0
|
|
125
|
-
hash:
|
|
125
|
+
hash: 4179343628097419980
|
|
126
126
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
127
127
|
none: false
|
|
128
128
|
requirements:
|
|
@@ -131,7 +131,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
131
131
|
version: '0'
|
|
132
132
|
segments:
|
|
133
133
|
- 0
|
|
134
|
-
hash:
|
|
134
|
+
hash: 4179343628097419980
|
|
135
135
|
requirements: []
|
|
136
136
|
rubyforge_project:
|
|
137
137
|
rubygems_version: 1.8.24
|