Start using sinatra & ruby for backend

Signed-off-by: Syed Daanish <me@syedm.dev>
This commit is contained in:
2025-06-21 17:38:17 +03:00
parent 9d387eb482
commit d8fd37e757
32 changed files with 457 additions and 0 deletions

35
.rubocop.yml Normal file
View File

@@ -0,0 +1,35 @@
AllCops:
TargetRubyVersion: 3.4.1
Layout/SpaceInsideArrayLiteralBrackets:
Enabled: false
Style/StringLiterals:
Enabled: false
Style/TrailingCommaInHashLiteral:
Enabled: false
Style/TrailingCommaInArrayLiteral:
Enabled: false
Style/FrozenStringLiteralComment:
Enabled: false
Layout/SpaceAroundOperators:
Enabled: false
Metrics/AbcSize:
Enabled: false
Metrics/MethodLength:
Enabled: false
Layout/EmptyLineAfterGuardClause:
Enabled: false
Metrics/PerceivedComplexity:
Enabled: false
Metrics/CyclomaticComplexity:
Enabled: false