From 1195e267d7a71e860336c13fa5af602aabc7a35a Mon Sep 17 00:00:00 2001 From: PedroAugustoRamalhoDuarte Date: Fri, 7 Oct 2022 11:43:16 -0300 Subject: [PATCH] :bookmark: Release 0.1.1 --- .rubocop.yml | 2 ++ lib/rest_api_generator/version.rb | 2 +- rest-api-generator.gemspec | 6 ++---- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.rubocop.yml b/.rubocop.yml index 10808a3..da98d22 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -1,6 +1,8 @@ AllCops: NewCops: enable TargetRubyVersion: 2.6 + Exclude: + - 'rest-api-generator.gemspec' Style/StringLiterals: Enabled: true diff --git a/lib/rest_api_generator/version.rb b/lib/rest_api_generator/version.rb index d3665c4..c18b299 100644 --- a/lib/rest_api_generator/version.rb +++ b/lib/rest_api_generator/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module RestApiGenerator - VERSION = "0.1.0" + VERSION = "0.1.1" end diff --git a/rest-api-generator.gemspec b/rest-api-generator.gemspec index 6416357..b5bc62d 100644 --- a/rest-api-generator.gemspec +++ b/rest-api-generator.gemspec @@ -9,8 +9,8 @@ Gem::Specification.new do |spec| spec.authors = ["PedroAugustoRamalhoDuarte"] spec.email = ["pedro_aduarte@aluno.unb.br"] - spec.summary = "Build a rails rest api in minutes" - spec.description = "Generates rest api in SwitchDreams default faster with rest-api-generator" + spec.summary = "Build a Ruby on Rails REST API faster" + spec.description = "This gem helps you to build a Ruby on Rails REST API faster, using a scaffold-like generator that follows the best practices." spec.homepage = "https://github.com/SwitchDreams/rest-api-generator" spec.license = "MIT" spec.required_ruby_version = ">= 2.6.0" @@ -27,8 +27,6 @@ Gem::Specification.new do |spec| spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] - # Uncomment to register a new dependency of your gem - # spec.add_dependency "example-gem", "~> 1.0" spec.add_runtime_dependency("railties", ">= 5.0.0") # For more information and examples about making a new gem, check out our