active_type 1.9.0 → 2.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.
- checksums.yaml +4 -4
- data/.github/workflows/test.yml +4 -12
- data/.ruby-version +1 -1
- data/CHANGELOG.md +17 -0
- data/Gemfile +1 -1
- data/Gemfile.4.2.mysql2.lock +2 -2
- data/Gemfile.4.2.pg.lock +2 -2
- data/Gemfile.4.2.sqlite3.lock +2 -2
- data/Gemfile.5.2.mysql2.lock +1 -1
- data/Gemfile.5.2.pg.lock +1 -1
- data/Gemfile.5.2.sqlite3.lock +1 -1
- data/Gemfile.6.0.sqlite3.lock +1 -1
- data/Gemfile.6.1.pg.lock +1 -1
- data/Gemfile.6.1.sqlite3.lock +1 -1
- data/Gemfile.lock +1 -1
- data/README.md +6 -4
- data/lib/active_type/mutation_after_cast_error.rb +6 -0
- data/lib/active_type/not_castable_error.rb +6 -0
- data/lib/active_type/util/unmutable_attributes.rb +32 -0
- data/lib/active_type/util.rb +34 -5
- data/lib/active_type/version.rb +1 -1
- metadata +6 -7
- data/Gemfile.3.2.mysql2 +0 -10
- data/Gemfile.3.2.mysql2.lock +0 -63
- data/Gemfile.3.2.sqlite3 +0 -10
- data/Gemfile.3.2.sqlite3.lock +0 -57
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b0d4c00a8c504822572083cb1a051ff4582c5e0638bc4eca0f064df38f175b2e
|
|
4
|
+
data.tar.gz: b38c8570c9ecf88d267ae7f6e46bd1773c5658494a329b6ae00de114ce274d01
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 925a22fc4566431fc6fa4c3a22cdb86d2889e2c6066ece8a652b98fc8b2a81267c3c4221dc3429bbae7cc34bf9a14534d75b6f0e286c78b95909e581a27e840b
|
|
7
|
+
data.tar.gz: '097eafa44f1c006d76185d0e697bcca2072e820e019c84327432e18d4bf767925f69b988c468a82978fc5cfcfe2a21751b714dd2914adbcc94065ca70aba4a09'
|
data/.github/workflows/test.yml
CHANGED
|
@@ -14,12 +14,8 @@ jobs:
|
|
|
14
14
|
fail-fast: false
|
|
15
15
|
matrix:
|
|
16
16
|
include:
|
|
17
|
-
- ruby: "2.
|
|
18
|
-
gemfile: Gemfile.3.2.sqlite3
|
|
19
|
-
- ruby: "2.3.8"
|
|
17
|
+
- ruby: "2.5.5"
|
|
20
18
|
gemfile: Gemfile.4.2.sqlite3
|
|
21
|
-
- ruby: "2.3.8"
|
|
22
|
-
gemfile: Gemfile.5.2.sqlite3
|
|
23
19
|
- ruby: "2.5.5"
|
|
24
20
|
gemfile: Gemfile.5.2.sqlite3
|
|
25
21
|
- ruby: "2.5.5"
|
|
@@ -80,12 +76,8 @@ jobs:
|
|
|
80
76
|
fail-fast: false
|
|
81
77
|
matrix:
|
|
82
78
|
include:
|
|
83
|
-
- ruby: "2.
|
|
84
|
-
gemfile: Gemfile.3.2.mysql2
|
|
85
|
-
- ruby: "2.3.8"
|
|
79
|
+
- ruby: "2.5.5"
|
|
86
80
|
gemfile: Gemfile.4.2.mysql2
|
|
87
|
-
- ruby: "2.3.8"
|
|
88
|
-
gemfile: Gemfile.5.2.mysql2
|
|
89
81
|
- ruby: "2.6.3"
|
|
90
82
|
gemfile: Gemfile.5.2.mysql2
|
|
91
83
|
- ruby: "2.7.2"
|
|
@@ -135,9 +127,9 @@ jobs:
|
|
|
135
127
|
fail-fast: false
|
|
136
128
|
matrix:
|
|
137
129
|
include:
|
|
138
|
-
- ruby: "2.
|
|
130
|
+
- ruby: "2.5.5"
|
|
139
131
|
gemfile: Gemfile.4.2.pg
|
|
140
|
-
- ruby: "2.
|
|
132
|
+
- ruby: "2.5.5"
|
|
141
133
|
gemfile: Gemfile.5.2.pg
|
|
142
134
|
- ruby: "2.5.5"
|
|
143
135
|
gemfile: Gemfile.6.1.pg
|
data/.ruby-version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.
|
|
1
|
+
2.7.2
|
data/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,23 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
|
|
5
5
|
## Unreleased changes
|
|
6
6
|
|
|
7
|
+
## 2.0.0 (2021-11-24)
|
|
8
|
+
|
|
9
|
+
* Added: Casting is prevented when the base record has changes in its already loaded associations, because those would be lost. Option `force: true` can be used to override this and still do the cast (this is not recommended).
|
|
10
|
+
* Added: After casting, the base record will not be usable any more. The base record and the newly created casted record share state which is unexpected. Option `force: true` can be used to override this, so the base record is still usable (this is not recommended).
|
|
11
|
+
|
|
12
|
+
## 1.10.1 (2021-10-19)
|
|
13
|
+
|
|
14
|
+
* Removed: When casting an unsaved record, the new record will no longer have the same associations as the base record. This was introduced with version 1.8.0 and lead to issues (#147 and #148). Therefore the change was rolled back.
|
|
15
|
+
|
|
16
|
+
## 1.10.0 (2021-08-11)
|
|
17
|
+
|
|
18
|
+
* Removed: Tests for Ruby 2.4 and ActiveRecord 3.2.
|
|
19
|
+
|
|
20
|
+
## 1.9.1 (2021-06-29)
|
|
21
|
+
|
|
22
|
+
* Fixed: Retain `#mutations_from_database` when using ActiveType.cast (Rails 5.2+). Thanks to @unrooty-infinum.
|
|
23
|
+
|
|
7
24
|
## 1.9.0 (2021-05-20)
|
|
8
25
|
|
|
9
26
|
* Fixed: Extended records now use their own I18n namespace when looking up translations for models or attributes.
|
data/Gemfile
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
Gemfile.5.2.pg
|
|
1
|
+
./Gemfile.5.2.pg
|
data/Gemfile.4.2.mysql2.lock
CHANGED
data/Gemfile.4.2.pg.lock
CHANGED
data/Gemfile.4.2.sqlite3.lock
CHANGED
data/Gemfile.5.2.mysql2.lock
CHANGED
data/Gemfile.5.2.pg.lock
CHANGED
data/Gemfile.5.2.sqlite3.lock
CHANGED
data/Gemfile.6.0.sqlite3.lock
CHANGED
data/Gemfile.6.1.pg.lock
CHANGED
data/Gemfile.6.1.sqlite3.lock
CHANGED
data/Gemfile.lock
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
Gemfile.5.2.pg.lock
|
|
1
|
+
./Gemfile.5.2.pg.lock
|
data/README.md
CHANGED
|
@@ -364,8 +364,10 @@ sign_up.is_a?(SignUp) # => true
|
|
|
364
364
|
This is basically like [`ActiveRecord#becomes`](http://apidock.com/rails/v4.2.1/ActiveRecord/Persistence/becomes), but with less bugs and more consistent behavior.
|
|
365
365
|
|
|
366
366
|
**Note that `cast` is destructive.** The originally casted record (`user`) and the returned record (`sign_up`)
|
|
367
|
-
share internal state (such as attributes). To avoid unexpected behavior,
|
|
368
|
-
|
|
367
|
+
share internal state (such as attributes). To avoid unexpected behavior, the original record will raise an error when trying to change or persist it. Also, casting of a record that has changes in its loaded associations is prevented, because those changes would be lost.
|
|
368
|
+
If you know what you are doing and absolutely want that, you may use the option `force: true` to allow this potentially problematic behaviour, e.g. `sign_up = ActiveType.cast(user, SignUp, force: true)`
|
|
369
|
+
|
|
370
|
+
|
|
369
371
|
|
|
370
372
|
You can also cast an entire relation (scope) to a relation of an `ActiveType::Record`:
|
|
371
373
|
|
|
@@ -405,14 +407,14 @@ Now, if you load `credentials`, you will automatically receive records of type `
|
|
|
405
407
|
Supported Rails versions
|
|
406
408
|
------------------------
|
|
407
409
|
|
|
408
|
-
ActiveType is tested against ActiveRecord
|
|
410
|
+
ActiveType is tested against ActiveRecord 4.2, 5.1, 5.2, 6.0 and 6.1.
|
|
409
411
|
|
|
410
412
|
Later versions might work, earlier will not.
|
|
411
413
|
|
|
412
414
|
Supported Ruby versions
|
|
413
415
|
------------------------
|
|
414
416
|
|
|
415
|
-
ActiveType is tested against 2.
|
|
417
|
+
ActiveType is tested against 2.5, 2.6, 2.7 and 3.0.
|
|
416
418
|
|
|
417
419
|
|
|
418
420
|
Installation
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
require 'active_type/mutation_after_cast_error'
|
|
2
|
+
|
|
3
|
+
module ActiveType
|
|
4
|
+
module Util
|
|
5
|
+
|
|
6
|
+
# This object is used as a substitute for a record's @attributes.
|
|
7
|
+
# Reading from the original @attributes is still allowed, to enable
|
|
8
|
+
# `#inspect` and similar functions.
|
|
9
|
+
# But the @attributes can no longer be mutated and will raise instead.
|
|
10
|
+
class UnmutableAttributes
|
|
11
|
+
|
|
12
|
+
attr_reader :original_attributes
|
|
13
|
+
|
|
14
|
+
def initialize(attributes)
|
|
15
|
+
@original_attributes = attributes
|
|
16
|
+
end
|
|
17
|
+
|
|
18
|
+
def fetch_value(key)
|
|
19
|
+
original_attributes.fetch_value(key)
|
|
20
|
+
end
|
|
21
|
+
|
|
22
|
+
def key?(key)
|
|
23
|
+
original_attributes.key?(key)
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
def method_missing(*args)
|
|
27
|
+
raise MutationAfterCastError, 'Changing a record that has been used to create an ActiveType::Record could have unexpected side effects!'
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
end
|
|
31
|
+
end
|
|
32
|
+
end
|
data/lib/active_type/util.rb
CHANGED
|
@@ -1,11 +1,14 @@
|
|
|
1
|
+
require 'active_type/not_castable_error'
|
|
2
|
+
require 'active_type/util/unmutable_attributes'
|
|
3
|
+
|
|
1
4
|
module ActiveType
|
|
2
5
|
module Util
|
|
3
6
|
|
|
4
|
-
def cast(object, klass)
|
|
7
|
+
def cast(object, klass, force: false)
|
|
5
8
|
if object.is_a?(ActiveRecord::Relation)
|
|
6
9
|
cast_relation(object, klass)
|
|
7
10
|
elsif object.is_a?(ActiveRecord::Base)
|
|
8
|
-
cast_record(object, klass)
|
|
11
|
+
cast_record(object, klass, force: force)
|
|
9
12
|
else
|
|
10
13
|
raise ArgumentError, "Don't know how to cast #{object.inspect}"
|
|
11
14
|
end
|
|
@@ -17,7 +20,11 @@ module ActiveType
|
|
|
17
20
|
|
|
18
21
|
private
|
|
19
22
|
|
|
20
|
-
def cast_record(record, klass)
|
|
23
|
+
def cast_record(record, klass, force: false)
|
|
24
|
+
if associations_touched?(record) && !force
|
|
25
|
+
raise NotCastableError, 'Record has changes in its loaded associations!'
|
|
26
|
+
end
|
|
27
|
+
|
|
21
28
|
# record.becomes(klass).dup
|
|
22
29
|
klass.new do |casted|
|
|
23
30
|
using_single_table_inheritance = using_single_table_inheritance?(klass, casted)
|
|
@@ -34,8 +41,8 @@ module ActiveType
|
|
|
34
41
|
casted.instance_variable_set(:@new_record, record.new_record?)
|
|
35
42
|
# Rails 3.2, 4.2
|
|
36
43
|
casted.instance_variable_set(:@destroyed, record.destroyed?)
|
|
37
|
-
|
|
38
|
-
casted.instance_variable_set(:@
|
|
44
|
+
# Rails 5.2+
|
|
45
|
+
casted.instance_variable_set(:@mutations_from_database, record.instance_variable_get(:@mutations_from_database))
|
|
39
46
|
|
|
40
47
|
# Rails 3.2, 4.2
|
|
41
48
|
errors = record.errors
|
|
@@ -48,6 +55,11 @@ module ActiveType
|
|
|
48
55
|
casted.instance_variable_set(:@errors, errors)
|
|
49
56
|
|
|
50
57
|
casted[klass.inheritance_column] = klass.sti_name if using_single_table_inheritance
|
|
58
|
+
|
|
59
|
+
if !force
|
|
60
|
+
make_record_unusable(record)
|
|
61
|
+
end
|
|
62
|
+
casted
|
|
51
63
|
end
|
|
52
64
|
end
|
|
53
65
|
|
|
@@ -61,6 +73,23 @@ module ActiveType
|
|
|
61
73
|
scoped(klass).merge(scoped(relation))
|
|
62
74
|
end
|
|
63
75
|
|
|
76
|
+
def associations_touched?(record)
|
|
77
|
+
return false unless record.instance_variable_get(:@association_cache)
|
|
78
|
+
|
|
79
|
+
!!record.instance_variable_get(:@association_cache)[:associated_records]&.target&.any? do |target|
|
|
80
|
+
target.changed?
|
|
81
|
+
end
|
|
82
|
+
end
|
|
83
|
+
|
|
84
|
+
def make_record_unusable(record)
|
|
85
|
+
# Changing and saving the base record may lead to unexpected behaviour,
|
|
86
|
+
# since the casted record may have different changes in its autosave
|
|
87
|
+
# associations and will be saved to the same record in the database as
|
|
88
|
+
# the casted record. Therefore we prevent that.
|
|
89
|
+
original_attributes = record.instance_variable_get(:@attributes)
|
|
90
|
+
record.instance_variable_set(:@attributes, UnmutableAttributes.new(original_attributes) )
|
|
91
|
+
end
|
|
92
|
+
|
|
64
93
|
extend self
|
|
65
94
|
|
|
66
95
|
end
|
data/lib/active_type/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: active_type
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version:
|
|
4
|
+
version: '2.0'
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tobias Kraze
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2021-
|
|
12
|
+
date: 2021-11-24 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: bundler
|
|
@@ -65,10 +65,6 @@ files:
|
|
|
65
65
|
- ".ruby-version"
|
|
66
66
|
- CHANGELOG.md
|
|
67
67
|
- Gemfile
|
|
68
|
-
- Gemfile.3.2.mysql2
|
|
69
|
-
- Gemfile.3.2.mysql2.lock
|
|
70
|
-
- Gemfile.3.2.sqlite3
|
|
71
|
-
- Gemfile.3.2.sqlite3.lock
|
|
72
68
|
- Gemfile.4.2.mysql2
|
|
73
69
|
- Gemfile.4.2.mysql2.lock
|
|
74
70
|
- Gemfile.4.2.pg
|
|
@@ -94,18 +90,21 @@ files:
|
|
|
94
90
|
- active_type.gemspec
|
|
95
91
|
- lib/active_type.rb
|
|
96
92
|
- lib/active_type/change_association.rb
|
|
93
|
+
- lib/active_type/mutation_after_cast_error.rb
|
|
97
94
|
- lib/active_type/nested_attributes.rb
|
|
98
95
|
- lib/active_type/nested_attributes/association.rb
|
|
99
96
|
- lib/active_type/nested_attributes/builder.rb
|
|
100
97
|
- lib/active_type/nested_attributes/nests_many_association.rb
|
|
101
98
|
- lib/active_type/nested_attributes/nests_one_association.rb
|
|
102
99
|
- lib/active_type/no_table.rb
|
|
100
|
+
- lib/active_type/not_castable_error.rb
|
|
103
101
|
- lib/active_type/object.rb
|
|
104
102
|
- lib/active_type/record.rb
|
|
105
103
|
- lib/active_type/record_extension.rb
|
|
106
104
|
- lib/active_type/record_extension/inheritance.rb
|
|
107
105
|
- lib/active_type/type_caster.rb
|
|
108
106
|
- lib/active_type/util.rb
|
|
107
|
+
- lib/active_type/util/unmutable_attributes.rb
|
|
109
108
|
- lib/active_type/version.rb
|
|
110
109
|
- lib/active_type/virtual_attributes.rb
|
|
111
110
|
homepage: https://github.com/makandra/active_type
|
|
@@ -127,7 +126,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
127
126
|
- !ruby/object:Gem::Version
|
|
128
127
|
version: '0'
|
|
129
128
|
requirements: []
|
|
130
|
-
rubygems_version: 3.2.
|
|
129
|
+
rubygems_version: 3.2.15
|
|
131
130
|
signing_key:
|
|
132
131
|
specification_version: 4
|
|
133
132
|
summary: Make any Ruby object quack like ActiveRecord
|
data/Gemfile.3.2.mysql2
DELETED
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
source 'https://rubygems.org'
|
|
2
|
-
|
|
3
|
-
gem 'activerecord', '~> 3.2.22.5'
|
|
4
|
-
gem 'rspec', '~> 3.4'
|
|
5
|
-
gem 'mysql2', git: 'https://github.com/makandra/mysql2', branch: '0.3.x-lts'
|
|
6
|
-
gem 'rake'
|
|
7
|
-
gem 'gemika'
|
|
8
|
-
|
|
9
|
-
gem 'active_type', :path => '.'
|
|
10
|
-
gem 'i18n', '=0.6.11' # 0.7 no longer builds for Ruby 1.8.7
|
data/Gemfile.3.2.mysql2.lock
DELETED
|
@@ -1,63 +0,0 @@
|
|
|
1
|
-
GIT
|
|
2
|
-
remote: https://github.com/makandra/mysql2
|
|
3
|
-
revision: c920d41e43c4722d4c065d2ea9d21494c560bd85
|
|
4
|
-
branch: 0.3.x-lts
|
|
5
|
-
specs:
|
|
6
|
-
mysql2 (0.3.21)
|
|
7
|
-
|
|
8
|
-
PATH
|
|
9
|
-
remote: .
|
|
10
|
-
specs:
|
|
11
|
-
active_type (1.6.0)
|
|
12
|
-
activerecord (>= 3.2)
|
|
13
|
-
|
|
14
|
-
GEM
|
|
15
|
-
remote: https://rubygems.org/
|
|
16
|
-
specs:
|
|
17
|
-
activemodel (3.2.22.5)
|
|
18
|
-
activesupport (= 3.2.22.5)
|
|
19
|
-
builder (~> 3.0.0)
|
|
20
|
-
activerecord (3.2.22.5)
|
|
21
|
-
activemodel (= 3.2.22.5)
|
|
22
|
-
activesupport (= 3.2.22.5)
|
|
23
|
-
arel (~> 3.0.2)
|
|
24
|
-
tzinfo (~> 0.3.29)
|
|
25
|
-
activesupport (3.2.22.5)
|
|
26
|
-
i18n (~> 0.6, >= 0.6.4)
|
|
27
|
-
multi_json (~> 1.0)
|
|
28
|
-
arel (3.0.3)
|
|
29
|
-
builder (3.0.4)
|
|
30
|
-
diff-lcs (1.2.5)
|
|
31
|
-
gemika (0.4.1)
|
|
32
|
-
i18n (0.6.11)
|
|
33
|
-
multi_json (1.13.1)
|
|
34
|
-
rake (10.4.2)
|
|
35
|
-
rspec (3.4.0)
|
|
36
|
-
rspec-core (~> 3.4.0)
|
|
37
|
-
rspec-expectations (~> 3.4.0)
|
|
38
|
-
rspec-mocks (~> 3.4.0)
|
|
39
|
-
rspec-core (3.4.1)
|
|
40
|
-
rspec-support (~> 3.4.0)
|
|
41
|
-
rspec-expectations (3.4.0)
|
|
42
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
|
43
|
-
rspec-support (~> 3.4.0)
|
|
44
|
-
rspec-mocks (3.4.1)
|
|
45
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
|
46
|
-
rspec-support (~> 3.4.0)
|
|
47
|
-
rspec-support (3.4.1)
|
|
48
|
-
tzinfo (0.3.55)
|
|
49
|
-
|
|
50
|
-
PLATFORMS
|
|
51
|
-
ruby
|
|
52
|
-
|
|
53
|
-
DEPENDENCIES
|
|
54
|
-
active_type!
|
|
55
|
-
activerecord (~> 3.2.22.5)
|
|
56
|
-
gemika
|
|
57
|
-
i18n (= 0.6.11)
|
|
58
|
-
mysql2!
|
|
59
|
-
rake
|
|
60
|
-
rspec (~> 3.4)
|
|
61
|
-
|
|
62
|
-
BUNDLED WITH
|
|
63
|
-
2.1.4
|
data/Gemfile.3.2.sqlite3
DELETED
data/Gemfile.3.2.sqlite3.lock
DELETED
|
@@ -1,57 +0,0 @@
|
|
|
1
|
-
PATH
|
|
2
|
-
remote: .
|
|
3
|
-
specs:
|
|
4
|
-
active_type (1.6.0)
|
|
5
|
-
activerecord (>= 3.2)
|
|
6
|
-
|
|
7
|
-
GEM
|
|
8
|
-
remote: https://rubygems.org/
|
|
9
|
-
specs:
|
|
10
|
-
activemodel (3.2.22.5)
|
|
11
|
-
activesupport (= 3.2.22.5)
|
|
12
|
-
builder (~> 3.0.0)
|
|
13
|
-
activerecord (3.2.22.5)
|
|
14
|
-
activemodel (= 3.2.22.5)
|
|
15
|
-
activesupport (= 3.2.22.5)
|
|
16
|
-
arel (~> 3.0.2)
|
|
17
|
-
tzinfo (~> 0.3.29)
|
|
18
|
-
activesupport (3.2.22.5)
|
|
19
|
-
i18n (~> 0.6, >= 0.6.4)
|
|
20
|
-
multi_json (~> 1.0)
|
|
21
|
-
arel (3.0.3)
|
|
22
|
-
builder (3.0.4)
|
|
23
|
-
diff-lcs (1.2.5)
|
|
24
|
-
gemika (0.4.1)
|
|
25
|
-
i18n (0.6.11)
|
|
26
|
-
multi_json (1.13.1)
|
|
27
|
-
rake (10.4.2)
|
|
28
|
-
rspec (3.4.0)
|
|
29
|
-
rspec-core (~> 3.4.0)
|
|
30
|
-
rspec-expectations (~> 3.4.0)
|
|
31
|
-
rspec-mocks (~> 3.4.0)
|
|
32
|
-
rspec-core (3.4.1)
|
|
33
|
-
rspec-support (~> 3.4.0)
|
|
34
|
-
rspec-expectations (3.4.0)
|
|
35
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
|
36
|
-
rspec-support (~> 3.4.0)
|
|
37
|
-
rspec-mocks (3.4.1)
|
|
38
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
|
39
|
-
rspec-support (~> 3.4.0)
|
|
40
|
-
rspec-support (3.4.1)
|
|
41
|
-
sqlite3 (1.3.11)
|
|
42
|
-
tzinfo (0.3.55)
|
|
43
|
-
|
|
44
|
-
PLATFORMS
|
|
45
|
-
ruby
|
|
46
|
-
|
|
47
|
-
DEPENDENCIES
|
|
48
|
-
active_type!
|
|
49
|
-
activerecord (~> 3.2.22.5)
|
|
50
|
-
gemika
|
|
51
|
-
i18n (= 0.6.11)
|
|
52
|
-
rake
|
|
53
|
-
rspec (~> 3.4)
|
|
54
|
-
sqlite3
|
|
55
|
-
|
|
56
|
-
BUNDLED WITH
|
|
57
|
-
2.1.4
|