summaryrefslogtreecommitdiffstats
path: root/CLI/ruby/Rakefile
diff options
context:
space:
mode:
authora14m <[email protected]>2020-11-27 17:02:40 +0100
committera14m <[email protected]>2020-11-27 17:55:36 +0100
commit8185d66664367eab60edb3ab27103d22c1631769 (patch)
tree6b2b8f68a3a559e8f24d65003ae17848e3111e5d /CLI/ruby/Rakefile
parentd1a020777af347f59b73b58f0ce96bb360dc6b35 (diff)
Initial commit of the ruby gem
Diffstat (limited to 'CLI/ruby/Rakefile')
-rw-r--r--CLI/ruby/Rakefile8
1 files changed, 8 insertions, 0 deletions
diff --git a/CLI/ruby/Rakefile b/CLI/ruby/Rakefile
new file mode 100644
index 0000000..b6ae734
--- /dev/null
+++ b/CLI/ruby/Rakefile
@@ -0,0 +1,8 @@
+# frozen_string_literal: true
+
+require "bundler/gem_tasks"
+require "rspec/core/rake_task"
+
+RSpec::Core::RakeTask.new(:spec)
+
+task default: :spec