-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
34 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,33 @@ | ||
# frozen_string_literal: true | ||
|
||
$LOAD_PATH.unshift File.expand_path('lib', __dir__) | ||
|
||
require 'treblle/version' | ||
|
||
Gem::Specification.new do |s| | ||
s.name = 'treblle' | ||
s.version = Treblle::VERSION | ||
s.platform = Gem::Platform::RUBY | ||
s.summary = 'Middleware for monitoring your API endpoints' | ||
s.authors = ['Borna Kapusta'] | ||
s.email = '[email protected]' | ||
s.homepage = 'https://rubygems.org/gems/treblle' | ||
s.license = 'MIT' | ||
Gem::Specification.new do |spec| | ||
spec.name = 'treblle' | ||
spec.version = Treblle::VERSION | ||
spec.platform = Gem::Platform::RUBY | ||
spec.summary = 'Middleware for monitoring your API endpoints' | ||
spec.authors = ['Borna Kapusta'] | ||
spec.email = '[email protected]' | ||
spec.homepage = 'https://rubygems.org/gems/treblle' | ||
spec.license = 'MIT' | ||
|
||
s.files = Dir['lib/**/*'] + %w[MIT-LICENSE SECURITY.md README.md] | ||
spec.files = Dir['lib/**/*'] + %w[MIT-LICENSE SECURITY.md README.md] | ||
|
||
s.description = <<~EOF | ||
spec.description = <<~EOF | ||
Treblle is a lightweight SDK that helps Engineering and Product teams | ||
build, ship & maintain REST based APIs faster. | ||
Treblle SDKs can… | ||
Send requests to your Treblle dashboard | ||
Send error to your Treblle dashboard | ||
EOF | ||
|
||
s.required_ruby_version = '>= 2.4.0' | ||
s.add_development_dependency 'activesupport', '~> 6.0' | ||
s.add_development_dependency 'bundler' | ||
s.add_development_dependency 'json' | ||
s.add_development_dependency 'minitest', '~> 5.0' | ||
s.add_development_dependency 'rake' | ||
spec.required_ruby_version = '>= 2.4.0' | ||
spec.add_dependency 'actionpack' | ||
spec.add_dependency 'activesupport' | ||
spec.add_dependency 'json' | ||
spec.add_dependency 'minitest' | ||
spec.add_dependency 'rake' | ||
end |