Skip to content

Commit

Permalink
Technical/Update gemspecs (#41)
Browse files Browse the repository at this point in the history
* Updated gemspecs
* Updated circleci config
* Updated gem docs, version, changelog
  • Loading branch information
bestwebua authored Mar 2, 2022
1 parent 0677227 commit f6f57a7
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ jobs:
- checkout
- <<: *use_compatible_gemspec
- ruby/install-deps:
bundler-version: "2.3.7"
bundler-version: "2.3.8"
with-cache: false
path: './vendor/custom_bundle'
- run:
Expand Down
10 changes: 4 additions & 6 deletions .circleci/gemspec_compatible
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
# frozen_string_literal: true

lib = ::File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'truemail/rspec/version'
require_relative 'lib/truemail/rspec/version'

Gem::Specification.new do |spec|
spec.name = 'truemail-rspec'
Expand Down Expand Up @@ -32,11 +30,11 @@ Gem::Specification.new do |spec|
spec.require_paths = ['lib']

spec.add_runtime_dependency 'ffaker', '~> 2.20'
spec.add_runtime_dependency 'rspec', '~> 3.10'
spec.add_runtime_dependency 'truemail', '~> 2.6', '>= 2.6.2'
spec.add_runtime_dependency 'rspec', '~> 3.11'
spec.add_runtime_dependency 'truemail', '~> 2.7'

spec.add_development_dependency 'ffaker', '~> 2.20'
spec.add_development_dependency 'pry-byebug', '~> 3.9'
spec.add_development_dependency 'rake', '~> 13.0', '>= 13.0.6'
spec.add_development_dependency 'rspec', '~> 3.10'
spec.add_development_dependency 'rspec', '~> 3.11'
end
8 changes: 3 additions & 5 deletions .circleci/gemspec_latest
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
# frozen_string_literal: true

lib = ::File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'truemail/rspec/version'
require_relative 'lib/truemail/rspec/version'

Gem::Specification.new do |spec|
spec.name = 'truemail-rspec'
Expand Down Expand Up @@ -34,7 +32,7 @@ Gem::Specification.new do |spec|
spec.add_runtime_dependency 'ffaker', '~> 2.20'
spec.add_runtime_dependency 'net-smtp', '~> 0.3.1'
spec.add_runtime_dependency 'rspec', '~> 3.11'
spec.add_runtime_dependency 'truemail', '~> 2.6', '>= 2.6.2'
spec.add_runtime_dependency 'truemail', '~> 2.7'

spec.add_development_dependency 'bundler-audit', '~> 0.9.0.1'
spec.add_development_dependency 'fasterer', '~> 0.9.0'
Expand All @@ -46,6 +44,6 @@ Gem::Specification.new do |spec|
spec.add_development_dependency 'rspec', '~> 3.11'
spec.add_development_dependency 'rubocop', '~> 1.25', '>= 1.25.1'
spec.add_development_dependency 'rubocop-performance', '~> 1.13', '>= 1.13.2'
spec.add_development_dependency 'rubocop-rspec', '~> 2.8'
spec.add_development_dependency 'rubocop-rspec', '~> 2.9'
spec.add_development_dependency 'simplecov', '~> 0.21.2'
end
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.9.1] - 2022-03-02

### Updated

- Updated gem runtime dependencies
- Updated gem development dependencies
- Updated gem readme, gem version

## [0.9.0] - 2022-02-23

### Added
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,7 @@ All Truemail solutions: https://truemail-rb.org
| Name | Type | Description |
| --- | --- | --- |
| [truemail](https://github.com/truemail-rb/truemail) | ruby gem | Configurable framework agnostic plain Ruby email validator, main core |
| [truemail-go](https://github.com/truemail-rb/truemail-go) | go package | Configurable Golang email validator, main core |
| [truemail server](https://github.com/truemail-rb/truemail-rack) | ruby app | Lightweight rack based web API wrapper for Truemail gem |
| [truemail-rack-docker](https://github.com/truemail-rb/truemail-rack-docker-image) | docker image | Lightweight rack based web API [dockerized image](https://hub.docker.com/r/truemail/truemail-rack) :whale: of Truemail server |
| [truemail-ruby-client](https://github.com/truemail-rb/truemail-ruby-client) | ruby gem | Web API Ruby client for Truemail Server |
Expand Down
2 changes: 1 addition & 1 deletion lib/truemail/rspec/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

module Truemail
module RSpec
VERSION = '0.9.0'
VERSION = '0.9.1'
end
end
6 changes: 2 additions & 4 deletions truemail-rspec.gemspec
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
# frozen_string_literal: true

lib = ::File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'truemail/rspec/version'
require_relative 'lib/truemail/rspec/version'

Gem::Specification.new do |spec|
spec.name = 'truemail-rspec'
Expand Down Expand Up @@ -34,7 +32,7 @@ Gem::Specification.new do |spec|
spec.add_runtime_dependency 'ffaker', '~> 2.20'
spec.add_runtime_dependency 'net-smtp', '~> 0.3.1' if ::RUBY_VERSION >= '3.1.0'
spec.add_runtime_dependency 'rspec', '~> 3.11'
spec.add_runtime_dependency 'truemail', '~> 2.6', '>= 2.6.2'
spec.add_runtime_dependency 'truemail', '~> 2.7'

spec.add_development_dependency 'ffaker', '~> 2.20'
spec.add_development_dependency 'rake', '~> 13.0', '>= 13.0.6'
Expand Down

0 comments on commit f6f57a7

Please sign in to comment.