|
| 1 | +source 'https://rubygems.org' |
| 2 | + |
| 3 | +gemspec path: '../' |
| 4 | + |
| 5 | +group :development do |
| 6 | + # Send and retrieve your ruby i18n localizations to the Locale translation service https://www.localeapp.com |
| 7 | + gem 'localeapp' |
| 8 | + # RDoc produces HTML and command-line documentation for Ruby projects |
| 9 | + gem 'rdoc' |
| 10 | +end |
| 11 | + |
| 12 | +group :development, :lint do |
| 13 | + # A static analysis security vulnerability scanner for Ruby on Rails applications |
| 14 | + gem 'brakeman', require: false |
| 15 | + # Patch-level verification for Bundler |
| 16 | + gem 'bundler-audit', require: false |
| 17 | + # A Ruby static code analyzer. Aims to enforce the community-driven Ruby Style Guide |
| 18 | + gem 'rubocop', '0.52.1', require: false |
| 19 | + # Manage translation and localization with static analysis, for Ruby i18n |
| 20 | + gem 'i18n-tasks', require: false |
| 21 | +end |
| 22 | + |
| 23 | +group :development, :lint, :test do |
| 24 | + gem 'rake', require: false |
| 25 | +end |
| 26 | + |
| 27 | +group :development, :test do |
| 28 | + # Rack provides a minimal interface between webservers that support Ruby and Ruby frameworks |
| 29 | + gem 'rack' |
| 30 | +end |
| 31 | + |
| 32 | +group :test do |
| 33 | + # Makes tests easy on the fingers and the eyes |
| 34 | + gem 'shoulda' |
| 35 | + # Mocking and stubbing library with JMock/SchMock syntax, which allows mocking and stubbing of methods on real (non-mock) classes |
| 36 | + gem 'mocha' |
| 37 | + # Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. |
| 38 | + # It encourages beautiful code by favoring convention over configuration. |
| 39 | + gem 'rails', '~> 8.1.0' |
| 40 | + # Create customizable MiniTest output formats |
| 41 | + gem 'minitest-reporters', require: false |
| 42 | + # Code coverage for Ruby 1.9+ with a powerful configuration library and automatic merging of coverage across test suites |
| 43 | + gem 'simplecov', require: false |
| 44 | + |
| 45 | + platforms :jruby do |
| 46 | + # This module allows Ruby programs to interface with the SQLite3 database engine |
| 47 | + gem 'activerecord-jdbcsqlite3-adapter', github: 'jruby/activerecord-jdbc-adapter' #'~> 80.0' |
| 48 | + # This module allows Ruby programs to interface with the SQLite3 database engine |
| 49 | + gem 'jdbc-sqlite3' |
| 50 | + end |
| 51 | + |
| 52 | + platforms :ruby do |
| 53 | + # This module allows Ruby programs to interface with the SQLite3 database engine |
| 54 | + gem 'sqlite3' |
| 55 | + end |
| 56 | +end |
0 commit comments