active_type 0.7.5 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (36) hide show
  1. checksums.yaml +5 -5
  2. data/.ruby-version +1 -1
  3. data/.travis.yml +26 -45
  4. data/CHANGELOG.md +6 -0
  5. data/Gemfile +1 -0
  6. data/{gemfiles/Gemfile.3.2.mysql2 → Gemfile.3.2.mysql2} +3 -2
  7. data/{gemfiles/Gemfile.3.2.mysql2.lock → Gemfile.3.2.mysql2.lock} +14 -12
  8. data/{gemfiles/Gemfile.3.2.sqlite3 → Gemfile.3.2.sqlite3} +3 -2
  9. data/{gemfiles/Gemfile.3.2.sqlite3.lock → Gemfile.3.2.sqlite3.lock} +14 -12
  10. data/{gemfiles/Gemfile.4.2.1.mysql2 → Gemfile.4.2.mysql2} +2 -1
  11. data/{gemfiles/Gemfile.4.2.1.mysql2.lock → Gemfile.4.2.mysql2.lock} +19 -17
  12. data/{gemfiles/Gemfile.4.2.1.pg → Gemfile.4.2.pg} +2 -1
  13. data/{gemfiles/Gemfile.4.2.1.pg.lock → Gemfile.4.2.pg.lock} +19 -17
  14. data/{gemfiles/Gemfile.4.2.1.sqlite3 → Gemfile.4.2.sqlite3} +2 -1
  15. data/{gemfiles/Gemfile.4.2.1.sqlite3.lock → Gemfile.4.2.sqlite3.lock} +19 -17
  16. data/{gemfiles/Gemfile.5.1.0.pg → Gemfile.5.1.pg} +2 -1
  17. data/{gemfiles/Gemfile.5.1.0.pg.lock → Gemfile.5.1.pg.lock} +17 -14
  18. data/{gemfiles/Gemfile.5.1.0.mysql2 → Gemfile.5.2.mysql2} +2 -1
  19. data/{gemfiles/Gemfile.5.1.0.mysql2.lock → Gemfile.5.2.mysql2.lock} +17 -14
  20. data/Gemfile.5.2.pg +9 -0
  21. data/Gemfile.5.2.pg.lock +59 -0
  22. data/{gemfiles/Gemfile.5.1.0.sqlite3 → Gemfile.5.2.sqlite3} +2 -1
  23. data/{gemfiles/Gemfile.5.1.0.sqlite3.lock → Gemfile.5.2.sqlite3.lock} +17 -14
  24. data/Gemfile.lock +1 -0
  25. data/README.md +2 -2
  26. data/Rakefile +35 -41
  27. data/lib/active_type/version.rb +1 -1
  28. metadata +23 -27
  29. data/gemfiles/Gemfile.4.0.sqlite3 +0 -8
  30. data/gemfiles/Gemfile.4.0.sqlite3.lock +0 -60
  31. data/gemfiles/Gemfile.4.1.sqlite3 +0 -8
  32. data/gemfiles/Gemfile.4.1.sqlite3.lock +0 -59
  33. data/gemfiles/Gemfile.5.0.0.mysql2.lock +0 -56
  34. data/gemfiles/Gemfile.5.0.0.pg.lock +0 -56
  35. data/gemfiles/Gemfile.5.0.0.sqlite3 +0 -8
  36. data/gemfiles/Gemfile.5.0.0.sqlite3.lock +0 -56
