Skip to content
This repository was archived by the owner on Feb 27, 2023. It is now read-only.

Commit cc5ffaf

Browse files
Update Ruby version and Gem dependencies (#46)
1 parent 0092ce0 commit cc5ffaf

File tree

4 files changed

+27
-23
lines changed

4 files changed

+27
-23
lines changed

.ruby-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.5.0
1+
2.5.3

Gemfile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
source "https://rubygems.org"
22

3-
ruby "2.5.0"
3+
ruby "2.5.3"
44

5-
gem 'dotenv', '2.2.1'
5+
gem 'dotenv', '2.7.2'
66
gem 'encrypted_cookie', '0.0.5'
7-
gem 'json', '2.1.0'
8-
gem 'sinatra', '2.0.2'
9-
gem 'stripe', '3.17.0'
7+
gem 'json', '2.2.0'
8+
gem 'sinatra', '2.0.5'
9+
gem 'stripe', '4.12.0'

Gemfile.lock

Lines changed: 20 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,42 @@
11
GEM
22
remote: https://rubygems.org/
33
specs:
4-
dotenv (2.2.1)
4+
connection_pool (2.2.2)
5+
dotenv (2.7.2)
56
encrypted_cookie (0.0.5)
67
rack (>= 1.1, < 3)
7-
faraday (0.15.3)
8+
faraday (0.15.4)
89
multipart-post (>= 1.2, < 3)
9-
json (2.1.0)
10+
json (2.2.0)
1011
multipart-post (2.0.0)
1112
mustermann (1.0.3)
12-
rack (2.0.6)
13-
rack-protection (2.0.2)
13+
net-http-persistent (3.0.0)
14+
connection_pool (~> 2.2)
15+
rack (2.0.7)
16+
rack-protection (2.0.5)
1417
rack
15-
sinatra (2.0.2)
18+
sinatra (2.0.5)
1619
mustermann (~> 1.0)
1720
rack (~> 2.0)
18-
rack-protection (= 2.0.2)
21+
rack-protection (= 2.0.5)
1922
tilt (~> 2.0)
20-
stripe (3.17.0)
21-
faraday (~> 0.10)
22-
tilt (2.0.8)
23+
stripe (4.12.0)
24+
faraday (~> 0.13)
25+
net-http-persistent (~> 3.0)
26+
tilt (2.0.9)
2327

2428
PLATFORMS
2529
ruby
2630

2731
DEPENDENCIES
28-
dotenv (= 2.2.1)
32+
dotenv (= 2.7.2)
2933
encrypted_cookie (= 0.0.5)
30-
json (= 2.1.0)
31-
sinatra (= 2.0.2)
32-
stripe (= 3.17.0)
34+
json (= 2.2.0)
35+
sinatra (= 2.0.5)
36+
stripe (= 4.12.0)
3337

3438
RUBY VERSION
35-
ruby 2.5.0p0
39+
ruby 2.5.3p105
3640

3741
BUNDLED WITH
38-
1.16.1
42+
1.17.1

web.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ def authenticate!
118118
end
119119

120120
# This endpoint is used by the mobile example apps to create a PaymentIntent.
121-
# https://stripe.com/docs/api#create_payment_intent
121+
# https://stripe.com/docs/api/payment_intents/create
122122
# Just like the `/create_charge` endpoint, a real implementation would include controls
123123
# to prevent misuse
124124
post '/create_intent' do

0 commit comments

Comments
 (0)