Compare commits

...

1 Commits

Author SHA1 Message Date
Arthur POULET 35b69ef33a
Loosen on dependencies version
continuous-integration/drone/push Build is passing Details
2022-07-28 00:47:13 +02:00
2 changed files with 43 additions and 43 deletions

28
Gemfile
View File

@ -3,34 +3,34 @@
source "https://rubygems.org" source "https://rubygems.org"
# web # web
gem "puma", "~> 5.3" gem "puma", "~> 5"
gem "sinatra", "~> 2.1" gem "sinatra", "~> 2"
gem "sinatra-contrib", "~> 2.1" gem "sinatra-contrib", "~> 2"
gem "slim", "~> 4.1" gem "slim", "~> 4"
# database # database
gem "sequel", "~> 5.43" gem "sequel", "~> 5"
# you # comment the drivers you don't want # you # comment the drivers you don't want
gem "sqlite3", "~> 1.4" gem "sqlite3", "~> 1"
# gem "pg", "~> 1.2" # gem "pg", "~> 1.2"
# security # security
gem "jwt", "~> 2.2" gem "jwt", "~> 2"
gem "bcrypt", "~> 3.1" gem "bcrypt", "~> 3"
gem "rack_csrf", "~> 2.6" gem "rack_csrf", "~> 2"
# api tools # api tools
gem "doc_my_routes" gem "doc_my_routes"
# debug and helpers # debug and helpers
gem "colorize", "~> 0.8.1" gem "colorize", "~> 0.8"
gem "activesupport", "= 6.1.3.1" gem "activesupport", "~> 6"
# tests # tests
group :test do group :test do
gem "pry", "~> 0.14.1" gem "pry"
gem "rack-test", "~> 1.1", require: false gem "rack-test", "~> 1", require: false
# gem "simplecov", "~> 0.21.2", require: false # gem "simplecov", "~> 0.21.2", require: false
end end
gem "dotenv", "~> 2.7" gem "dotenv", "~> 2"

View File

@ -1,7 +1,7 @@
GEM GEM
remote: https://rubygems.org/ remote: https://rubygems.org/
specs: specs:
activesupport (6.1.3.1) activesupport (6.1.6.1)
concurrent-ruby (~> 1.0, >= 1.0.2) concurrent-ruby (~> 1.0, >= 1.0.2)
i18n (>= 1.6, < 2) i18n (>= 1.6, < 2)
minitest (>= 5.1) minitest (>= 5.1)
@ -12,14 +12,14 @@ GEM
colorize (0.8.1) colorize (0.8.1)
concurrent-ruby (1.1.10) concurrent-ruby (1.1.10)
doc_my_routes (0.13.0) doc_my_routes (0.13.0)
dotenv (2.7.6) dotenv (2.8.1)
i18n (1.10.0) i18n (1.12.0)
concurrent-ruby (~> 1.0) concurrent-ruby (~> 1.0)
jwt (2.4.1) jwt (2.4.1)
method_source (1.0.0) method_source (1.0.0)
minitest (5.16.1) minitest (5.16.2)
multi_json (1.15.0) multi_json (1.15.0)
mustermann (1.1.2) mustermann (2.0.2)
ruby2_keywords (~> 0.0.1) ruby2_keywords (~> 0.0.1)
nio4r (2.5.8) nio4r (2.5.8)
pry (0.14.1) pry (0.14.1)
@ -27,25 +27,25 @@ GEM
method_source (~> 1.0) method_source (~> 1.0)
puma (5.6.4) puma (5.6.4)
nio4r (~> 2.0) nio4r (~> 2.0)
rack-protection (2.2.0)
rack (2.2.4) rack (2.2.4)
rack-protection (2.2.2)
rack rack
rack-test (1.1.0) rack-test (1.1.0)
rack (>= 1.0, < 3) rack (>= 1.0, < 3)
rack_csrf (2.6.0) rack_csrf (2.6.0)
rack (>= 1.1.0) rack (>= 1.1.0)
ruby2_keywords (0.0.5) ruby2_keywords (0.0.5)
sequel (5.57.0) sequel (5.58.0)
sinatra (2.2.0) sinatra (2.2.2)
mustermann (~> 1.0) mustermann (~> 2.0)
rack (~> 2.2) rack (~> 2.2)
rack-protection (= 2.2.0) rack-protection (= 2.2.2)
tilt (~> 2.0) tilt (~> 2.0)
sinatra-contrib (2.2.0) sinatra-contrib (2.2.2)
multi_json multi_json
mustermann (~> 1.0) mustermann (~> 2.0)
rack-protection (= 2.2.0) rack-protection (= 2.2.2)
sinatra (= 2.2.0) sinatra (= 2.2.2)
tilt (~> 2.0) tilt (~> 2.0)
slim (4.1.0) slim (4.1.0)
temple (>= 0.7.6, < 0.9) temple (>= 0.7.6, < 0.9)
@ -53,7 +53,7 @@ GEM
sqlite3 (1.4.4) sqlite3 (1.4.4)
temple (0.8.2) temple (0.8.2)
tilt (2.0.11) tilt (2.0.11)
tzinfo (2.0.4) tzinfo (2.0.5)
concurrent-ruby (~> 1.0) concurrent-ruby (~> 1.0)
zeitwerk (2.6.0) zeitwerk (2.6.0)
@ -61,21 +61,21 @@ PLATFORMS
x86_64-linux x86_64-linux
DEPENDENCIES DEPENDENCIES
activesupport (= 6.1.3.1) activesupport (~> 6)
bcrypt (~> 3.1) bcrypt (~> 3)
colorize (~> 0.8.1) colorize (~> 0.8)
doc_my_routes doc_my_routes
dotenv (~> 2.7) dotenv (~> 2)
jwt (~> 2.2) jwt (~> 2)
pry (~> 0.14.1) pry
puma (~> 5.3) puma (~> 5)
rack-test (~> 1.1) rack-test (~> 1)
rack_csrf (~> 2.6) rack_csrf (~> 2)
sequel (~> 5.43) sequel (~> 5)
sinatra (~> 2.1) sinatra (~> 2)
sinatra-contrib (~> 2.1) sinatra-contrib (~> 2)
slim (~> 4.1) slim (~> 4)
sqlite3 (~> 1.4) sqlite3 (~> 1)
BUNDLED WITH BUNDLED WITH
2.2.16 2.2.16