@@ -0,0 +1,59 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ active_type (1.0.0)
5
+ activerecord (>= 3.2)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ activemodel (5.1.6.1)
11
+ activesupport (= 5.1.6.1)
12
+ activerecord (5.1.6.1)
13
+ activemodel (= 5.1.6.1)
14
+ activesupport (= 5.1.6.1)
15
+ arel (~> 8.0)
16
+ activesupport (5.1.6.1)
17
+ concurrent-ruby (~> 1.0, >= 1.0.2)
18
+ i18n (>= 0.7, < 2)
19
+ minitest (~> 5.1)
20
+ tzinfo (~> 1.1)
21
+ arel (8.0.0)
22
+ concurrent-ruby (1.1.4)
23
+ diff-lcs (1.3)
24
+ gemika (0.3.4)
25
+ i18n (1.5.3)
26
+ concurrent-ruby (~> 1.0)
27
+ minitest (5.11.3)
28
+ pg (0.21.0)
29
+ rake (12.0.0)
30
+ rspec (3.6.0)
31
+ rspec-core (~> 3.6.0)
32
+ rspec-expectations (~> 3.6.0)
33
+ rspec-mocks (~> 3.6.0)
34
+ rspec-core (3.6.0)
35
+ rspec-support (~> 3.6.0)
36
+ rspec-expectations (3.6.0)
37
+ diff-lcs (>= 1.2.0, < 2.0)
38
+ rspec-support (~> 3.6.0)
39
+ rspec-mocks (3.6.0)
40
+ diff-lcs (>= 1.2.0, < 2.0)
41
+ rspec-support (~> 3.6.0)
42
+ rspec-support (3.6.0)
43
+ thread_safe (0.3.6)
44
+ tzinfo (1.2.5)
45
+ thread_safe (~> 0.1)
46
+
47
+ PLATFORMS
48
+ ruby
49
+
50
+ DEPENDENCIES
51
+ active_type!
52
+ activerecord (~> 5.1.0)
53
+ gemika
54
+ pg
55
+ rake
56
+ rspec (~> 3.4)
57
+
58
+ BUNDLED WITH
59
+ 1.16.3
@@ -4,5 +4,6 @@ gem 'activerecord', '~>5.1.0'
4
4
  gem 'rspec', '~> 3.4'
5
5
  gem 'sqlite3'
6
6
  gem 'rake'
7
+ gem 'gemika'
7
8
 
8
- gem 'active_type', :path => '..'
9
+ gem 'active_type', :path => '.'
@@ -1,28 +1,30 @@
1
1
  PATH
2
- remote: ..
2
+ remote: .
3
3
  specs:
4
- active_type (0.7.5)
4
+ active_type (1.0.0)
5
5
  activerecord (>= 3.2)
6
6
 
7
7
  GEM
8
8
  remote: https://rubygems.org/
9
9
  specs:
10
- activemodel (5.1.1)
11
- activesupport (= 5.1.1)
12
- activerecord (5.1.1)
13
- activemodel (= 5.1.1)
14
- activesupport (= 5.1.1)
10
+ activemodel (5.1.6.1)
11
+ activesupport (= 5.1.6.1)
12
+ activerecord (5.1.6.1)
13
+ activemodel (= 5.1.6.1)
14
+ activesupport (= 5.1.6.1)
15
15
  arel (~> 8.0)
16
- activesupport (5.1.1)
16
+ activesupport (5.1.6.1)
17
17
  concurrent-ruby (~> 1.0, >= 1.0.2)
18
- i18n (~> 0.7)
18
+ i18n (>= 0.7, < 2)
19
19
  minitest (~> 5.1)
20
20
  tzinfo (~> 1.1)
21
21
  arel (8.0.0)
22
- concurrent-ruby (1.0.5)
22
+ concurrent-ruby (1.1.4)
23
23
  diff-lcs (1.3)
24
- i18n (0.8.4)
25
- minitest (5.10.2)
24
+ gemika (0.3.4)
25
+ i18n (1.5.3)
26
+ concurrent-ruby (~> 1.0)
27
+ minitest (5.11.3)
26
28
  rake (12.0.0)
27
29
  rspec (3.6.0)
28
30
  rspec-core (~> 3.6.0)
@@ -39,7 +41,7 @@ GEM
39
41
  rspec-support (3.6.0)
40
42
  sqlite3 (1.3.13)
41
43
  thread_safe (0.3.6)
