Skip to content

Commit 16ccb19

Browse files
author
Yuri Zubov
committedNov 3, 2019
Fixs configuration for tests
1 parent 5a55a08 commit 16ccb19

20 files changed

+888
-267
lines changed
 

‎.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
.bundle/
2+
.idea/
23
log/*.log
34
pkg/
45
Gemfile.lock

‎.travis.yml

+14-21
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,19 @@
1+
language: ruby
12
rvm:
2-
- 1.9.3
3-
- 2.0
4-
- 2.1
5-
- 2.2
6-
- 2.3
7-
- 2.4
3+
- 2.3.8
4+
- 2.4.9
85
- 2.5
96
- 2.6
10-
env:
11-
- "RAILS_VERSION=3.1.0"
12-
- "RAILS_VERSION=3.2.0"
13-
- "RAILS_VERSION=4.0.0"
14-
- "RAILS_VERSION=4.1.0"
15-
- "RAILS_VERSION=4.3.0"
16-
- "RAILS_VERSION=5.0.0"
17-
- "RAILS_VERSION=5.1.0"
18-
- "RAILS_VERSION=5.2.0"
19-
- "RAILS_VERSION=6.0.0"
7+
gemfile:
8+
- gemfiles/rails_4.1.gemfile
9+
- gemfiles/rails_4.2.gemfile
10+
- gemfiles/rails_5.0.gemfile
11+
- gemfiles/rails_5.1.gemfile
12+
- gemfiles/rails_5.2.gemfile
13+
- gemfiles/rails_6.0.gemfile
2014
matrix:
2115
exclude:
22-
- rvm: 1.9.2
23-
env: "RAILS_VERSION=3.1.0"
24-
branches:
25-
only:
26-
- master
16+
- rvm: 2.3.8
17+
gemfile: gemfiles/rails_6.0.gemfile
18+
- rvm: 2.4.9
19+
gemfile: gemfiles/rails_6.0.gemfile

‎Appraisals

+28-8
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,35 @@
1-
appraise "rails-3" do
2-
gem "rails", "~> 3.2"
1+
appraise "rails-4.1" do
2+
gem "rails", "~> 4.1.0"
3+
gem 'test-unit', '~> 3.0'
4+
gem 'sprockets', '~> 3.7'
35
end
46

5-
appraise "rails-4" do
6-
gem "rails", "~> 4.0"
7+
appraise "rails-4.2" do
8+
gem "rails", "~> 4.2.0"
9+
gem 'test-unit', '~> 3.0'
10+
gem 'sprockets', '~> 3.7'
711
end
812

9-
appraise "rails-5" do
10-
gem "rails", "~> 5.0"
13+
appraise "rails-5.0" do
14+
gem "rails", "~> 5.0.0"
15+
gem 'test-unit', '~> 3.0'
16+
gem 'sprockets', '~> 3.7'
1117
end
1218

13-
appraise "rails-6" do
14-
gem "rails", "~> 6.0"
19+
appraise "rails-5.1" do
20+
gem "rails", "~> 5.1.0"
21+
gem 'test-unit', '~> 3.0'
22+
gem 'sprockets', '~> 3.7'
23+
end
24+
25+
appraise "rails-5.2" do
26+
gem "rails", "~> 5.2.0"
27+
gem 'test-unit', '~> 3.0'
28+
gem 'sprockets', '~> 3.7'
29+
end
30+
31+
appraise "rails-6.0" do
32+
gem "rails", "~> 6.0.0"
33+
gem 'test-unit', '~> 3.0'
34+
gem 'sprockets', '~> 4.0'
1535
end

‎gemfiles/rails_3.gemfile

-9
This file was deleted.

‎gemfiles/rails_3.gemfile.lock

-111
This file was deleted.

‎gemfiles/rails_4.1.gemfile

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# This file was generated by Appraisal
2+
3+
source "http://rubygems.org"
4+
5+
gem "appraisal", "2.2.0"
6+
gem "rails", "~> 4.1.0"
7+
gem "test-unit", "~> 3.0"
8+
gem "sprockets", "~> 3.7"
9+
10+
gemspec path: "../"

‎gemfiles/rails_4.1.gemfile.lock

+100
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,100 @@
1+
PATH
2+
remote: ..
3+
specs:
4+
carmen-rails (1.0.1)
5+
carmen (~> 1.0)
6+
rails
7+
8+
GEM
9+
remote: http://rubygems.org/
10+
specs:
11+
actionmailer (4.1.16)
12+
actionpack (= 4.1.16)
13+
actionview (= 4.1.16)
14+
mail (~> 2.5, >= 2.5.4)
15+
actionpack (4.1.16)
16+
actionview (= 4.1.16)
17+
activesupport (= 4.1.16)
18+
rack (~> 1.5.2)
19+
rack-test (~> 0.6.2)
20+
actionview (4.1.16)
21+
activesupport (= 4.1.16)
22+
builder (~> 3.1)
23+
erubis (~> 2.7.0)
24+
activemodel (4.1.16)
25+
activesupport (= 4.1.16)
26+
builder (~> 3.1)
27+
activerecord (4.1.16)
28+
activemodel (= 4.1.16)
29+
activesupport (= 4.1.16)
30+
arel (~> 5.0.0)
31+
activesupport (4.1.16)
32+
i18n (~> 0.6, >= 0.6.9)
33+
json (~> 1.7, >= 1.7.7)
34+
minitest (~> 5.1)
35+
thread_safe (~> 0.1)
36+
tzinfo (~> 1.1)
37+
appraisal (2.2.0)
38+
bundler
39+
rake
40+
thor (>= 0.14.0)
41+
arel (5.0.1.20140414130214)
42+
builder (3.2.3)
43+
carmen (1.1.3)
44+
activesupport (>= 3.0.0)
45+
concurrent-ruby (1.1.5)
46+
erubis (2.7.0)
47+
i18n (0.9.5)
48+
concurrent-ruby (~> 1.0)
49+
json (1.8.6)
50+
mail (2.7.1)
51+
mini_mime (>= 0.1.1)
52+
mini_mime (1.0.2)
53+
minitest (5.13.0)
54+
power_assert (1.1.5)
55+
rack (1.5.5)
56+
rack-test (0.6.3)
57+
rack (>= 1.0)
58+
rails (4.1.16)
59+
actionmailer (= 4.1.16)
60+
actionpack (= 4.1.16)
61+
actionview (= 4.1.16)
62+
activemodel (= 4.1.16)
63+
activerecord (= 4.1.16)
64+
activesupport (= 4.1.16)
65+
bundler (>= 1.3.0, < 2.0)
66+
railties (= 4.1.16)
67+
sprockets-rails (~> 2.0)
68+
railties (4.1.16)
69+
actionpack (= 4.1.16)
70+
activesupport (= 4.1.16)
71+
rake (>= 0.8.7)
72+
thor (>= 0.18.1, < 2.0)
73+
rake (13.0.0)
74+
sprockets (3.7.2)
75+
concurrent-ruby (~> 1.0)
76+
rack (> 1, < 3)
77+
sprockets-rails (2.3.3)
78+
actionpack (>= 3.0)
79+
activesupport (>= 3.0)
80+
sprockets (>= 2.8, < 4.0)
81+
test-unit (3.3.4)
82+
power_assert
83+
thor (0.20.3)
84+
thread_safe (0.3.6)
85+
tzinfo (1.2.5)
86+
thread_safe (~> 0.1)
87+
88+
PLATFORMS
89+
ruby
90+
91+
DEPENDENCIES
92+
appraisal (= 2.2.0)
93+
carmen-rails!
94+
minitest
95+
rails (~> 4.1.0)
96+
sprockets (~> 3.7)
97+
test-unit (~> 3.0)
98+
99+
BUNDLED WITH
100+
1.17.2

‎gemfiles/rails_4.2.gemfile

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# This file was generated by Appraisal
2+
3+
source "http://rubygems.org"
4+
5+
gem "appraisal", "2.2.0"
6+
gem "rails", "~> 4.2.0"
7+
gem "test-unit", "~> 3.0"
8+
gem "sprockets", "~> 3.7"
9+
10+
gemspec path: "../"

‎gemfiles/rails_4.2.gemfile.lock

+125
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,125 @@
1+
PATH
2+
remote: ..
3+
specs:
4+
carmen-rails (1.0.1)
5+
carmen (~> 1.0)
6+
rails
7+
8+
GEM
9+
remote: http://rubygems.org/
10+
specs:
11+
actionmailer (4.2.10)
12+
actionpack (= 4.2.10)
13+
actionview (= 4.2.10)
14+
activejob (= 4.2.10)
15+
mail (~> 2.5, >= 2.5.4)
16+
rails-dom-testing (~> 1.0, >= 1.0.5)
17+
actionpack (4.2.10)
18+
actionview (= 4.2.10)
19+
activesupport (= 4.2.10)
20+
rack (~> 1.6)
21+
rack-test (~> 0.6.2)
22+
rails-dom-testing (~> 1.0, >= 1.0.5)
23+
rails-html-sanitizer (~> 1.0, >= 1.0.2)
24+
actionview (4.2.10)
25+
activesupport (= 4.2.10)
26+
builder (~> 3.1)
27+
erubis (~> 2.7.0)
28+
rails-dom-testing (~> 1.0, >= 1.0.5)
29+
rails-html-sanitizer (~> 1.0, >= 1.0.3)
30+
activejob (4.2.10)
31+
activesupport (= 4.2.10)
32+
globalid (>= 0.3.0)
33+
activemodel (4.2.10)
34+
activesupport (= 4.2.10)
35+
builder (~> 3.1)
36+
activerecord (4.2.10)
37+
activemodel (= 4.2.10)
38+
activesupport (= 4.2.10)
39+
arel (~> 6.0)
40+
activesupport (4.2.10)
41+
i18n (~> 0.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+
carmen (1.1.3)
52+
activesupport (>= 3.0.0)
53+
concurrent-ruby (1.1.5)
54+
crass (1.0.5)
55+
erubis (2.7.0)
56+
globalid (0.4.2)
57+
activesupport (>= 4.2.0)
58+
i18n (0.9.5)
59+
concurrent-ruby (~> 1.0)
60+
loofah (2.3.1)
61+
crass (~> 1.0.2)
62+
nokogiri (>= 1.5.9)
63+
mail (2.7.1)
64+
mini_mime (>= 0.1.1)
65+
mini_mime (1.0.2)
66+
mini_portile2 (2.4.0)
67+
minitest (5.13.0)
68+
nokogiri (1.10.4)
69+
mini_portile2 (~> 2.4.0)
70+
power_assert (1.1.5)
71+
rack (1.6.11)
72+
rack-test (0.6.3)
73+
rack (>= 1.0)
74+
rails (4.2.10)
75+
actionmailer (= 4.2.10)
76+
actionpack (= 4.2.10)
77+
actionview (= 4.2.10)
78+
activejob (= 4.2.10)
79+
activemodel (= 4.2.10)
80+
activerecord (= 4.2.10)
81+
activesupport (= 4.2.10)
82+
bundler (>= 1.3.0, < 2.0)
83+
railties (= 4.2.10)
84+
sprockets-rails
85+
rails-deprecated_sanitizer (1.0.3)
86+
activesupport (>= 4.2.0.alpha)
87+
rails-dom-testing (1.0.9)
88+
activesupport (>= 4.2.0, < 5.0)
89+
nokogiri (~> 1.6)
90+
rails-deprecated_sanitizer (>= 1.0.1)
91+
rails-html-sanitizer (1.3.0)
92+
loofah (~> 2.3)
93+
railties (4.2.10)
94+
actionpack (= 4.2.10)
95+
activesupport (= 4.2.10)
96+
rake (>= 0.8.7)
97+
thor (>= 0.18.1, < 2.0)
98+
rake (13.0.0)
99+
sprockets (3.7.2)
100+
concurrent-ruby (~> 1.0)
101+
rack (> 1, < 3)
102+
sprockets-rails (3.2.1)
103+
actionpack (>= 4.0)
104+
activesupport (>= 4.0)
105+
sprockets (>= 3.0.0)
106+
test-unit (3.3.4)
107+
power_assert
108+
thor (0.20.3)
109+
thread_safe (0.3.6)
110+
tzinfo (1.2.5)
111+
thread_safe (~> 0.1)
112+
113+
PLATFORMS
114+
ruby
115+
116+
DEPENDENCIES
117+
appraisal (= 2.2.0)
118+
carmen-rails!
119+
minitest
120+
rails (~> 4.2.0)
121+
sprockets (~> 3.7)
122+
test-unit (~> 3.0)
123+
124+
BUNDLED WITH
125+
1.17.2

‎gemfiles/rails_4.gemfile

-9
This file was deleted.

‎gemfiles/rails_4.gemfile.lock

-105
This file was deleted.

‎gemfiles/rails_5.0.gemfile

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# This file was generated by Appraisal
2+
3+
source "http://rubygems.org"
4+
5+
gem "appraisal", "2.2.0"
6+
gem "rails", "~> 5.0.0"
7+
gem "test-unit", "~> 3.0"
8+
gem "sprockets", "~> 3.7"
9+
10+
gemspec path: "../"

‎gemfiles/rails_5.0.gemfile.lock

+132
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,132 @@
1+
PATH
2+
remote: ..
3+
specs:
4+
carmen-rails (1.0.1)
5+
carmen (~> 1.0)
6+
rails
7+
8+
GEM
9+
remote: http://rubygems.org/
10+
specs:
11+
actioncable (5.0.1)
12+
actionpack (= 5.0.1)
13+
nio4r (~> 1.2)
14+
websocket-driver (~> 0.6.1)
15+
actionmailer (5.0.1)
16+
actionpack (= 5.0.1)
17+
actionview (= 5.0.1)
18+
activejob (= 5.0.1)
19+
mail (~> 2.5, >= 2.5.4)
20+
rails-dom-testing (~> 2.0)
21+
actionpack (5.0.1)
22+
actionview (= 5.0.1)
23+
activesupport (= 5.0.1)
24+
rack (~> 2.0)
25+
rack-test (~> 0.6.3)
26+
rails-dom-testing (~> 2.0)
27+
rails-html-sanitizer (~> 1.0, >= 1.0.2)
28+
actionview (5.0.1)
29+
activesupport (= 5.0.1)
30+
builder (~> 3.1)
31+
erubis (~> 2.7.0)
32+
rails-dom-testing (~> 2.0)
33+
rails-html-sanitizer (~> 1.0, >= 1.0.2)
34+
activejob (5.0.1)
35+
activesupport (= 5.0.1)
36+
globalid (>= 0.3.6)
37+
activemodel (5.0.1)
38+
activesupport (= 5.0.1)
39+
activerecord (5.0.1)
40+
activemodel (= 5.0.1)
41+
activesupport (= 5.0.1)
42+
arel (~> 7.0)
43+
activesupport (5.0.1)
44+
concurrent-ruby (~> 1.0, >= 1.0.2)
45+
i18n (~> 0.7)
46+
minitest (~> 5.1)
47+
tzinfo (~> 1.1)
48+
appraisal (2.2.0)
49+
bundler
50+
rake
51+
thor (>= 0.14.0)
52+
arel (7.1.4)
53+
builder (3.2.3)
54+
carmen (1.1.3)
55+
activesupport (>= 3.0.0)
56+
concurrent-ruby (1.1.5)
57+
crass (1.0.5)
58+
erubis (2.7.0)
59+
globalid (0.4.2)
60+
activesupport (>= 4.2.0)
61+
i18n (0.9.5)
62+
concurrent-ruby (~> 1.0)
63+
loofah (2.3.1)
64+
crass (~> 1.0.2)
65+
nokogiri (>= 1.5.9)
66+
mail (2.7.1)
67+
mini_mime (>= 0.1.1)
68+
method_source (0.9.2)
69+
mini_mime (1.0.2)
70+
mini_portile2 (2.4.0)
71+
minitest (5.13.0)
72+
nio4r (1.2.1)
73+
nokogiri (1.10.4)
74+
mini_portile2 (~> 2.4.0)
75+
power_assert (1.1.5)
76+
rack (2.0.7)
77+
rack-test (0.6.3)
78+
rack (>= 1.0)
79+
rails (5.0.1)
80+
actioncable (= 5.0.1)
81+
actionmailer (= 5.0.1)
82+
actionpack (= 5.0.1)
83+
actionview (= 5.0.1)
84+
activejob (= 5.0.1)
85+
activemodel (= 5.0.1)
86+
activerecord (= 5.0.1)
87+
activesupport (= 5.0.1)
88+
bundler (>= 1.3.0, < 2.0)
89+
railties (= 5.0.1)
90+
sprockets-rails (>= 2.0.0)
91+
rails-dom-testing (2.0.3)
92+
activesupport (>= 4.2.0)
93+
nokogiri (>= 1.6)
94+
rails-html-sanitizer (1.3.0)
95+
loofah (~> 2.3)
96+
railties (5.0.1)
97+
actionpack (= 5.0.1)
98+
activesupport (= 5.0.1)
99+
method_source
100+
rake (>= 0.8.7)
101+
thor (>= 0.18.1, < 2.0)
102+
rake (13.0.0)
103+
sprockets (3.7.2)
104+
concurrent-ruby (~> 1.0)
105+
rack (> 1, < 3)
106+
sprockets-rails (3.2.1)
107+
actionpack (>= 4.0)
108+
activesupport (>= 4.0)
109+
sprockets (>= 3.0.0)
110+
test-unit (3.3.4)
111+
power_assert
112+
thor (0.20.3)
113+
thread_safe (0.3.6)
114+
tzinfo (1.2.5)
115+
thread_safe (~> 0.1)
116+
websocket-driver (0.6.5)
117+
websocket-extensions (>= 0.1.0)
118+
websocket-extensions (0.1.4)
119+
120+
PLATFORMS
121+
ruby
122+
123+
DEPENDENCIES
124+
appraisal (= 2.2.0)
125+
carmen-rails!
126+
minitest
127+
rails (~> 5.0.0)
128+
sprockets (~> 3.7)
129+
test-unit (~> 3.0)
130+
131+
BUNDLED WITH
132+
1.17.2

‎gemfiles/rails_5.1.gemfile

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# This file was generated by Appraisal
2+
3+
source "http://rubygems.org"
4+
5+
gem "appraisal", "2.2.0"
6+
gem "rails", "~> 5.1.0"
7+
gem "test-unit", "~> 3.0"
8+
gem "sprockets", "~> 3.7"
9+
10+
gemspec path: "../"

‎gemfiles/rails_5.1.gemfile.lock

+132
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,132 @@
1+
PATH
2+
remote: ..
3+
specs:
4+
carmen-rails (1.0.1)
5+
carmen (~> 1.0)
6+
rails
7+
8+
GEM
9+
remote: http://rubygems.org/
10+
specs:
11+
actioncable (5.1.7)
12+
actionpack (= 5.1.7)
13+
nio4r (~> 2.0)
14+
websocket-driver (~> 0.6.1)
15+
actionmailer (5.1.7)
16+
actionpack (= 5.1.7)
17+
actionview (= 5.1.7)
18+
activejob (= 5.1.7)
19+
mail (~> 2.5, >= 2.5.4)
20+
rails-dom-testing (~> 2.0)
21+
actionpack (5.1.7)
22+
actionview (= 5.1.7)
23+
activesupport (= 5.1.7)
24+
rack (~> 2.0)
25+
rack-test (>= 0.6.3)
26+
rails-dom-testing (~> 2.0)
27+
rails-html-sanitizer (~> 1.0, >= 1.0.2)
28+
actionview (5.1.7)
29+
activesupport (= 5.1.7)
30+
builder (~> 3.1)
31+
erubi (~> 1.4)
32+
rails-dom-testing (~> 2.0)
33+
rails-html-sanitizer (~> 1.0, >= 1.0.3)
34+
activejob (5.1.7)
35+
activesupport (= 5.1.7)
36+
globalid (>= 0.3.6)
37+
activemodel (5.1.7)
38+
activesupport (= 5.1.7)
39+
activerecord (5.1.7)
40+
activemodel (= 5.1.7)
41+
activesupport (= 5.1.7)
42+
arel (~> 8.0)
43+
activesupport (5.1.7)
44+
concurrent-ruby (~> 1.0, >= 1.0.2)
45+
i18n (>= 0.7, < 2)
46+
minitest (~> 5.1)
47+
tzinfo (~> 1.1)
48+
appraisal (2.2.0)
49+
bundler
50+
rake
51+
thor (>= 0.14.0)
52+
arel (8.0.0)
53+
builder (3.2.3)
54+
carmen (1.1.3)
55+
activesupport (>= 3.0.0)
56+
concurrent-ruby (1.1.5)
57+
crass (1.0.5)
58+
erubi (1.9.0)
59+
globalid (0.4.2)
60+
activesupport (>= 4.2.0)
61+
i18n (1.7.0)
62+
concurrent-ruby (~> 1.0)
63+
loofah (2.3.1)
64+
crass (~> 1.0.2)
65+
nokogiri (>= 1.5.9)
66+
mail (2.7.1)
67+
mini_mime (>= 0.1.1)
68+
method_source (0.9.2)
69+
mini_mime (1.0.2)
70+
mini_portile2 (2.4.0)
71+
minitest (5.13.0)
72+
nio4r (2.5.2)
73+
nokogiri (1.10.4)
74+
mini_portile2 (~> 2.4.0)
75+
power_assert (1.1.5)
76+
rack (2.0.7)
77+
rack-test (1.1.0)
78+
rack (>= 1.0, < 3)
79+
rails (5.1.7)
80+
actioncable (= 5.1.7)
81+
actionmailer (= 5.1.7)
82+
actionpack (= 5.1.7)
83+
actionview (= 5.1.7)
84+
activejob (= 5.1.7)
85+
activemodel (= 5.1.7)
86+
activerecord (= 5.1.7)
87+
activesupport (= 5.1.7)
88+
bundler (>= 1.3.0)
89+
railties (= 5.1.7)
90+
sprockets-rails (>= 2.0.0)
91+
rails-dom-testing (2.0.3)
92+
activesupport (>= 4.2.0)
93+
nokogiri (>= 1.6)
94+
rails-html-sanitizer (1.3.0)
95+
loofah (~> 2.3)
96+
railties (5.1.7)
97+
actionpack (= 5.1.7)
98+
activesupport (= 5.1.7)
99+
method_source
100+
rake (>= 0.8.7)
101+
thor (>= 0.18.1, < 2.0)
102+
rake (13.0.0)
103+
sprockets (3.7.2)
104+
concurrent-ruby (~> 1.0)
105+
rack (> 1, < 3)
106+
sprockets-rails (3.2.1)
107+
actionpack (>= 4.0)
108+
activesupport (>= 4.0)
109+
sprockets (>= 3.0.0)
110+
test-unit (3.3.4)
111+
power_assert
112+
thor (0.20.3)
113+
thread_safe (0.3.6)
114+
tzinfo (1.2.5)
115+
thread_safe (~> 0.1)
116+
websocket-driver (0.6.5)
117+
websocket-extensions (>= 0.1.0)
118+
websocket-extensions (0.1.4)
119+
120+
PLATFORMS
121+
ruby
122+
123+
DEPENDENCIES
124+
appraisal (= 2.2.0)
125+
carmen-rails!
126+
minitest
127+
rails (~> 5.1.0)
128+
sprockets (~> 3.7)
129+
test-unit (~> 3.0)
130+
131+
BUNDLED WITH
132+
1.17.2

‎gemfiles/rails_5.2.gemfile

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# This file was generated by Appraisal
2+
3+
source "http://rubygems.org"
4+
5+
gem "appraisal", "2.2.0"
6+
gem "rails", "~> 5.2.0"
7+
gem "test-unit", "~> 3.0"
8+
gem "sprockets", "~> 3.7"
9+
10+
gemspec path: "../"

‎gemfiles/rails_5.2.gemfile.lock

+140
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,140 @@
1+
PATH
2+
remote: ..
3+
specs:
4+
carmen-rails (1.0.1)
5+
carmen (~> 1.0)
6+
rails
7+
8+
GEM
9+
remote: http://rubygems.org/
10+
specs:
11+
actioncable (5.2.3)
12+
actionpack (= 5.2.3)
13+
nio4r (~> 2.0)
14+
websocket-driver (>= 0.6.1)
15+
actionmailer (5.2.3)
16+
actionpack (= 5.2.3)
17+
actionview (= 5.2.3)
18+
activejob (= 5.2.3)
19+
mail (~> 2.5, >= 2.5.4)
20+
rails-dom-testing (~> 2.0)
21+
actionpack (5.2.3)
22+
actionview (= 5.2.3)
23+
activesupport (= 5.2.3)
24+
rack (~> 2.0)
25+
rack-test (>= 0.6.3)
26+
rails-dom-testing (~> 2.0)
27+
rails-html-sanitizer (~> 1.0, >= 1.0.2)
28+
actionview (5.2.3)
29+
activesupport (= 5.2.3)
30+
builder (~> 3.1)
31+
erubi (~> 1.4)
32+
rails-dom-testing (~> 2.0)
33+
rails-html-sanitizer (~> 1.0, >= 1.0.3)
34+
activejob (5.2.3)
35+
activesupport (= 5.2.3)
36+
globalid (>= 0.3.6)
37+
activemodel (5.2.3)
38+
activesupport (= 5.2.3)
39+
activerecord (5.2.3)
40+
activemodel (= 5.2.3)
41+
activesupport (= 5.2.3)
42+
arel (>= 9.0)
43+
activestorage (5.2.3)
44+
actionpack (= 5.2.3)
45+
activerecord (= 5.2.3)
46+
marcel (~> 0.3.1)
47+
activesupport (5.2.3)
48+
concurrent-ruby (~> 1.0, >= 1.0.2)
49+
i18n (>= 0.7, < 2)
50+
minitest (~> 5.1)
51+
tzinfo (~> 1.1)
52+
appraisal (2.2.0)
53+
bundler
54+
rake
55+
thor (>= 0.14.0)
56+
arel (9.0.0)
57+
builder (3.2.3)
58+
carmen (1.1.3)
59+
activesupport (>= 3.0.0)
60+
concurrent-ruby (1.1.5)
61+
crass (1.0.5)
62+
erubi (1.9.0)
63+
globalid (0.4.2)
64+
activesupport (>= 4.2.0)
65+
i18n (1.7.0)
66+
concurrent-ruby (~> 1.0)
67+
loofah (2.3.1)
68+
crass (~> 1.0.2)
69+
nokogiri (>= 1.5.9)
70+
mail (2.7.1)
71+
mini_mime (>= 0.1.1)
72+
marcel (0.3.3)
73+
mimemagic (~> 0.3.2)
74+
method_source (0.9.2)
75+
mimemagic (0.3.3)
76+
mini_mime (1.0.2)
77+
mini_portile2 (2.4.0)
78+
minitest (5.13.0)
79+
nio4r (2.5.2)
80+
nokogiri (1.10.4)
81+
mini_portile2 (~> 2.4.0)
82+
power_assert (1.1.5)
83+
rack (2.0.7)
84+
rack-test (1.1.0)
85+
rack (>= 1.0, < 3)
86+
rails (5.2.3)
87+
actioncable (= 5.2.3)
88+
actionmailer (= 5.2.3)
89+
actionpack (= 5.2.3)
90+
actionview (= 5.2.3)
91+
activejob (= 5.2.3)
92+
activemodel (= 5.2.3)
93+
activerecord (= 5.2.3)
94+
activestorage (= 5.2.3)
95+
activesupport (= 5.2.3)
96+
bundler (>= 1.3.0)
97+
railties (= 5.2.3)
98+
sprockets-rails (>= 2.0.0)
99+
rails-dom-testing (2.0.3)
100+
activesupport (>= 4.2.0)
101+
nokogiri (>= 1.6)
102+
rails-html-sanitizer (1.3.0)
103+
loofah (~> 2.3)
104+
railties (5.2.3)
105+
actionpack (= 5.2.3)
106+
activesupport (= 5.2.3)
107+
method_source
108+
rake (>= 0.8.7)
109+
thor (>= 0.19.0, < 2.0)
110+
rake (13.0.0)
111+
sprockets (3.7.2)
112+
concurrent-ruby (~> 1.0)
113+
rack (> 1, < 3)
114+
sprockets-rails (3.2.1)
115+
actionpack (>= 4.0)
116+
activesupport (>= 4.0)
117+
sprockets (>= 3.0.0)
118+
test-unit (3.3.4)
119+
power_assert
120+
thor (0.20.3)
121+
thread_safe (0.3.6)
122+
tzinfo (1.2.5)
123+
thread_safe (~> 0.1)
124+
websocket-driver (0.7.1)
125+
websocket-extensions (>= 0.1.0)
126+
websocket-extensions (0.1.4)
127+
128+
PLATFORMS
129+
ruby
130+
131+
DEPENDENCIES
132+
appraisal (= 2.2.0)
133+
carmen-rails!
134+
minitest
135+
rails (~> 5.2.0)
136+
sprockets (~> 3.7)
137+
test-unit (~> 3.0)
138+
139+
BUNDLED WITH
140+
1.17.2

‎gemfiles/rails_6.0.gemfile

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# This file was generated by Appraisal
2+
3+
source "http://rubygems.org"
4+
5+
gem "appraisal", "2.2.0"
6+
gem "rails", "~> 6.0.0"
7+
gem "test-unit", "~> 3.0"
8+
gem "sprockets", "~> 4.0"
9+
10+
gemspec path: "../"

‎gemfiles/rails_6.0.gemfile.lock

+156
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,156 @@
1+
PATH
2+
remote: ..
3+
specs:
4+
carmen-rails (1.0.1)
5+
carmen (~> 1.0)
6+
rails
7+
8+
GEM
9+
remote: http://rubygems.org/
10+
specs:
11+
actioncable (6.0.0)
12+
actionpack (= 6.0.0)
13+
nio4r (~> 2.0)
14+
websocket-driver (>= 0.6.1)
15+
actionmailbox (6.0.0)
16+
actionpack (= 6.0.0)
17+
activejob (= 6.0.0)
18+
activerecord (= 6.0.0)
19+
activestorage (= 6.0.0)
20+
activesupport (= 6.0.0)
21+
mail (>= 2.7.1)
22+
actionmailer (6.0.0)
23+
actionpack (= 6.0.0)
24+
actionview (= 6.0.0)
25+
activejob (= 6.0.0)
26+
mail (~> 2.5, >= 2.5.4)
27+
rails-dom-testing (~> 2.0)
28+
actionpack (6.0.0)
29+
actionview (= 6.0.0)
30+
activesupport (= 6.0.0)
31+
rack (~> 2.0)
32+
rack-test (>= 0.6.3)
33+
rails-dom-testing (~> 2.0)
34+
rails-html-sanitizer (~> 1.0, >= 1.2.0)
35+
actiontext (6.0.0)
36+
actionpack (= 6.0.0)
37+
activerecord (= 6.0.0)
38+
activestorage (= 6.0.0)
39+
activesupport (= 6.0.0)
40+
nokogiri (>= 1.8.5)
41+
actionview (6.0.0)
42+
activesupport (= 6.0.0)
43+
builder (~> 3.1)
44+
erubi (~> 1.4)
45+
rails-dom-testing (~> 2.0)
46+
rails-html-sanitizer (~> 1.1, >= 1.2.0)
47+
activejob (6.0.0)
48+
activesupport (= 6.0.0)
49+
globalid (>= 0.3.6)
50+
activemodel (6.0.0)
51+
activesupport (= 6.0.0)
52+
activerecord (6.0.0)
53+
activemodel (= 6.0.0)
54+
activesupport (= 6.0.0)
55+
activestorage (6.0.0)
56+
actionpack (= 6.0.0)
57+
activejob (= 6.0.0)
58+
activerecord (= 6.0.0)
59+
marcel (~> 0.3.1)
60+
activesupport (6.0.0)
61+
concurrent-ruby (~> 1.0, >= 1.0.2)
62+
i18n (>= 0.7, < 2)
63+
minitest (~> 5.1)
64+
tzinfo (~> 1.1)
65+
zeitwerk (~> 2.1, >= 2.1.8)
66+
appraisal (2.2.0)
67+
bundler
68+
rake
69+
thor (>= 0.14.0)
70+
builder (3.2.3)
71+
carmen (1.1.3)
72+
activesupport (>= 3.0.0)
73+
concurrent-ruby (1.1.5)
74+
crass (1.0.5)
75+
erubi (1.9.0)
76+
globalid (0.4.2)
77+
activesupport (>= 4.2.0)
78+
i18n (1.7.0)
79+
concurrent-ruby (~> 1.0)
80+
loofah (2.3.1)
81+
crass (~> 1.0.2)
82+
nokogiri (>= 1.5.9)
83+
mail (2.7.1)
84+
mini_mime (>= 0.1.1)
85+
marcel (0.3.3)
86+
mimemagic (~> 0.3.2)
87+
method_source (0.9.2)
88+
mimemagic (0.3.3)
89+
mini_mime (1.0.2)
90+
mini_portile2 (2.4.0)
91+
minitest (5.13.0)
92+
nio4r (2.5.2)
93+
nokogiri (1.10.4)
94+
mini_portile2 (~> 2.4.0)
95+
power_assert (1.1.5)
96+
rack (2.0.7)
97+
rack-test (1.1.0)
98+
rack (>= 1.0, < 3)
99+
rails (6.0.0)
100+
actioncable (= 6.0.0)
101+
actionmailbox (= 6.0.0)
102+
actionmailer (= 6.0.0)
103+
actionpack (= 6.0.0)
104+
actiontext (= 6.0.0)
105+
actionview (= 6.0.0)
106+
activejob (= 6.0.0)
107+
activemodel (= 6.0.0)
108+
activerecord (= 6.0.0)
109+
activestorage (= 6.0.0)
110+
activesupport (= 6.0.0)
111+
bundler (>= 1.3.0)
112+
railties (= 6.0.0)
113+
sprockets-rails (>= 2.0.0)
114+
rails-dom-testing (2.0.3)
115+
activesupport (>= 4.2.0)
116+
nokogiri (>= 1.6)
117+
rails-html-sanitizer (1.3.0)
118+
loofah (~> 2.3)
119+
railties (6.0.0)
120+
actionpack (= 6.0.0)
121+
activesupport (= 6.0.0)
122+
method_source
123+
rake (>= 0.8.7)
124+
thor (>= 0.20.3, < 2.0)
125+
rake (13.0.0)
126+
sprockets (4.0.0)
127+
concurrent-ruby (~> 1.0)
128+
rack (> 1, < 3)
129+
sprockets-rails (3.2.1)
130+
actionpack (>= 4.0)
131+
activesupport (>= 4.0)
132+
sprockets (>= 3.0.0)
133+
test-unit (3.3.4)
134+
power_assert
135+
thor (0.20.3)
136+
thread_safe (0.3.6)
137+
tzinfo (1.2.5)
138+
thread_safe (~> 0.1)
139+
websocket-driver (0.7.1)
140+
websocket-extensions (>= 0.1.0)
141+
websocket-extensions (0.1.4)
142+
zeitwerk (2.2.0)
143+
144+
PLATFORMS
145+
ruby
146+
147+
DEPENDENCIES
148+
appraisal (= 2.2.0)
149+
carmen-rails!
150+
minitest
151+
rails (~> 6.0.0)
152+
sprockets (~> 4.0)
153+
test-unit (~> 3.0)
154+
155+
BUNDLED WITH
156+
1.17.2

‎lib/tasks/carmen-rails_tasks.rake

-4
This file was deleted.

0 commit comments

Comments
 (0)
Please sign in to comment.