tangled
alpha
login
or
join now
jcs.org
/
sinatree
0
fork
atom
A skeleton web application configured to use Sinatra and ActiveRecord
0
fork
atom
overview
issues
pulls
pipelines
Gemfile: Update sinatra{,-contrib} to 2.2.3
jcs.org
3 years ago
c9f9bdc6
4df3aa4d
+17
-15
2 changed files
expand all
collapse all
unified
split
Gemfile
Gemfile.lock
+3
-2
Gemfile
···
4
4
5
5
gem "rack"
6
6
7
7
-
gem "sinatra"
8
8
-
gem "sinatra-contrib"
7
7
+
gem "sinatra", "< 3.0"
8
8
+
gem "sinatra-contrib", "< 3.0"
9
9
gem "erubis"
10
10
11
11
gem "rack_csrf"
···
24
24
gem "bcrypt"
25
25
26
26
# for email and notification exceptions
27
27
+
gem "mail", "~> 2.7.1" # https://github.com/mikel/mail/issues/1489
27
28
gem "pony"
28
29
29
30
# for development
+14
-13
Gemfile.lock
···
28
28
mini_mime (1.1.2)
29
29
minitest (5.15.0)
30
30
multi_json (1.15.0)
31
31
-
mustermann (1.1.1)
31
31
+
mustermann (2.0.2)
32
32
ruby2_keywords (~> 0.0.1)
33
33
pony (1.13.1)
34
34
mail (>= 2.0)
35
35
-
rack (2.2.3.1)
36
36
-
rack-protection (2.2.0)
35
35
+
rack (2.2.4)
36
36
+
rack-protection (2.2.3)
37
37
rack
38
38
rack-test (1.1.0)
39
39
rack (>= 1.0, < 3)
···
46
46
ruby2_keywords (0.0.5)
47
47
shotgun (0.9.2)
48
48
rack (>= 1.0)
49
49
-
sinatra (2.2.0)
50
50
-
mustermann (~> 1.0)
49
49
+
sinatra (2.2.3)
50
50
+
mustermann (~> 2.0)
51
51
rack (~> 2.2)
52
52
-
rack-protection (= 2.2.0)
52
52
+
rack-protection (= 2.2.3)
53
53
tilt (~> 2.0)
54
54
sinatra-activerecord (2.0.25)
55
55
activerecord (>= 4.1)
56
56
sinatra (>= 1.0)
57
57
-
sinatra-contrib (2.2.0)
57
57
+
sinatra-contrib (2.2.3)
58
58
multi_json
59
59
-
mustermann (~> 1.0)
60
60
-
rack-protection (= 2.2.0)
61
61
-
sinatra (= 2.2.0)
59
59
+
mustermann (~> 2.0)
60
60
+
rack-protection (= 2.2.3)
61
61
+
sinatra (= 2.2.3)
62
62
tilt (~> 2.0)
63
63
sqlite3 (1.4.2)
64
64
thread_safe (0.3.6)
65
65
-
tilt (2.0.10)
65
65
+
tilt (2.0.11)
66
66
tzinfo (1.2.10)
67
67
thread_safe (~> 0.1)
68
68
unicorn (6.1.0)
···
78
78
erubis
79
79
irb
80
80
json
81
81
+
mail (~> 2.7.1)
81
82
minitest
82
83
pony
83
84
rack
···
85
86
rack_csrf
86
87
rake
87
88
shotgun
88
88
-
sinatra
89
89
+
sinatra (< 3.0)
89
90
sinatra-activerecord
90
90
-
sinatra-contrib
91
91
+
sinatra-contrib (< 3.0)
91
92
sqlite3
92
93
unicorn
93
94