transaction 0.1.3 → 0.1.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6018838c1f87e33db7de20a8351033ccd198f1514f98c8311f0655540eb72ae4
4
- data.tar.gz: '0943937edf0341713288ae70a435a675201c737ac28e7f54626489a5451fb36f'
3
+ metadata.gz: b4675dda1fefb98498db0d38281ab7a1507266cb0143007152fe38c2855c7d5b
4
+ data.tar.gz: d92d587dfb5916d70a0f23d464201f1171dc70fb26bdc7abad3cf1fb9d6a6a53
5
5
  SHA512:
6
- metadata.gz: a091e13298ff3a7f100fabf0c3a280c37401b9ba4ff855c00ae7441acee4a5e2a1413261ed3f075f1a2a18852a52d7dc7be9dcb7a225bc7d7b1aeab79efdfae8
7
- data.tar.gz: 639e410693019ea6aacfb4329aa2f7933b42aee8916081be9f87738f4b3d95f326f121704a3d52c1ab1142e1ccd5d9532a3442b823bf47ab787ab2018a0cd7ac
6
+ metadata.gz: 33227c6f7ccc54c6e4fc83067246b3c73b66ecc8d339b1ab43325e1ed4e710136478a1d61dc0ebef0143c91bcfc4fe5172736153091246f2e366d855a0a96f0d
7
+ data.tar.gz: 445d685de0a0addbf28a2df35ef225ad8ed3b2c29d2296c37edee5ca3145417b9efb762a88b908c5cca8d215dfb83c60437e71001037d723527ba1a9b20290db
data/.rubocop_todo.yml CHANGED
@@ -25,6 +25,7 @@ Metrics/BlockLength:
25
25
  Max: 20
26
26
  Exclude:
27
27
  - 'spec/**/*'
28
+ - 'transaction.gemspec'
28
29
 
29
30
  # Offense count: 3
30
31
  Style/Documentation:
data/CHANGELOG.MD CHANGED
@@ -4,6 +4,15 @@ All notable changes to this project will be documented in this file.
4
4
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5
5
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
6
 
7
+ ## [0.1.4] - 2019-07-19
8
+
9
+ ### Added
10
+ - Support for ruby >= 2.4
11
+
12
+ ### Changed
13
+ - Rake to 12.3
14
+
15
+
7
16
  ## [0.1.3] - 2019-07-18
8
17
 
9
18
  ### Added
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- transaction (0.1.2)
4
+ transaction (0.1.4)
5
5
  redis (>= 4.0.2)
6
6
 
7
7
  GEM
@@ -10,7 +10,7 @@ GEM
10
10
  diff-lcs (1.3)
11
11
  docile (1.3.2)
12
12
  json (2.2.0)
13
- rake (10.5.0)
13
+ rake (12.3.2)
14
14
  redis (4.1.2)
15
15
  rspec (3.8.0)
16
16
  rspec-core (~> 3.8.0)
@@ -36,7 +36,7 @@ PLATFORMS
36
36
 
37
37
  DEPENDENCIES
38
38
  bundler (~> 2.0)
39
- rake (~> 10.0)
39
+ rake (~> 12.3)
40
40
  rspec (~> 3.0)
41
41
  simplecov
42
42
  transaction!
data/README.md CHANGED
@@ -1,5 +1,8 @@
1
1
  [![Gem Version](https://badge.fury.io/rb/transaction.svg)](https://badge.fury.io/rb/transaction)
2
2
  [![Build Status](https://travis-ci.com/t2013anurag/transaction.svg?branch=master)](https://travis-ci.com/t2013anurag/transaction)
3
+ [![Maintainability](https://api.codeclimate.com/v1/badges/50600537b315c364fc28/maintainability)](https://codeclimate.com/github/t2013anurag/transaction/maintainability)
4
+ [![Test Coverage](https://api.codeclimate.com/v1/badges/50600537b315c364fc28/test_coverage)](https://codeclimate.com/github/t2013anurag/transaction/test_coverage)
5
+ [![Depfu](https://badges.depfu.com/badges/bfb8415f8ae6c5c12f023ebc28d14c32/count.svg)](https://depfu.com/github/t2013anurag/transaction?project_id=8568)
3
6
 
4
7
 
5
8
  # Transaction
@@ -1,3 +1,3 @@
1
1
  module Transaction
2
- VERSION = '0.1.3'.freeze
2
+ VERSION = '0.1.4'.freeze
3
3
  end
data/transaction.gemspec CHANGED
@@ -24,11 +24,11 @@ Gem::Specification.new do |spec|
24
24
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
25
25
  spec.require_paths = ['lib']
26
26
 
27
- spec.required_ruby_version = '>= 2.5.0'
27
+ spec.required_ruby_version = '>= 2.4.0'
28
28
  spec.add_dependency 'redis', '>= 4.0.2'
29
29
 
30
30
  spec.add_development_dependency 'bundler', '~> 2.0'
31
- spec.add_development_dependency 'rake', '~> 10.0'
31
+ spec.add_development_dependency 'rake', '~> 12.3'
32
32
  spec.add_development_dependency 'rspec', '~> 3.0'
33
33
  spec.add_development_dependency 'simplecov'
34
34
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: transaction
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Anurag Tiwari
@@ -44,14 +44,14 @@ dependencies:
44
44
  requirements:
45
45
  - - "~>"
46
46
  - !ruby/object:Gem::Version
47
- version: '10.0'
47
+ version: '12.3'
48
48
  type: :development
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
- version: '10.0'
54
+ version: '12.3'
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: rspec
57
57
  requirement: !ruby/object:Gem::Requirement
@@ -117,7 +117,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
117
117
  requirements:
118
118
  - - ">="
119
119
  - !ruby/object:Gem::Version
120
- version: 2.5.0
120
+ version: 2.4.0
121
121
  required_rubygems_version: !ruby/object:Gem::Requirement
122
122
  requirements:
123
123
  - - ">="