42
- tzinfo (1.2.3)
44
+ tzinfo (1.2.5)
43
45
  thread_safe (~> 0.1)
44
46
 
45
47
  PLATFORMS
@@ -48,9 +50,10 @@ PLATFORMS
48
50
  DEPENDENCIES
49
51
  active_type!
50
52
  activerecord (~> 5.1.0)
53
+ gemika
51
54
  rake
52
55
  rspec (~> 3.4)
53
56
  sqlite3
54
57
 
55
58
  BUNDLED WITH
56
- 1.15.4
59
+ 1.16.3
data/Gemfile.lock ADDED
@@ -0,0 +1 @@
1
+ ./Gemfile.5.2.pg.lock
data/README.md CHANGED
@@ -352,14 +352,14 @@ sign_up.is_a?(SignUp) # => true
352
352
  Supported Rails versions
353
353
  ------------------------
354
354
 
355
- ActiveType is tested against ActiveRecord 3.2, 4.0, 4.1, 4.2, 5.0, and 5.1.
355
+ ActiveType is tested against ActiveRecord 3.2, 4.2, 5.1, and 5.2.
356
356
 
357
357
  Later versions might work, earlier will not.
358
358
 
359
359
  Supported Ruby versions
360
360
  ------------------------
361
361
 
362
- ActiveType is tested against 2.1.7 (for 3.2, 4.x only), 2.2.4 and 2.3.1.
362
+ ActiveType is tested against 2.3, 2.4, and 2.5.
363
363
 
364
364
 
365
365
  Installation
data/Rakefile CHANGED
@@ -1,51 +1,53 @@
1
1
  require 'rake'
2
2
  require 'bundler/gem_tasks'
3
3
 
4
- desc 'Default: Run all specs.'
5
- task :default => 'all:spec'
4
+ begin
5
+ require 'gemika/tasks'
6
+ rescue LoadError
7
+ puts 'Run `gem install gemika` for additional tasks'
8
+ end
9
+
10
+ task default: 'matrix:spec'
6
11
 
7
12
 
8
- desc "Run specs and isolated specs"
9
13
  task :spec do
10
- success = run_specs
14
+ success = system("bundle exec rspec spec --exclude-pattern '**/isolated/**'")
15
+ for_each_isolated_spec do |isolated_spec|
16
+ success &= system("bundle exec rspec #{isolated_spec}")
17
+ end
11
18
  fail "Tests failed" unless success
12
19
  end
13
20
 
14
- namespace :all do
15
21
 
16
- desc "Run specs on all versions"
17
- task :spec do
18
- success = true
19
- for_each_gemfile do
20
- success &= run_specs
21
- end
22
- fail "Tests failed" unless success
23
- end
22
+ # we have to override the matrix:spec task, since we need some specs to run in isolation
24
23
 
25
- desc "Bundle all versions"
26
- task :install do
27
- for_each_gemfile do
28
- system('bundle install')
29
- end
30
- end
24
+ Rake::Task["matrix:spec"].clear
31
25
 
32
- desc "Update all versions"
33
- task :update do
34
- for_each_gemfile do
35
- system('bundle update')
36
- end
37
- end
26
+ namespace :matrix do
38
27
 
39
- end
28
+ desc "Run specs for all Ruby #{RUBY_VERSION} gemfiles"
29
+ task :spec, :files do |t, options|
30
+ Gemika::Matrix.from_travis_yml.each do |row|
31
+ options = options.to_hash.merge(
32
+ :gemfile => row.gemfile,
33
+ :fatal => false,
34
+ :bundle_exec => true,
35
+ )
36
+ success = Gemika::RSpec.run_specs(options.merge(
37
+ :options => '--exclude-pattern "**/isolated/**"',
38
+ ))
39
+
40
+ for_each_isolated_spec do |isolated_spec|
41
+ isolated_success = Gemika::RSpec.run_specs(options.merge(
42
+ :files => isolated_spec,
43
+ ))
44
+ success &&= isolated_success
45
+ end
40
46
 
