Skip to content

Commit

Permalink
Update gemfile
Browse files Browse the repository at this point in the history
  • Loading branch information
casiodk committed Sep 19, 2023
1 parent 89634b4 commit 432d26f
Show file tree
Hide file tree
Showing 7 changed files with 45 additions and 31 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,8 @@ jobs:
ruby:
- '3.2'
- '3.1'
- '3.0'
- '2.7'
include:
- ruby: '3.0'
- ruby: '3.1'
coverage: 'true'
env:
COVERAGE: "${{matrix.coverage}}"
Expand Down
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ require:

AllCops:
NewCops: enable
TargetRubyVersion: 2.7
TargetRubyVersion: 3.1
Exclude:
- "vendor/**/*" # For CI
- "db/schema.rb"
Expand Down
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
## v0.1.3
September 18 2023

## v0.1.2
March 03 2022

#### Added
- Add the response helper.
Refactor the code a bit :)
Include Dockerfile an docker-compose
Include Dockerfile an docker-compose
53 changes: 33 additions & 20 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,18 +1,19 @@
PATH
remote: .
specs:
hanikamu-service (0.1.2)
dry-monads (~> 1)
dry-struct (~> 1)
hanikamu-service (0.1.3)
dry-monads (~> 1.6.0)
dry-struct (~> 1.6.0)

GEM
remote: https://rubygems.org/
specs:
ast (2.4.2)
base64 (0.1.1)
coderay (1.1.3)
concurrent-ruby (1.2.2)
diff-lcs (1.5.0)
dry-core (1.0.0)
dry-core (1.0.1)
concurrent-ruby (~> 1.0)
zeitwerk (~> 2.6)
dry-inflector (1.0.0)
Expand All @@ -37,52 +38,64 @@ GEM
zeitwerk (~> 2.6)
ice_nine (0.11.2)
json (2.6.3)
language_server-protocol (3.17.0.3)
method_source (1.0.0)
parallel (1.22.1)
parser (3.2.1.1)
parallel (1.23.0)
parser (3.2.2.3)
ast (~> 2.4.1)
racc
pry (0.14.2)
coderay (~> 1.1)
method_source (~> 1.0)
racc (1.7.1)
rainbow (3.1.1)
rake (13.0.6)
regexp_parser (2.7.0)
rexml (3.2.5)
regexp_parser (2.8.1)
rexml (3.2.6)
rspec (3.12.0)
rspec-core (~> 3.12.0)
rspec-expectations (~> 3.12.0)
rspec-mocks (~> 3.12.0)
rspec-core (3.12.1)
rspec-core (3.12.2)
rspec-support (~> 3.12.0)
rspec-expectations (3.12.2)
rspec-expectations (3.12.3)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.12.0)
rspec-mocks (3.12.4)
rspec-mocks (3.12.6)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.12.0)
rspec-support (3.12.0)
rubocop (1.48.0)
rspec-support (3.12.1)
rubocop (1.56.3)
base64 (~> 0.1.1)
json (~> 2.3)
language_server-protocol (>= 3.17.0)
parallel (~> 1.10)
parser (>= 3.2.0.0)
parser (>= 3.2.2.3)
rainbow (>= 2.2.2, < 4.0)
regexp_parser (>= 1.8, < 3.0)
rexml (>= 3.2.5, < 4.0)
rubocop-ast (>= 1.26.0, < 2.0)
rubocop-ast (>= 1.28.1, < 2.0)
ruby-progressbar (~> 1.7)
unicode-display_width (>= 2.4.0, < 3.0)
rubocop-ast (1.27.0)
rubocop-ast (1.29.0)
parser (>= 3.2.1.0)
rubocop-performance (1.16.0)
rubocop-capybara (2.18.0)
rubocop (~> 1.41)
rubocop-factory_bot (2.24.0)
rubocop (~> 1.33)
rubocop-performance (1.19.1)
rubocop (>= 1.7.0, < 2.0)
rubocop-ast (>= 0.4.0)
rubocop-rspec (2.11.1)
rubocop (~> 1.19)
rubocop-rspec (2.24.0)
rubocop (~> 1.33)
rubocop-capybara (~> 2.17)
rubocop-factory_bot (~> 2.22)
ruby-progressbar (1.13.0)
unicode-display_width (2.4.2)
zeitwerk (2.6.7)
zeitwerk (2.6.11)

PLATFORMS
x86_64-darwin-20
x86_64-linux
x86_64-linux-musl

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.2
0.1.3
8 changes: 4 additions & 4 deletions hanikamu-base_service.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,19 @@ $LOAD_PATH.push File.expand_path("lib", __dir__)

Gem::Specification.new do |s|
s.name = "hanikamu-service"
s.version = "0.1.2"
s.version = "0.1.3"
s.authors = ["Nicolai Seerup", "Alejandro Jimenez"]
s.summary = "This is the base service for all pattern designs used in hanikamu design"
s.required_ruby_version = ">= 2.7"
s.required_ruby_version = ">= 3.1"

s.homepage = "https://github.com/Hanikamu/hanikamu-service"
s.license = "MIT"

s.files = Dir["{config,lib}/**/*", "Rakefile"]
s.require_paths = ["lib"]

s.add_dependency "dry-monads", "~> 1"
s.add_dependency "dry-struct", "~> 1"
s.add_dependency "dry-monads", "~> 1.6.0"
s.add_dependency "dry-struct", "~> 1.6.0"

s.metadata["rubygems_mfa_required"] = "true"
end
2 changes: 1 addition & 1 deletion spec/spec_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

SPEC_ROOT = Pathname(__FILE__).dirname

Dir[Pathname(__FILE__).dirname.join("support/**/*.rb").to_s].sort.each do |file|
Dir[Pathname(__FILE__).dirname.join("support/**/*.rb").to_s].each do |file|
require file
end

Expand Down

0 comments on commit 432d26f

Please sign in to comment.