add twenty.gemspec

This commit is contained in:
0x1eef 2023-12-22 02:48:43 -03:00
parent ad560bbc9a
commit 54565c6322
2 changed files with 17 additions and 0 deletions

View file

@ -1,4 +1,5 @@
source "https://rubygems.org" source "https://rubygems.org"
gemspec
gem "twenty-cli", path: "./twenty-cli" gem "twenty-cli", path: "./twenty-cli"
gem "twenty-backend", path: "./twenty-backend" gem "twenty-backend", path: "./twenty-backend"
gem "twenty-frontend", path: "./twenty-frontend" gem "twenty-frontend", path: "./twenty-frontend"

16
twenty.gemspec Normal file
View file

@ -0,0 +1,16 @@
# frozen_string_literal: true
Gem::Specification.new do |gem|
gem.name = "twenty"
gem.authors = ["0x1eef"]
gem.email = ["0x1eef@protonmail.com"]
gem.homepage = "https://github.com/0x1eef/twenty#readme"
gem.version = "0.1.0"
gem.licenses = ["0BSD"]
gem.files = []
gem.summary = "Add summary here..."
gem.description = gem.summary
gem.add_runtime_dependency "twenty-backend", "~> 0.1"
gem.add_runtime_dependency "twenty-frontend", "~> 0.1"
gem.add_runtime_dependency "twenty-cli", "~> 0.1"
end