17 lines
213 B
Ruby
17 lines
213 B
Ruby
# frozen_string_literal: true
|
|
|
|
target :lib do
|
|
signature 'sig'
|
|
|
|
check 'lib'
|
|
|
|
# Core libraries
|
|
library 'base64'
|
|
library 'digest'
|
|
library 'openssl'
|
|
library 'securerandom'
|
|
|
|
# Gems
|
|
library 'json'
|
|
end
|