41
- def for_each_gemfile
42
- version = ENV['VERSION'] || '*'
43
- Dir["gemfiles/Gemfile.#{version}"].sort.each do |gemfile|
44
- next if gemfile =~ /.lock/
45
- puts '', "\033[44m#{gemfile}\033[0m", ''
46
- ENV['BUNDLE_GEMFILE'] = gemfile
47
- yield
47
+ success
48
+ end
48
49
  end
50
+
49
51
  end
50
52
 
51
53
  def for_each_isolated_spec
@@ -53,11 +55,3 @@ def for_each_isolated_spec
53
55
  yield(isolated_spec)
54
56
  end
55
57
  end
56
-
57
- def run_specs
58
- success = system("bundle exec rspec spec --exclude-pattern '**/isolated/**'")
59
- for_each_isolated_spec do |isolated_spec|
60
- success &= system("bundle exec rspec #{isolated_spec}")
61
- end
62
- success
63
- end
@@ -1,3 +1,3 @@
1
1
  module ActiveType
2
- VERSION = '0.7.5'
2
+ VERSION = '1.0.0'
3
3
  end
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: 0.7.5
4
+ version: 1.0.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: 2017-12-04 00:00:00.000000000 Z
12
+ date: 2019-02-15 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: bundler
@@ -64,34 +64,30 @@ files:
64
64
  - ".ruby-version"
65
65
  - ".travis.yml"
66
66
  - CHANGELOG.md
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
+ - Gemfile.4.2.mysql2
73
+ - Gemfile.4.2.mysql2.lock
74
+ - Gemfile.4.2.pg
75
+ - Gemfile.4.2.pg.lock
76
+ - Gemfile.4.2.sqlite3
77
+ - Gemfile.4.2.sqlite3.lock
78
+ - Gemfile.5.1.pg
79
+ - Gemfile.5.1.pg.lock
80
+ - Gemfile.5.2.mysql2
81
+ - Gemfile.5.2.mysql2.lock
82
+ - Gemfile.5.2.pg
83
+ - Gemfile.5.2.pg.lock
84
+ - Gemfile.5.2.sqlite3
85
+ - Gemfile.5.2.sqlite3.lock
86
+ - Gemfile.lock
67
87
  - LICENSE
68
88
  - README.md
69
89
  - Rakefile
70
90
  - active_type.gemspec
71
- - gemfiles/Gemfile.3.2.mysql2
72
- - gemfiles/Gemfile.3.2.mysql2.lock
73
- - gemfiles/Gemfile.3.2.sqlite3
74
- - gemfiles/Gemfile.3.2.sqlite3.lock
75
- - gemfiles/Gemfile.4.0.sqlite3
76
- - gemfiles/Gemfile.4.0.sqlite3.lock
77
- - gemfiles/Gemfile.4.1.sqlite3
78
- - gemfiles/Gemfile.4.1.sqlite3.lock
79
- - gemfiles/Gemfile.4.2.1.mysql2
80
- - gemfiles/Gemfile.4.2.1.mysql2.lock
81
- - gemfiles/Gemfile.4.2.1.pg
82
- - gemfiles/Gemfile.4.2.1.pg.lock
83
- - gemfiles/Gemfile.4.2.1.sqlite3
84
- - gemfiles/Gemfile.4.2.1.sqlite3.lock
85
- - gemfiles/Gemfile.5.0.0.mysql2.lock
86
- - gemfiles/Gemfile.5.0.0.pg.lock
87
- - gemfiles/Gemfile.5.0.0.sqlite3
88
- - gemfiles/Gemfile.5.0.0.sqlite3.lock
89
- - gemfiles/Gemfile.5.1.0.mysql2
90
- - gemfiles/Gemfile.5.1.0.mysql2.lock
91
- - gemfiles/Gemfile.5.1.0.pg
92
- - gemfiles/Gemfile.5.1.0.pg.lock
93
- - gemfiles/Gemfile.5.1.0.sqlite3
94
- - gemfiles/Gemfile.5.1.0.sqlite3.lock
95
91
  - lib/active_type.rb
