Skip to content

Commit 1195e26

Browse files
🔖 Release 0.1.1
1 parent 32b8896 commit 1195e26

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.rubocop.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
AllCops:
22
NewCops: enable
33
TargetRubyVersion: 2.6
4+
Exclude:
5+
- 'rest-api-generator.gemspec'
46

57
Style/StringLiterals:
68
Enabled: true

lib/rest_api_generator/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module RestApiGenerator
4-
VERSION = "0.1.0"
4+
VERSION = "0.1.1"
55
end

rest-api-generator.gemspec

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ Gem::Specification.new do |spec|
99
spec.authors = ["PedroAugustoRamalhoDuarte"]
1010
spec.email = ["[email protected]"]
1111

12-
spec.summary = "Build a rails rest api in minutes"
13-
spec.description = "Generates rest api in SwitchDreams default faster with rest-api-generator"
12+
spec.summary = "Build a Ruby on Rails REST API faster"
13+
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."
1414
spec.homepage = "https://github.com/SwitchDreams/rest-api-generator"
1515
spec.license = "MIT"
1616
spec.required_ruby_version = ">= 2.6.0"
@@ -27,8 +27,6 @@ Gem::Specification.new do |spec|
2727
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
2828
spec.require_paths = ["lib"]
2929

30-
# Uncomment to register a new dependency of your gem
31-
# spec.add_dependency "example-gem", "~> 1.0"
3230
spec.add_runtime_dependency("railties", ">= 5.0.0")
3331

3432
# For more information and examples about making a new gem, check out our

0 commit comments

Comments
 (0)