-
Notifications
You must be signed in to change notification settings - Fork 5
/
phlex-chatbot.gemspec
33 lines (26 loc) · 1.16 KB
/
phlex-chatbot.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# frozen_string_literal: true
require_relative "lib/phlex/chatbot/version"
Gem::Specification.new do |spec|
spec.name = "phlex-chatbot"
spec.version = Phlex::Chatbot::VERSION
spec.authors = ["Hedgeye Risk Management, LLC"]
spec.email = ["[email protected]"]
spec.summary = "summarize it"
spec.description = "Write a longer description or delete this line."
spec.homepage = "https://github.com/hedgeyedev/phlex-chatbot"
spec.license = "MIT"
spec.required_ruby_version = ">= 3.2"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = spec.homepage
spec.metadata["changelog_uri"] = "#{spec.homepage}/CHANGELOG.md"
spec.metadata["github_repo"] = spec.homepage
# Specify which files should be added to the gem when it is released.
spec.files = Dir.chdir(File.expand_path(__dir__)) do
Dir["{dist,lib}/**/*", "CHANGELOG.md", "LICENSE.txt", "README.md"]
end
spec.require_paths = ["lib"]
spec.add_dependency "phlex", "~> 1.10"
# For more information and examples about making a new gem, check out our
# guide at: https://bundler.io/guides/creating_gem.html
spec.metadata["rubygems_mfa_required"] = "true"
end