mirror of
https://gitlab.com/components/sast.git
synced 2025-06-30 23:48:27 +02:00
Add .gitlab-ci.yml and test Ruby app
This commit is contained in:
parent
4150356e21
commit
85795eaed6
17 changed files with 240 additions and 8 deletions
8
src/ruby_gem/lib/ruby_gem.rb
Normal file
8
src/ruby_gem/lib/ruby_gem.rb
Normal file
|
@ -0,0 +1,8 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
require_relative "ruby_gem/version"
|
||||
|
||||
module RubyGem
|
||||
class Error < StandardError; end
|
||||
# Your code goes here...
|
||||
end
|
5
src/ruby_gem/lib/ruby_gem/version.rb
Normal file
5
src/ruby_gem/lib/ruby_gem/version.rb
Normal file
|
@ -0,0 +1,5 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
module RubyGem
|
||||
VERSION = "0.1.0"
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue