summaryrefslogtreecommitdiffstats
path: root/CLI/ruby/Gemfile
diff options
context:
space:
mode:
authorAhmed AbdelHalim <[email protected]>2023-06-30 16:00:40 +0200
committerAhmed AbdelHalim <[email protected]>2023-06-30 16:00:40 +0200
commitf64697a5aede493d52724860856bcbf9f5803169 (patch)
treebc804c7bca9997ad8daea75a7843f7ca211981fb /CLI/ruby/Gemfile
parentd124465bc3a83a614eb10eb7c6d6ddff2fc00f35 (diff)
Update and fix rubocop offenses
Diffstat (limited to 'CLI/ruby/Gemfile')
-rw-r--r--CLI/ruby/Gemfile15
1 files changed, 15 insertions, 0 deletions
diff --git a/CLI/ruby/Gemfile b/CLI/ruby/Gemfile
index c0c8dc1..465d188 100644
--- a/CLI/ruby/Gemfile
+++ b/CLI/ruby/Gemfile
@@ -4,3 +4,18 @@ source "https://rubygems.org"
# Specify your gem's dependencies in game_of_life.gemspec
gemspec
+
+group :development, :test do
+ gem "bundler"
+ gem "pry-byebug"
+ gem "rake"
+ gem "rspec"
+ gem "rubocop"
+ gem "rubocop-rspec"
+ # Code Coverage dependencies
+ gem "json"
+ gem "simplecov"
+ # Documentation dependencies
+ gem "redcarpet"
+ gem "yard"
+end