File tree Expand file tree Collapse file tree 4 files changed +33
-36
lines changed Expand file tree Collapse file tree 4 files changed +33
-36
lines changed Original file line number Diff line number Diff line change 1
1
language : ruby
2
2
sudo : false
3
3
rvm :
4
- - 2.2
5
- - 2.3
6
- - 2.4
7
4
- 2.5
8
5
before_install :
9
6
- cp -p Gemfile.lock Gemfile.lock.org
Original file line number Diff line number Diff line change 1
- FROM centos/ruby-22 -centos7
1
+ FROM centos/ruby-25 -centos7
2
2
USER default
3
3
EXPOSE 8080
4
4
ENV RACK_ENV production
5
5
ENV RAILS_ENV production
6
6
COPY . /opt/app-root/src/
7
- RUN scl enable rh-ruby22 "bundle install"
8
- CMD ["scl" , "enable" , "rh-ruby22" , "./run.sh" ]
7
+ ENV GEM_HOME ~/.gem
8
+ RUN scl enable rh-ruby25 "bundle install"
9
+ CMD ["scl" , "enable" , "rh-ruby25" , "./run.sh" ]
9
10
10
11
USER root
11
12
RUN chmod og+rw /opt/app-root/src/db
Original file line number Diff line number Diff line change 1
1
source 'https://rubygems.org'
2
2
3
- gem 'sinatra' , '2.0.5 '
4
- gem 'sinatra-activerecord' , '2.0.13 '
3
+ gem 'sinatra' , '2.0.7 '
4
+ gem 'sinatra-activerecord' , '2.0.14 '
5
5
gem 'mysql2' , '0.4.10'
6
- gem 'rake' , '12.3.0'
7
- gem 'minitest' , '5.11.3'
8
- gem 'i18n' , '0.9.3'
9
-
6
+ gem 'rake' , '13.0.0'
7
+ gem 'minitest' , '5.13.0'
8
+ gem 'i18n' , '1.7.0'
Original file line number Diff line number Diff line change 1
1
GEM
2
2
remote: https://rubygems.org/
3
3
specs:
4
- activemodel (5.1.4 )
5
- activesupport (= 5.1.4 )
6
- activerecord (5.1.4 )
7
- activemodel (= 5.1.4 )
8
- activesupport (= 5.1.4 )
9
- arel (~> 8.0 )
10
- activesupport (5.1.4 )
4
+ activemodel (6.0.0 )
5
+ activesupport (= 6.0.0 )
6
+ activerecord (6.0.0 )
7
+ activemodel (= 6.0.0 )
8
+ activesupport (= 6.0.0 )
9
+ activesupport (6.0.0 )
11
10
concurrent-ruby (~> 1.0 , >= 1.0.2 )
12
- i18n (~> 0.7 )
11
+ i18n (>= 0.7 , < 2 )
13
12
minitest (~> 5.1 )
14
13
tzinfo (~> 1.1 )
15
- arel ( 8.0.0 )
16
- concurrent-ruby (1.0 .5 )
17
- i18n (0.9.3 )
14
+ zeitwerk ( ~> 2.1 , >= 2.1.8 )
15
+ concurrent-ruby (1.1 .5 )
16
+ i18n (1.7.0 )
18
17
concurrent-ruby (~> 1.0 )
19
- minitest (5.11.3 )
18
+ minitest (5.13.0 )
20
19
mustermann (1.0.3 )
21
20
mysql2 (0.4.10 )
22
- rack (2.0.6 )
23
- rack-protection (2.0.5 )
21
+ rack (2.0.7 )
22
+ rack-protection (2.0.7 )
24
23
rack
25
- rake (12.3 .0 )
26
- sinatra (2.0.5 )
24
+ rake (13.0 .0 )
25
+ sinatra (2.0.7 )
27
26
mustermann (~> 1.0 )
28
27
rack (~> 2.0 )
29
- rack-protection (= 2.0.5 )
28
+ rack-protection (= 2.0.7 )
30
29
tilt (~> 2.0 )
31
- sinatra-activerecord (2.0.13 )
30
+ sinatra-activerecord (2.0.14 )
32
31
activerecord (>= 3.2 )
33
32
sinatra (>= 1.0 )
34
33
thread_safe (0.3.6 )
35
- tilt (2.0.9 )
34
+ tilt (2.0.10 )
36
35
tzinfo (1.2.5 )
37
36
thread_safe (~> 0.1 )
37
+ zeitwerk (2.2.1 )
38
38
39
39
PLATFORMS
40
40
ruby
41
41
42
42
DEPENDENCIES
43
- i18n (= 0.9.3 )
44
- minitest (= 5.11.3 )
43
+ i18n (= 1.7.0 )
44
+ minitest (= 5.13.0 )
45
45
mysql2 (= 0.4.10 )
46
- rake (= 12.3 .0 )
47
- sinatra (= 2.0.5 )
48
- sinatra-activerecord (= 2.0.13 )
46
+ rake (= 13.0 .0 )
47
+ sinatra (= 2.0.7 )
48
+ sinatra-activerecord (= 2.0.14 )
You can’t perform that action at this time.
0 commit comments