96
92
  - lib/active_type/extended_record.rb
97
93
  - lib/active_type/extended_record/inheritance.rb
@@ -127,7 +123,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
127
123
  version: '0'
128
124
  requirements: []
129
125
  rubyforge_project:
130
- rubygems_version: 2.4.5.1
126
+ rubygems_version: 2.7.7
131
127
  signing_key:
132
128
  specification_version: 4
133
129
  summary: Make any Ruby object quack like ActiveRecord
@@ -1,8 +0,0 @@
1
- source 'https://rubygems.org'
2
-
3
- gem 'activerecord', '~>4.0.0'
4
- gem 'rspec', '~>3.4'
5
- gem 'sqlite3'
6
- gem 'rake'
7
-
8
- gem 'active_type', :path => '..'
@@ -1,60 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- active_type (0.7.5)
5
- activerecord (>= 3.2)
6
-
7
- GEM
8
- remote: https://rubygems.org/
9
- specs:
10
- activemodel (4.0.13)
11
- activesupport (= 4.0.13)
12
- builder (~> 3.1.0)
13
- activerecord (4.0.13)
14
- activemodel (= 4.0.13)
15
- activerecord-deprecated_finders (~> 1.0.2)
16
- activesupport (= 4.0.13)
17
- arel (~> 4.0.0)
18
- activerecord-deprecated_finders (1.0.4)
19
- activesupport (4.0.13)
20
- i18n (~> 0.6, >= 0.6.9)
21
- minitest (~> 4.2)
22
- multi_json (~> 1.3)
23
- thread_safe (~> 0.1)
24
- tzinfo (~> 0.3.37)
25
- arel (4.0.2)
26
- builder (3.1.4)
27
- diff-lcs (1.2.5)
28
- i18n (0.7.0)
29
- minitest (4.7.5)
30
- multi_json (1.11.2)
31
- rake (10.4.2)
32
- rspec (3.4.0)
33
- rspec-core (~> 3.4.0)
34
- rspec-expectations (~> 3.4.0)
35
- rspec-mocks (~> 3.4.0)
36
- rspec-core (3.4.1)
37
- rspec-support (~> 3.4.0)
38
- rspec-expectations (3.4.0)
39
- diff-lcs (>= 1.2.0, < 2.0)
40
- rspec-support (~> 3.4.0)
41
- rspec-mocks (3.4.1)
42
- diff-lcs (>= 1.2.0, < 2.0)
43
- rspec-support (~> 3.4.0)
44
- rspec-support (3.4.1)
45
- sqlite3 (1.3.11)
46
- thread_safe (0.3.5)
47
- tzinfo (0.3.46)
48
-
49
- PLATFORMS
50
- ruby
51
-
52
- DEPENDENCIES
53
- active_type!
54
- activerecord (~> 4.0.0)
55
- rake
56
- rspec (~> 3.4)
57
- sqlite3
58
-
59
- BUNDLED WITH
60
- 1.15.4
@@ -1,8 +0,0 @@
1
- source 'https://rubygems.org'
2
-
3
- gem 'activerecord', '~>4.1.0'
4
- gem 'rspec', '~>3.4'
5
- gem 'sqlite3'
6
- gem 'rake'
7
-
8
- gem 'active_type', :path => '..'
@@ -1,59 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- active_type (0.7.5)
5
- activerecord (>= 3.2)
6
-
7
- GEM
8
- remote: https://rubygems.org/
9
- specs:
10
- activemodel (4.1.14)
11
- activesupport (= 4.1.14)
12
- builder (~> 3.1)
13
- activerecord (4.1.14)
14
- activemodel (= 4.1.14)
15
- activesupport (= 4.1.14)
16
- arel (~> 5.0.0)
17
- activesupport (4.1.14)
18
- i18n (~> 0.6, >= 0.6.9)
19
- json (~> 1.7, >= 1.7.7)
20
- minitest (~> 5.1)
21
- thread_safe (~> 0.1)
22
- tzinfo (~> 1.1)
23
- arel (5.0.1.20140414130214)
24
- builder (3.2.2)
25
- diff-lcs (1.2.5)
26
- i18n (0.7.0)
27
- json (1.8.3)
28
- minitest (5.8.3)
29
- rake (10.4.2)
30
- rspec (3.4.0)
31
- rspec-core (~> 3.4.0)
32
- rspec-expectations (~> 3.4.0)
33
- rspec-mocks (~> 3.4.0)
34
- rspec-core (3.4.1)
35
- rspec-support (~> 3.4.0)
36
- rspec-expectations (3.4.0)
37
- diff-lcs (>= 1.2.0, < 2.0)
38
- rspec-support (~> 3.4.0)
39
- rspec-mocks (3.4.1)
40
- diff-lcs (>= 1.2.0, < 2.0)
41
- rspec-support (~> 3.4.0)
42
- rspec-support (3.4.1)
43
- sqlite3 (1.3.11)
44
- thread_safe (0.3.5)
45
- tzinfo (1.2.2)
46
- thread_safe (~> 0.1)
47
-
48
- PLATFORMS
49
- ruby
50
-
51
- DEPENDENCIES
52
- active_type!
53
- activerecord (~> 4.1.0)
54
- rake
55
- rspec (~> 3.4)
56
- sqlite3
57
-
58
- BUNDLED WITH
59
- 1.15.4
@@ -1,56 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- active_type (0.7.0)
5
- activerecord (>= 3.2)
6
-
7
- GEM
8
- remote: https://rubygems.org/
9
- specs:
10
- activemodel (5.0.0)
11
- activesupport (= 5.0.0)
12
- activerecord (5.0.0)
13
- activemodel (= 5.0.0)
14
- activesupport (= 5.0.0)
15
- arel (~> 7.0)
16
- activesupport (5.0.0)
17
- concurrent-ruby (~> 1.0, >= 1.0.2)
18
- i18n (~> 0.7)
19
- minitest (~> 5.1)
20
- tzinfo (~> 1.1)
21
- arel (7.0.0)
22
- concurrent-ruby (1.0.2)
23
- diff-lcs (1.2.5)
24
- i18n (0.7.0)
25
- minitest (5.9.0)
26
- mysql2 (0.3.21)
27
- rake (10.4.2)
28
- rspec (3.5.0)
29
- rspec-core (~> 3.5.0)
30
- rspec-expectations (~> 3.5.0)
31
- rspec-mocks (~> 3.5.0)
32
- rspec-core (3.5.0)
33
- rspec-support (~> 3.5.0)
34
- rspec-expectations (3.5.0)
35
- diff-lcs (>= 1.2.0, < 2.0)
36
- rspec-support (~> 3.5.0)
37
- rspec-mocks (3.5.0)
38
- diff-lcs (>= 1.2.0, < 2.0)
39
- rspec-support (~> 3.5.0)
40
- rspec-support (3.5.0)
41
- thread_safe (0.3.5)
42
- tzinfo (1.2.2)
43
- thread_safe (~> 0.1)
44
-
45
- PLATFORMS
46
- ruby
47
-
48
- DEPENDENCIES
49
- active_type!
50
- activerecord (~> 5.0.0)
51
- mysql2 (~> 0.3.17)
52
- rake
53
- rspec (~> 3.4)
54
-
55
- BUNDLED WITH
56
- 1.12.1
@@ -1,56 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- active_type (0.7.0)
5
- activerecord (>= 3.2)
6
-
7
- GEM
8
- remote: https://rubygems.org/
9
- specs:
10
- activemodel (5.0.0)
11
- activesupport (= 5.0.0)
12
- activerecord (5.0.0)
13
- activemodel (= 5.0.0)
14
- activesupport (= 5.0.0)
15
- arel (~> 7.0)
16
- activesupport (5.0.0)
17
- concurrent-ruby (~> 1.0, >= 1.0.2)
18
- i18n (~> 0.7)
19
- minitest (~> 5.1)
20
- tzinfo (~> 1.1)
21
- arel (7.0.0)
22
- concurrent-ruby (1.0.2)
23
- diff-lcs (1.2.5)
24
- i18n (0.7.0)
25
- minitest (5.9.0)
26
- pg (0.18.4)
27
- rake (10.4.2)
28
- rspec (3.5.0)
29
- rspec-core (~> 3.5.0)
30
- rspec-expectations (~> 3.5.0)
31
- rspec-mocks (~> 3.5.0)
32
- rspec-core (3.5.0)
33
- rspec-support (~> 3.5.0)
34
- rspec-expectations (3.5.0)
35
- diff-lcs (>= 1.2.0, < 2.0)
36
- rspec-support (~> 3.5.0)
37
- rspec-mocks (3.5.0)
38
- diff-lcs (>= 1.2.0, < 2.0)
39
- rspec-support (~> 3.5.0)
40
- rspec-support (3.5.0)
41
- thread_safe (0.3.5)
42
- tzinfo (1.2.2)
43
- thread_safe (~> 0.1)
44
-
45
- PLATFORMS
46
- ruby
47
-
48
- DEPENDENCIES
49
- active_type!
50
- activerecord (~> 5.0.0)
51
- pg
52
- rake
53
- rspec (~> 3.4)
54
-
55
- BUNDLED WITH
56
- 1.12.1
@@ -1,8 +0,0 @@
1
- source 'https://rubygems.org'
2
-
3
- gem 'activerecord', '~>5.0.0'
4
- gem 'rspec', '~> 3.4'
5
- gem 'sqlite3'
6
- gem 'rake'
7
-
8
- gem 'active_type', :path => '..'
@@ -1,56 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- active_type (0.7.5)
5
- activerecord (>= 3.2)
6
-
7
- GEM
8
- remote: https://rubygems.org/
9
- specs:
10
- activemodel (5.0.0)
11
- activesupport (= 5.0.0)
12
- activerecord (5.0.0)
13
- activemodel (= 5.0.0)
14
- activesupport (= 5.0.0)
15
- arel (~> 7.0)
16
- activesupport (5.0.0)
17
- concurrent-ruby (~> 1.0, >= 1.0.2)
18
- i18n (~> 0.7)
19
- minitest (~> 5.1)
20
- tzinfo (~> 1.1)
21
- arel (7.0.0)
22
- concurrent-ruby (1.0.2)
23
- diff-lcs (1.2.5)
24
- i18n (0.7.0)
25
- minitest (5.9.0)
26
- rake (10.4.2)
27
- rspec (3.5.0)
28
- rspec-core (~> 3.5.0)
29
- rspec-expectations (~> 3.5.0)
30
- rspec-mocks (~> 3.5.0)
31
- rspec-core (3.5.0)
32
- rspec-support (~> 3.5.0)
33
- rspec-expectations (3.5.0)
34
- diff-lcs (>= 1.2.0, < 2.0)
35
- rspec-support (~> 3.5.0)
36
- rspec-mocks (3.5.0)
37
- diff-lcs (>= 1.2.0, < 2.0)
38
- rspec-support (~> 3.5.0)
39
- rspec-support (3.5.0)
40
- sqlite3 (1.3.11)
41
- thread_safe (0.3.5)
42
- tzinfo (1.2.2)
43
- thread_safe (~> 0.1)
44
-
45
- PLATFORMS
46
- ruby
47
-
48
- DEPENDENCIES
49
- active_type!
50
- activerecord (~> 5.0.0)
51
- rake
52
- rspec (~> 3.4)
53
- sqlite3
54
-
55
- BUNDLED WITH
56
- 1.15.4