acts_as 0.6.2 → 0.6.3
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.
- checksums.yaml +4 -4
- data/acts_as.gemspec +1 -1
- data/lib/acts_as/version.rb +1 -1
- data/spec/support/active_record.rb +5 -5
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 766bcda0d611baa22b79963cd324f58a217a0d1e
|
|
4
|
+
data.tar.gz: b516b6ab0913371eb77ad5ab849d8a20a6fef8c8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d6885a35166aa95fd8ba7ad177a75cdcb4b9f7b206d95ee3435bb1129c32a91df92235627bee36fd931eb683bcd0e6854e49a17f2bc5a3b323b1249a8c62cf4f
|
|
7
|
+
data.tar.gz: c1898259ca401335793e9487112d730782a5d386b717960470acbddacf14d309490ab924446fc997a09df75dad7c36c0d475256acfb5c83af7d02f9b8afcfbf3
|
data/acts_as.gemspec
CHANGED
data/lib/acts_as/version.rb
CHANGED
|
@@ -9,27 +9,27 @@ ActiveRecord::Migration.create_table :users do |t|
|
|
|
9
9
|
t.string :type
|
|
10
10
|
t.integer :clan_id
|
|
11
11
|
t.integer :profile_id
|
|
12
|
-
t.timestamps
|
|
12
|
+
t.timestamps null: false
|
|
13
13
|
end
|
|
14
14
|
|
|
15
15
|
ActiveRecord::Migration.create_table :rebel_profiles do |t|
|
|
16
16
|
t.string :serial_data
|
|
17
|
-
t.timestamps
|
|
17
|
+
t.timestamps null: false
|
|
18
18
|
end
|
|
19
19
|
|
|
20
20
|
ActiveRecord::Migration.create_table :imperial_profiles do |t|
|
|
21
21
|
t.string :analog_data
|
|
22
|
-
t.timestamps
|
|
22
|
+
t.timestamps null: false
|
|
23
23
|
end
|
|
24
24
|
|
|
25
25
|
ActiveRecord::Migration.create_table :clans do |t|
|
|
26
26
|
t.string :name
|
|
27
27
|
t.integer :strength, default: 50
|
|
28
28
|
t.boolean :cool
|
|
29
|
-
t.timestamps
|
|
29
|
+
t.timestamps null: false
|
|
30
30
|
end
|
|
31
31
|
|
|
32
32
|
ActiveRecord::Migration.create_table :x_wings do |t|
|
|
33
33
|
t.integer :rebel_id
|
|
34
|
-
t.timestamps
|
|
34
|
+
t.timestamps null: false
|
|
35
35
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: acts_as
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.6.
|
|
4
|
+
version: 0.6.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Hired, Inc
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2015-
|
|
12
|
+
date: 2015-03-18 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: bundler
|
|
@@ -73,14 +73,14 @@ dependencies:
|
|
|
73
73
|
requirements:
|
|
74
74
|
- - "<"
|
|
75
75
|
- !ruby/object:Gem::Version
|
|
76
|
-
version: '4.
|
|
76
|
+
version: '4.3'
|
|
77
77
|
type: :runtime
|
|
78
78
|
prerelease: false
|
|
79
79
|
version_requirements: !ruby/object:Gem::Requirement
|
|
80
80
|
requirements:
|
|
81
81
|
- - "<"
|
|
82
82
|
- !ruby/object:Gem::Version
|
|
83
|
-
version: '4.
|
|
83
|
+
version: '4.3'
|
|
84
84
|
description: ActiveRecord extension for easy STI Delegation
|
|
85
85
|
email:
|
|
86
86
|
- winfred@hired.com
|
|
@@ -121,7 +121,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
121
121
|
version: '0'
|
|
122
122
|
requirements: []
|
|
123
123
|
rubyforge_project:
|
|
124
|
-
rubygems_version: 2.
|
|
124
|
+
rubygems_version: 2.4.6
|
|
125
125
|
signing_key:
|
|
126
126
|
specification_version: 4
|
|
127
127
|
summary: delegate an entire 1:1 association worth of active record field-related helpers
|