-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapi_responser.gemspec
24 lines (21 loc) · 1.17 KB
/
api_responser.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
Gem::Specification.new do |spec|
spec.name = 'api_responser'
spec.version = '1.0.0.8'
spec.authors = ['Nazim Mehdiyev']
spec.email = ['[email protected]']
spec.licenses = ['MIT']
spec.summary = %q{A gem to standardize API responses in Rails applications}
spec.description = %q{
The api_responser gem provides a standardized way to handle API responses in a Rails application.
It includes methods for rendering success and error responses, making it easier to manage and maintain
consistent response structures across your application. The gem leverages I18n for localization, allowing
dynamic translation of response messages based on method names.
}
spec.files = Dir['app/helpers/*','app/views/**/*', 'lib/**/*', 'config/locales/*.yml', 'README.md', 'LICENSE']
spec.homepage = 'https://github.com/nmehdiyev/ApiResponser'
spec.metadata = { "source_code_uri" => "https://github.com/nmehdiyev/ApiResponser" }
spec.require_paths = ["lib"]
spec.add_dependency 'rails','~> 7.0'
spec.add_development_dependency 'minitest', '~> 5.1'
spec.add_development_dependency 'webrick', '~> 1.8'
end