relation 0.1.3 → 0.1.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/.gitignore +16 -0
- data/.ruby-version +1 -1
- data/.travis.yml +6 -8
- data/Gemfile +1 -7
- data/Gemfile.lock +63 -62
- data/lib/relation.rb +3 -1
- data/lib/relation/version.rb +3 -1
- data/relation.gemspec +6 -3
- data/test/test_helper.rb +0 -1
- metadata +47 -7
- data/gemfiles/rails_4.gemfile.lock +0 -130
- data/gemfiles/rails_5.0.gemfile.lock +0 -135
- data/gemfiles/rails_5.1.gemfile.lock +0 -135
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: df6322bf0f490d490afb201cf26f915bfeb80be2baf9719c2a038c896a653d85
|
4
|
+
data.tar.gz: 4d2b576cb95debcedcb8116a1f1eaf898ca3b79e70c4472afd3b17f520cbfd69
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5a796bb464316ee82537a1116b54f66900615242ad5c12f1acd097a0216e45ebb0e39dce2d959982339a334108c1e37bd10361f4e1c06a305bef41c63ad57970
|
7
|
+
data.tar.gz: 1fc49c642dbb8030bd83810415de6cfd1e9d5e9f98d1a44db219e6278dd4fc86ab346f6a68a6eec3d908ce34f5628e78c775f8aee651256551bfd2458002f741
|
data/.gitignore
ADDED
@@ -0,0 +1,16 @@
|
|
1
|
+
*.gem
|
2
|
+
.bundle
|
3
|
+
Gemfile.lock
|
4
|
+
gemfiles/*.lock
|
5
|
+
coverage/*
|
6
|
+
pkg/*
|
7
|
+
|
8
|
+
# Ignore the default SQLite database.
|
9
|
+
/db/*.sqlite3
|
10
|
+
/db/*.sqlite3-journal
|
11
|
+
/spec/internal/db/*.sqlite3
|
12
|
+
|
13
|
+
# Ignore all logfiles and tempfiles.
|
14
|
+
/spec/internal/log
|
15
|
+
log
|
16
|
+
tmp
|
data/.ruby-version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
ruby-2.
|
1
|
+
ruby-2.5.0
|
data/.travis.yml
CHANGED
@@ -9,27 +9,25 @@ sudo: false
|
|
9
9
|
#script: "bundle exec rake test:$TEST_SUITE"
|
10
10
|
|
11
11
|
#bundler_args: --without test
|
12
|
-
|
12
|
+
bundler_args: --without production
|
13
13
|
#bundler_args: --without development
|
14
14
|
|
15
|
-
before_install: rm -f Gemfile.lock
|
16
|
-
|
17
15
|
rvm:
|
16
|
+
- 2.5.0 # 2018-02-22
|
18
17
|
- 2.4.1
|
19
|
-
- 2.3.1
|
20
|
-
# - 2.2.7 # working for Rails 5
|
21
|
-
# - 2.2.0 # failing for Rails 5
|
18
|
+
# - 2.3.1 # tested: working for Rails 5
|
19
|
+
# - 2.2.7 # tested: working for Rails 5
|
20
|
+
# - 2.2.0 # tested: failing for Rails 5
|
22
21
|
|
23
22
|
gemfile:
|
24
23
|
- gemfiles/rails_5.1.gemfile
|
25
|
-
- gemfiles/rails_5.0.gemfile
|
24
|
+
## - gemfiles/rails_5.0.gemfile
|
26
25
|
- gemfiles/rails_4.gemfile
|
27
26
|
|
28
27
|
notifications:
|
29
28
|
email: false
|
30
29
|
|
31
30
|
matrix:
|
32
|
-
fast_finish: true
|
33
31
|
allow_failures:
|
34
32
|
- gemfile: gemfiles/rails_5.0.gemfile
|
35
33
|
rvm: 2.2.0
|
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,45 +1,45 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
relation (0.1.
|
4
|
+
relation (0.1.5)
|
5
5
|
activerecord
|
6
6
|
|
7
7
|
GEM
|
8
8
|
remote: https://rubygems.org/
|
9
9
|
specs:
|
10
|
-
actioncable (5.1.
|
11
|
-
actionpack (= 5.1.
|
10
|
+
actioncable (5.1.5)
|
11
|
+
actionpack (= 5.1.5)
|
12
12
|
nio4r (~> 2.0)
|
13
13
|
websocket-driver (~> 0.6.1)
|
14
|
-
actionmailer (5.1.
|
15
|
-
actionpack (= 5.1.
|
16
|
-
actionview (= 5.1.
|
17
|
-
activejob (= 5.1.
|
14
|
+
actionmailer (5.1.5)
|
15
|
+
actionpack (= 5.1.5)
|
16
|
+
actionview (= 5.1.5)
|
17
|
+
activejob (= 5.1.5)
|
18
18
|
mail (~> 2.5, >= 2.5.4)
|
19
19
|
rails-dom-testing (~> 2.0)
|
20
|
-
actionpack (5.1.
|
21
|
-
actionview (= 5.1.
|
22
|
-
activesupport (= 5.1.
|
20
|
+
actionpack (5.1.5)
|
21
|
+
actionview (= 5.1.5)
|
22
|
+
activesupport (= 5.1.5)
|
23
23
|
rack (~> 2.0)
|
24
|
-
rack-test (
|
24
|
+
rack-test (>= 0.6.3)
|
25
25
|
rails-dom-testing (~> 2.0)
|
26
26
|
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
27
|
-
actionview (5.1.
|
28
|
-
activesupport (= 5.1.
|
27
|
+
actionview (5.1.5)
|
28
|
+
activesupport (= 5.1.5)
|
29
29
|
builder (~> 3.1)
|
30
30
|
erubi (~> 1.4)
|
31
31
|
rails-dom-testing (~> 2.0)
|
32
32
|
rails-html-sanitizer (~> 1.0, >= 1.0.3)
|
33
|
-
activejob (5.1.
|
34
|
-
activesupport (= 5.1.
|
33
|
+
activejob (5.1.5)
|
34
|
+
activesupport (= 5.1.5)
|
35
35
|
globalid (>= 0.3.6)
|
36
|
-
activemodel (5.1.
|
37
|
-
activesupport (= 5.1.
|
38
|
-
activerecord (5.1.
|
39
|
-
activemodel (= 5.1.
|
40
|
-
activesupport (= 5.1.
|
36
|
+
activemodel (5.1.5)
|
37
|
+
activesupport (= 5.1.5)
|
38
|
+
activerecord (5.1.5)
|
39
|
+
activemodel (= 5.1.5)
|
40
|
+
activesupport (= 5.1.5)
|
41
41
|
arel (~> 8.0)
|
42
|
-
activesupport (5.1.
|
42
|
+
activesupport (5.1.5)
|
43
43
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
44
44
|
i18n (~> 0.7)
|
45
45
|
minitest (~> 5.1)
|
@@ -51,72 +51,73 @@ GEM
|
|
51
51
|
arel (8.0.0)
|
52
52
|
builder (3.2.3)
|
53
53
|
concurrent-ruby (1.0.5)
|
54
|
+
crass (1.0.3)
|
54
55
|
docile (1.1.5)
|
55
|
-
erubi (1.
|
56
|
-
globalid (0.4.
|
56
|
+
erubi (1.7.0)
|
57
|
+
globalid (0.4.1)
|
57
58
|
activesupport (>= 4.2.0)
|
58
|
-
i18n (0.
|
59
|
+
i18n (0.9.5)
|
60
|
+
concurrent-ruby (~> 1.0)
|
59
61
|
json (2.1.0)
|
60
|
-
loofah (2.0
|
62
|
+
loofah (2.2.0)
|
63
|
+
crass (~> 1.0.2)
|
61
64
|
nokogiri (>= 1.5.9)
|
62
|
-
mail (2.
|
63
|
-
|
64
|
-
method_source (0.
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
bundler (>= 1.3.0, < 2.0)
|
86
|
-
railties (= 5.1.1)
|
65
|
+
mail (2.7.0)
|
66
|
+
mini_mime (>= 0.1.1)
|
67
|
+
method_source (0.9.0)
|
68
|
+
mini_mime (1.0.0)
|
69
|
+
mini_portile2 (2.3.0)
|
70
|
+
minitest (5.11.3)
|
71
|
+
nio4r (2.2.0)
|
72
|
+
nokogiri (1.8.2)
|
73
|
+
mini_portile2 (~> 2.3.0)
|
74
|
+
rack (2.0.4)
|
75
|
+
rack-test (0.8.2)
|
76
|
+
rack (>= 1.0, < 3)
|
77
|
+
rails (5.1.5)
|
78
|
+
actioncable (= 5.1.5)
|
79
|
+
actionmailer (= 5.1.5)
|
80
|
+
actionpack (= 5.1.5)
|
81
|
+
actionview (= 5.1.5)
|
82
|
+
activejob (= 5.1.5)
|
83
|
+
activemodel (= 5.1.5)
|
84
|
+
activerecord (= 5.1.5)
|
85
|
+
activesupport (= 5.1.5)
|
86
|
+
bundler (>= 1.3.0)
|
87
|
+
railties (= 5.1.5)
|
87
88
|
sprockets-rails (>= 2.0.0)
|
88
89
|
rails-dom-testing (2.0.3)
|
89
90
|
activesupport (>= 4.2.0)
|
90
91
|
nokogiri (>= 1.6)
|
91
92
|
rails-html-sanitizer (1.0.3)
|
92
93
|
loofah (~> 2.0)
|
93
|
-
railties (5.1.
|
94
|
-
actionpack (= 5.1.
|
95
|
-
activesupport (= 5.1.
|
94
|
+
railties (5.1.5)
|
95
|
+
actionpack (= 5.1.5)
|
96
|
+
activesupport (= 5.1.5)
|
96
97
|
method_source
|
97
98
|
rake (>= 0.8.7)
|
98
99
|
thor (>= 0.18.1, < 2.0)
|
99
|
-
rake (12.
|
100
|
-
simplecov (0.
|
100
|
+
rake (12.3.0)
|
101
|
+
simplecov (0.15.1)
|
101
102
|
docile (~> 1.1.0)
|
102
103
|
json (>= 1.8, < 3)
|
103
104
|
simplecov-html (~> 0.10.0)
|
104
|
-
simplecov-html (0.10.
|
105
|
+
simplecov-html (0.10.2)
|
105
106
|
sprockets (3.7.1)
|
106
107
|
concurrent-ruby (~> 1.0)
|
107
108
|
rack (> 1, < 3)
|
108
|
-
sprockets-rails (3.2.
|
109
|
+
sprockets-rails (3.2.1)
|
109
110
|
actionpack (>= 4.0)
|
110
111
|
activesupport (>= 4.0)
|
111
112
|
sprockets (>= 3.0.0)
|
112
113
|
sqlite3 (1.3.13)
|
113
|
-
thor (0.
|
114
|
+
thor (0.20.0)
|
114
115
|
thread_safe (0.3.6)
|
115
|
-
tzinfo (1.2.
|
116
|
+
tzinfo (1.2.5)
|
116
117
|
thread_safe (~> 0.1)
|
117
118
|
websocket-driver (0.6.5)
|
118
119
|
websocket-extensions (>= 0.1.0)
|
119
|
-
websocket-extensions (0.1.
|
120
|
+
websocket-extensions (0.1.3)
|
120
121
|
|
121
122
|
PLATFORMS
|
122
123
|
ruby
|
@@ -125,11 +126,11 @@ DEPENDENCIES
|
|
125
126
|
appraisal
|
126
127
|
bundler
|
127
128
|
minitest
|
128
|
-
rails
|
129
|
+
rails (~> 5.1)
|
129
130
|
rake
|
130
131
|
relation!
|
131
132
|
simplecov
|
132
133
|
sqlite3
|
133
134
|
|
134
135
|
BUNDLED WITH
|
135
|
-
1.
|
136
|
+
1.16.1
|
data/lib/relation.rb
CHANGED
data/lib/relation/version.rb
CHANGED
data/relation.gemspec
CHANGED
@@ -3,7 +3,7 @@ require 'relation/version'
|
|
3
3
|
|
4
4
|
Gem::Specification.new do |s|
|
5
5
|
s.name = 'relation'
|
6
|
-
s.version = VERSION
|
6
|
+
s.version = ModRelation::VERSION
|
7
7
|
s.summary = <<-'END'
|
8
8
|
Provides a simple directed relationship between active_record models.
|
9
9
|
END
|
@@ -24,8 +24,11 @@ Gem::Specification.new do |s|
|
|
24
24
|
|
25
25
|
s.add_dependency 'activerecord'
|
26
26
|
|
27
|
-
|
28
|
-
s.add_development_dependency '
|
27
|
+
s.add_development_dependency 'appraisal'
|
28
|
+
s.add_development_dependency 'bundler'
|
29
|
+
s.add_development_dependency 'rake'
|
30
|
+
|
29
31
|
s.add_development_dependency 'minitest'
|
30
32
|
s.add_development_dependency 'simplecov'
|
33
|
+
s.add_development_dependency 'sqlite3'
|
31
34
|
end
|
data/test/test_helper.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: relation
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Dittmar Krall
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2018-02-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activerecord
|
@@ -25,7 +25,35 @@ dependencies:
|
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: '0'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
|
-
name:
|
28
|
+
name: appraisal
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: bundler
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: rake
|
29
57
|
requirement: !ruby/object:Gem::Requirement
|
30
58
|
requirements:
|
31
59
|
- - ">="
|
@@ -66,6 +94,20 @@ dependencies:
|
|
66
94
|
- - ">="
|
67
95
|
- !ruby/object:Gem::Version
|
68
96
|
version: '0'
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: sqlite3
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - ">="
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: '0'
|
104
|
+
type: :development
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - ">="
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: '0'
|
69
111
|
description: " A Rails gem that adds simple support for organizing ActiveRecord
|
70
112
|
models.\n"
|
71
113
|
email:
|
@@ -74,6 +116,7 @@ executables: []
|
|
74
116
|
extensions: []
|
75
117
|
extra_rdoc_files: []
|
76
118
|
files:
|
119
|
+
- ".gitignore"
|
77
120
|
- ".ruby-gemset"
|
78
121
|
- ".ruby-version"
|
79
122
|
- ".travis.yml"
|
@@ -87,11 +130,8 @@ files:
|
|
87
130
|
- app/models/relation.rb
|
88
131
|
- db/migrate/20150810152808_relation.rb
|
89
132
|
- gemfiles/rails_4.gemfile
|
90
|
-
- gemfiles/rails_4.gemfile.lock
|
91
133
|
- gemfiles/rails_5.0.gemfile
|
92
|
-
- gemfiles/rails_5.0.gemfile.lock
|
93
134
|
- gemfiles/rails_5.1.gemfile
|
94
|
-
- gemfiles/rails_5.1.gemfile.lock
|
95
135
|
- lib/relation.rb
|
96
136
|
- lib/relation/version.rb
|
97
137
|
- relation.gemspec
|
@@ -119,7 +159,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
119
159
|
version: '0'
|
120
160
|
requirements: []
|
121
161
|
rubyforge_project:
|
122
|
-
rubygems_version: 2.
|
162
|
+
rubygems_version: 2.7.3
|
123
163
|
signing_key:
|
124
164
|
specification_version: 4
|
125
165
|
summary: Provides a simple directed relationship between active_record models.
|
@@ -1,130 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: ..
|
3
|
-
specs:
|
4
|
-
relation (0.1.2)
|
5
|
-
activerecord
|
6
|
-
|
7
|
-
GEM
|
8
|
-
remote: https://rubygems.org/
|
9
|
-
specs:
|
10
|
-
actionmailer (4.2.3)
|
11
|
-
actionpack (= 4.2.3)
|
12
|
-
actionview (= 4.2.3)
|
13
|
-
activejob (= 4.2.3)
|
14
|
-
mail (~> 2.5, >= 2.5.4)
|
15
|
-
rails-dom-testing (~> 1.0, >= 1.0.5)
|
16
|
-
actionpack (4.2.3)
|
17
|
-
actionview (= 4.2.3)
|
18
|
-
activesupport (= 4.2.3)
|
19
|
-
rack (~> 1.6)
|
20
|
-
rack-test (~> 0.6.2)
|
21
|
-
rails-dom-testing (~> 1.0, >= 1.0.5)
|
22
|
-
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
23
|
-
actionview (4.2.3)
|
24
|
-
activesupport (= 4.2.3)
|
25
|
-
builder (~> 3.1)
|
26
|
-
erubis (~> 2.7.0)
|
27
|
-
rails-dom-testing (~> 1.0, >= 1.0.5)
|
28
|
-
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
29
|
-
activejob (4.2.3)
|
30
|
-
activesupport (= 4.2.3)
|
31
|
-
globalid (>= 0.3.0)
|
32
|
-
activemodel (4.2.3)
|
33
|
-
activesupport (= 4.2.3)
|
34
|
-
builder (~> 3.1)
|
35
|
-
activerecord (4.2.3)
|
36
|
-
activemodel (= 4.2.3)
|
37
|
-
activesupport (= 4.2.3)
|
38
|
-
arel (~> 6.0)
|
39
|
-
activesupport (4.2.3)
|
40
|
-
i18n (~> 0.7)
|
41
|
-
json (~> 1.7, >= 1.7.7)
|
42
|
-
minitest (~> 5.1)
|
43
|
-
thread_safe (~> 0.3, >= 0.3.4)
|
44
|
-
tzinfo (~> 1.1)
|
45
|
-
appraisal (2.2.0)
|
46
|
-
bundler
|
47
|
-
rake
|
48
|
-
thor (>= 0.14.0)
|
49
|
-
arel (6.0.4)
|
50
|
-
builder (3.2.3)
|
51
|
-
concurrent-ruby (1.0.5)
|
52
|
-
docile (1.1.5)
|
53
|
-
erubis (2.7.0)
|
54
|
-
globalid (0.4.0)
|
55
|
-
activesupport (>= 4.2.0)
|
56
|
-
i18n (0.8.4)
|
57
|
-
json (1.8.6)
|
58
|
-
loofah (2.0.3)
|
59
|
-
nokogiri (>= 1.5.9)
|
60
|
-
mail (2.6.5)
|
61
|
-
mime-types (>= 1.16, < 4)
|
62
|
-
mime-types (3.1)
|
63
|
-
mime-types-data (~> 3.2015)
|
64
|
-
mime-types-data (3.2016.0521)
|
65
|
-
mini_portile2 (2.2.0)
|
66
|
-
minitest (5.10.2)
|
67
|
-
nokogiri (1.8.0)
|
68
|
-
mini_portile2 (~> 2.2.0)
|
69
|
-
rack (1.6.8)
|
70
|
-
rack-test (0.6.3)
|
71
|
-
rack (>= 1.0)
|
72
|
-
rails (4.2.3)
|
73
|
-
actionmailer (= 4.2.3)
|
74
|
-
actionpack (= 4.2.3)
|
75
|
-
actionview (= 4.2.3)
|
76
|
-
activejob (= 4.2.3)
|
77
|
-
activemodel (= 4.2.3)
|
78
|
-
activerecord (= 4.2.3)
|
79
|
-
activesupport (= 4.2.3)
|
80
|
-
bundler (>= 1.3.0, < 2.0)
|
81
|
-
railties (= 4.2.3)
|
82
|
-
sprockets-rails
|
83
|
-
rails-deprecated_sanitizer (1.0.3)
|
84
|
-
activesupport (>= 4.2.0.alpha)
|
85
|
-
rails-dom-testing (1.0.8)
|
86
|
-
activesupport (>= 4.2.0.beta, < 5.0)
|
87
|
-
nokogiri (~> 1.6)
|
88
|
-
rails-deprecated_sanitizer (>= 1.0.1)
|
89
|
-
rails-html-sanitizer (1.0.3)
|
90
|
-
loofah (~> 2.0)
|
91
|
-
railties (4.2.3)
|
92
|
-
actionpack (= 4.2.3)
|
93
|
-
activesupport (= 4.2.3)
|
94
|
-
rake (>= 0.8.7)
|
95
|
-
thor (>= 0.18.1, < 2.0)
|
96
|
-
rake (12.0.0)
|
97
|
-
simplecov (0.14.1)
|
98
|
-
docile (~> 1.1.0)
|
99
|
-
json (>= 1.8, < 3)
|
100
|
-
simplecov-html (~> 0.10.0)
|
101
|
-
simplecov-html (0.10.1)
|
102
|
-
sprockets (3.7.1)
|
103
|
-
concurrent-ruby (~> 1.0)
|
104
|
-
rack (> 1, < 3)
|
105
|
-
sprockets-rails (3.2.0)
|
106
|
-
actionpack (>= 4.0)
|
107
|
-
activesupport (>= 4.0)
|
108
|
-
sprockets (>= 3.0.0)
|
109
|
-
sqlite3 (1.3.13)
|
110
|
-
thor (0.19.4)
|
111
|
-
thread_safe (0.3.6)
|
112
|
-
tzinfo (1.2.3)
|
113
|
-
thread_safe (~> 0.1)
|
114
|
-
|
115
|
-
PLATFORMS
|
116
|
-
ruby
|
117
|
-
|
118
|
-
DEPENDENCIES
|
119
|
-
appraisal
|
120
|
-
bundler
|
121
|
-
minitest
|
122
|
-
rack (< 2)
|
123
|
-
rails (= 4.2.3)
|
124
|
-
rake
|
125
|
-
relation!
|
126
|
-
simplecov
|
127
|
-
sqlite3
|
128
|
-
|
129
|
-
BUNDLED WITH
|
130
|
-
1.14.6
|
@@ -1,135 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: ..
|
3
|
-
specs:
|
4
|
-
relation (0.1.2)
|
5
|
-
activerecord
|
6
|
-
|
7
|
-
GEM
|
8
|
-
remote: https://rubygems.org/
|
9
|
-
specs:
|
10
|
-
actioncable (5.0.3)
|
11
|
-
actionpack (= 5.0.3)
|
12
|
-
nio4r (>= 1.2, < 3.0)
|
13
|
-
websocket-driver (~> 0.6.1)
|
14
|
-
actionmailer (5.0.3)
|
15
|
-
actionpack (= 5.0.3)
|
16
|
-
actionview (= 5.0.3)
|
17
|
-
activejob (= 5.0.3)
|
18
|
-
mail (~> 2.5, >= 2.5.4)
|
19
|
-
rails-dom-testing (~> 2.0)
|
20
|
-
actionpack (5.0.3)
|
21
|
-
actionview (= 5.0.3)
|
22
|
-
activesupport (= 5.0.3)
|
23
|
-
rack (~> 2.0)
|
24
|
-
rack-test (~> 0.6.3)
|
25
|
-
rails-dom-testing (~> 2.0)
|
26
|
-
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
27
|
-
actionview (5.0.3)
|
28
|
-
activesupport (= 5.0.3)
|
29
|
-
builder (~> 3.1)
|
30
|
-
erubis (~> 2.7.0)
|
31
|
-
rails-dom-testing (~> 2.0)
|
32
|
-
rails-html-sanitizer (~> 1.0, >= 1.0.3)
|
33
|
-
activejob (5.0.3)
|
34
|
-
activesupport (= 5.0.3)
|
35
|
-
globalid (>= 0.3.6)
|
36
|
-
activemodel (5.0.3)
|
37
|
-
activesupport (= 5.0.3)
|
38
|
-
activerecord (5.0.3)
|
39
|
-
activemodel (= 5.0.3)
|
40
|
-
activesupport (= 5.0.3)
|
41
|
-
arel (~> 7.0)
|
42
|
-
activesupport (5.0.3)
|
43
|
-
concurrent-ruby (~> 1.0, >= 1.0.2)
|
44
|
-
i18n (~> 0.7)
|
45
|
-
minitest (~> 5.1)
|
46
|
-
tzinfo (~> 1.1)
|
47
|
-
appraisal (2.2.0)
|
48
|
-
bundler
|
49
|
-
rake
|
50
|
-
thor (>= 0.14.0)
|
51
|
-
arel (7.1.4)
|
52
|
-
builder (3.2.3)
|
53
|
-
concurrent-ruby (1.0.5)
|
54
|
-
docile (1.1.5)
|
55
|
-
erubis (2.7.0)
|
56
|
-
globalid (0.4.0)
|
57
|
-
activesupport (>= 4.2.0)
|
58
|
-
i18n (0.8.4)
|
59
|
-
json (2.1.0)
|
60
|
-
loofah (2.0.3)
|
61
|
-
nokogiri (>= 1.5.9)
|
62
|
-
mail (2.6.5)
|
63
|
-
mime-types (>= 1.16, < 4)
|
64
|
-
method_source (0.8.2)
|
65
|
-
mime-types (3.1)
|
66
|
-
mime-types-data (~> 3.2015)
|
67
|
-
mime-types-data (3.2016.0521)
|
68
|
-
mini_portile2 (2.2.0)
|
69
|
-
minitest (5.10.2)
|
70
|
-
nio4r (2.1.0)
|
71
|
-
nokogiri (1.8.0)
|
72
|
-
mini_portile2 (~> 2.2.0)
|
73
|
-
rack (2.0.3)
|
74
|
-
rack-test (0.6.3)
|
75
|
-
rack (>= 1.0)
|
76
|
-
rails (5.0.3)
|
77
|
-
actioncable (= 5.0.3)
|
78
|
-
actionmailer (= 5.0.3)
|
79
|
-
actionpack (= 5.0.3)
|
80
|
-
actionview (= 5.0.3)
|
81
|
-
activejob (= 5.0.3)
|
82
|
-
activemodel (= 5.0.3)
|
83
|
-
activerecord (= 5.0.3)
|
84
|
-
activesupport (= 5.0.3)
|
85
|
-
bundler (>= 1.3.0, < 2.0)
|
86
|
-
railties (= 5.0.3)
|
87
|
-
sprockets-rails (>= 2.0.0)
|
88
|
-
rails-dom-testing (2.0.3)
|
89
|
-
activesupport (>= 4.2.0)
|
90
|
-
nokogiri (>= 1.6)
|
91
|
-
rails-html-sanitizer (1.0.3)
|
92
|
-
loofah (~> 2.0)
|
93
|
-
railties (5.0.3)
|
94
|
-
actionpack (= 5.0.3)
|
95
|
-
activesupport (= 5.0.3)
|
96
|
-
method_source
|
97
|
-
rake (>= 0.8.7)
|
98
|
-
thor (>= 0.18.1, < 2.0)
|
99
|
-
rake (12.0.0)
|
100
|
-
simplecov (0.14.1)
|
101
|
-
docile (~> 1.1.0)
|
102
|
-
json (>= 1.8, < 3)
|
103
|
-
simplecov-html (~> 0.10.0)
|
104
|
-
simplecov-html (0.10.1)
|
105
|
-
sprockets (3.7.1)
|
106
|
-
concurrent-ruby (~> 1.0)
|
107
|
-
rack (> 1, < 3)
|
108
|
-
sprockets-rails (3.2.0)
|
109
|
-
actionpack (>= 4.0)
|
110
|
-
activesupport (>= 4.0)
|
111
|
-
sprockets (>= 3.0.0)
|
112
|
-
sqlite3 (1.3.13)
|
113
|
-
thor (0.19.4)
|
114
|
-
thread_safe (0.3.6)
|
115
|
-
tzinfo (1.2.3)
|
116
|
-
thread_safe (~> 0.1)
|
117
|
-
websocket-driver (0.6.5)
|
118
|
-
websocket-extensions (>= 0.1.0)
|
119
|
-
websocket-extensions (0.1.2)
|
120
|
-
|
121
|
-
PLATFORMS
|
122
|
-
ruby
|
123
|
-
|
124
|
-
DEPENDENCIES
|
125
|
-
appraisal
|
126
|
-
bundler
|
127
|
-
minitest
|
128
|
-
rails (~> 5.0.0)
|
129
|
-
rake
|
130
|
-
relation!
|
131
|
-
simplecov
|
132
|
-
sqlite3
|
133
|
-
|
134
|
-
BUNDLED WITH
|
135
|
-
1.14.6
|
@@ -1,135 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: ..
|
3
|
-
specs:
|
4
|
-
relation (0.1.2)
|
5
|
-
activerecord
|
6
|
-
|
7
|
-
GEM
|
8
|
-
remote: https://rubygems.org/
|
9
|
-
specs:
|
10
|
-
actioncable (5.1.1)
|
11
|
-
actionpack (= 5.1.1)
|
12
|
-
nio4r (~> 2.0)
|
13
|
-
websocket-driver (~> 0.6.1)
|
14
|
-
actionmailer (5.1.1)
|
15
|
-
actionpack (= 5.1.1)
|
16
|
-
actionview (= 5.1.1)
|
17
|
-
activejob (= 5.1.1)
|
18
|
-
mail (~> 2.5, >= 2.5.4)
|
19
|
-
rails-dom-testing (~> 2.0)
|
20
|
-
actionpack (5.1.1)
|
21
|
-
actionview (= 5.1.1)
|
22
|
-
activesupport (= 5.1.1)
|
23
|
-
rack (~> 2.0)
|
24
|
-
rack-test (~> 0.6.3)
|
25
|
-
rails-dom-testing (~> 2.0)
|
26
|
-
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
27
|
-
actionview (5.1.1)
|
28
|
-
activesupport (= 5.1.1)
|
29
|
-
builder (~> 3.1)
|
30
|
-
erubi (~> 1.4)
|
31
|
-
rails-dom-testing (~> 2.0)
|
32
|
-
rails-html-sanitizer (~> 1.0, >= 1.0.3)
|
33
|
-
activejob (5.1.1)
|
34
|
-
activesupport (= 5.1.1)
|
35
|
-
globalid (>= 0.3.6)
|
36
|
-
activemodel (5.1.1)
|
37
|
-
activesupport (= 5.1.1)
|
38
|
-
activerecord (5.1.1)
|
39
|
-
activemodel (= 5.1.1)
|
40
|
-
activesupport (= 5.1.1)
|
41
|
-
arel (~> 8.0)
|
42
|
-
activesupport (5.1.1)
|
43
|
-
concurrent-ruby (~> 1.0, >= 1.0.2)
|
44
|
-
i18n (~> 0.7)
|
45
|
-
minitest (~> 5.1)
|
46
|
-
tzinfo (~> 1.1)
|
47
|
-
appraisal (2.2.0)
|
48
|
-
bundler
|
49
|
-
rake
|
50
|
-
thor (>= 0.14.0)
|
51
|
-
arel (8.0.0)
|
52
|
-
builder (3.2.3)
|
53
|
-
concurrent-ruby (1.0.5)
|
54
|
-
docile (1.1.5)
|
55
|
-
erubi (1.6.0)
|
56
|
-
globalid (0.4.0)
|
57
|
-
activesupport (>= 4.2.0)
|
58
|
-
i18n (0.8.4)
|
59
|
-
json (2.1.0)
|
60
|
-
loofah (2.0.3)
|
61
|
-
nokogiri (>= 1.5.9)
|
62
|
-
mail (2.6.5)
|
63
|
-
mime-types (>= 1.16, < 4)
|
64
|
-
method_source (0.8.2)
|
65
|
-
mime-types (3.1)
|
66
|
-
mime-types-data (~> 3.2015)
|
67
|
-
mime-types-data (3.2016.0521)
|
68
|
-
mini_portile2 (2.2.0)
|
69
|
-
minitest (5.10.2)
|
70
|
-
nio4r (2.1.0)
|
71
|
-
nokogiri (1.8.0)
|
72
|
-
mini_portile2 (~> 2.2.0)
|
73
|
-
rack (2.0.3)
|
74
|
-
rack-test (0.6.3)
|
75
|
-
rack (>= 1.0)
|
76
|
-
rails (5.1.1)
|
77
|
-
actioncable (= 5.1.1)
|
78
|
-
actionmailer (= 5.1.1)
|
79
|
-
actionpack (= 5.1.1)
|
80
|
-
actionview (= 5.1.1)
|
81
|
-
activejob (= 5.1.1)
|
82
|
-
activemodel (= 5.1.1)
|
83
|
-
activerecord (= 5.1.1)
|
84
|
-
activesupport (= 5.1.1)
|
85
|
-
bundler (>= 1.3.0, < 2.0)
|
86
|
-
railties (= 5.1.1)
|
87
|
-
sprockets-rails (>= 2.0.0)
|
88
|
-
rails-dom-testing (2.0.3)
|
89
|
-
activesupport (>= 4.2.0)
|
90
|
-
nokogiri (>= 1.6)
|
91
|
-
rails-html-sanitizer (1.0.3)
|
92
|
-
loofah (~> 2.0)
|
93
|
-
railties (5.1.1)
|
94
|
-
actionpack (= 5.1.1)
|
95
|
-
activesupport (= 5.1.1)
|
96
|
-
method_source
|
97
|
-
rake (>= 0.8.7)
|
98
|
-
thor (>= 0.18.1, < 2.0)
|
99
|
-
rake (12.0.0)
|
100
|
-
simplecov (0.14.1)
|
101
|
-
docile (~> 1.1.0)
|
102
|
-
json (>= 1.8, < 3)
|
103
|
-
simplecov-html (~> 0.10.0)
|
104
|
-
simplecov-html (0.10.1)
|
105
|
-
sprockets (3.7.1)
|
106
|
-
concurrent-ruby (~> 1.0)
|
107
|
-
rack (> 1, < 3)
|
108
|
-
sprockets-rails (3.2.0)
|
109
|
-
actionpack (>= 4.0)
|
110
|
-
activesupport (>= 4.0)
|
111
|
-
sprockets (>= 3.0.0)
|
112
|
-
sqlite3 (1.3.13)
|
113
|
-
thor (0.19.4)
|
114
|
-
thread_safe (0.3.6)
|
115
|
-
tzinfo (1.2.3)
|
116
|
-
thread_safe (~> 0.1)
|
117
|
-
websocket-driver (0.6.5)
|
118
|
-
websocket-extensions (>= 0.1.0)
|
119
|
-
websocket-extensions (0.1.2)
|
120
|
-
|
121
|
-
PLATFORMS
|
122
|
-
ruby
|
123
|
-
|
124
|
-
DEPENDENCIES
|
125
|
-
appraisal
|
126
|
-
bundler
|
127
|
-
minitest
|
128
|
-
rails (~> 5.1)
|
129
|
-
rake
|
130
|
-
relation!
|
131
|
-
simplecov
|
132
|
-
sqlite3
|
133
|
-
|
134
|
-
BUNDLED WITH
|
135
|
-
1.14.6
|