|
| 1 | +# frozen_string_literal: true |
| 2 | + |
| 3 | +require_relative "lib/clai/version" |
| 4 | + |
| 5 | +Gem::Specification.new do |spec| |
| 6 | + spec.name = "clai" |
| 7 | + spec.version = CLAI::VERSION |
| 8 | + spec.authors = ["Niklas Häusele"] |
| 9 | + spec.email = ["[email protected]"] |
| 10 | + |
| 11 | + spec.summary = "Your personal AI for the terminal" |
| 12 | + spec.description = spec.summary |
| 13 | + spec.homepage = "https://github.com/codergeek121/clai" |
| 14 | + spec.required_ruby_version = ">= 2.6.0" |
| 15 | + |
| 16 | + spec.metadata["homepage_uri"] = spec.homepage |
| 17 | + spec.metadata["source_code_uri"] = spec.homepage |
| 18 | + |
| 19 | + #spec.metadata["changelog_uri"] = "TODO: Put your gem's CHANGELOG.md URL here." |
| 20 | + |
| 21 | + # Specify which files should be added to the gem when it is released. |
| 22 | + # The `git ls-files -z` loads the files in the RubyGem that have been added into git. |
| 23 | + spec.files = Dir.chdir(__dir__) do |
| 24 | + `git ls-files -z`.split("\x0").reject do |f| |
| 25 | + (File.expand_path(f) == __FILE__) || |
| 26 | + f.start_with?(*%w[bin/ test/ spec/ features/ .git .circleci appveyor Gemfile]) |
| 27 | + end |
| 28 | + end |
| 29 | + spec.bindir = "exe" |
| 30 | + spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) } |
| 31 | + spec.require_paths = ["lib"] |
| 32 | + |
| 33 | + spec.add_dependency "zeitwerk", '~> 2.6', '>= 2.6.8' |
| 34 | + spec.add_dependency "http", '~> 5.1', '>= 5.1.1' |
| 35 | + spec.add_dependency "thor", '~> 1.2', '>= 1.2.2' |
| 36 | + |
| 37 | + # For more information and examples about making a new gem, check out our |
| 38 | + # guide at: https://bundler.io/guides/creating_gem.html |
| 39 | + spec.post_install_message = <<~POST_INSTALL |
| 40 | + _____ _ _____ |
| 41 | + / ____| | /\ |_ _| |
| 42 | + | | | | / \ | | |
| 43 | + | | | | / /\ \ | | |
| 44 | + | |____| |____ / ____ \ _| |_ |
| 45 | + \_____|______/_/ \_\_____| |
| 46 | + |
| 47 | + Thank you for using clai. |
| 48 | +
|
| 49 | + clai is early alpha software, beware of unexpected costs. |
| 50 | + Make sure to add a billing limit to your OpenAI api key. |
| 51 | +
|
| 52 | + To start using clai, run 'clai setup' |
| 53 | + POST_INSTALL |
| 54 | +end |
0 commit comments