file_compare 0.1.0 → 0.1.1

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
  SHA1:
3
- metadata.gz: 360075db0cc86a777971bb4b4489ecf09f8196a3
4
- data.tar.gz: 432bd77c1102989fb8e26fa38b9939033f929630
3
+ metadata.gz: e563c4989db664f2813b1eec1676701e7db7f696
4
+ data.tar.gz: 1f0282fdbf3b881509ffa8563d7105c366c7c53c
5
5
  SHA512:
6
- metadata.gz: 077d98eb6dd42f6bce0b3dc189f24b0bd51015db2761b44bfa76de561a803a802c6481867b47ebeee9c68181d9c7f8eb3f776fcc3d2303892a44f18372c75781
7
- data.tar.gz: f32d2d1e58e70a4996acbf54842688e1b0b5d46086cf5251793e5304169570e4d673e5fd0b7b5539051da949216574c48376047536765afeb7eacca7e40fc3c4
6
+ metadata.gz: 2b44142ff9928ba8db766928ed566967740f0cca02d3ec74f87fd1dcf55b560cc5dc1ec7c20bf323a4d39d3bce78abf93c3bea0f85357e5009d10d383c6b9fda
7
+ data.tar.gz: f73af56d1269a62c37cfbb95ac59787fbc99ec34f393916e7d67f3dca93fb9deb9945f2079033f3b26fbf23246e7f26b2df3ea0cd039d94f6da72a9d4484ddc3
data/Changelog.md ADDED
@@ -0,0 +1,8 @@
1
+ # 0.1.0
2
+
3
+ Initial Release
4
+
5
+ # 0.1.1
6
+
7
+ - Fix a typo in docs
8
+ - Added change log
data/README.md CHANGED
@@ -1,8 +1,8 @@
1
1
  # FileCompare
2
2
 
3
- A simple gem to SHA1 fingerprint and compare files
3
+ A simple gem to SHA256 fingerprint and compare files
4
4
 
5
- [![Build Status](https://travis-ci.org/jasonyost/file_compare.svg?branch=master)](https://travis-ci.org/jasonyost/file_compare)
5
+ [![Build Status](https://travis-ci.org/jasonyost/file_compare.svg?branch=master)](https://travis-ci.org/jasonyost/file_compare) [![Gem Version](https://img.shields.io/gem/v/file_compare.svg)](https://rubygems.org/gems/file_compare)
6
6
 
7
7
  ## Installation
8
8
 
data/file_compare.gemspec CHANGED
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
10
10
  spec.email = ["jyost@gocortexlabs.com"]
11
11
 
12
12
  spec.summary = %q{Gem to fingerprint and compare files.}
13
- spec.description = %q{A simple gem to SHA1 fingerprint and compare files.}
13
+ spec.description = %q{A simple gem to SHA256 fingerprint and compare files.}
14
14
  spec.homepage = "https://github.com/jasonyost/file_compare"
15
15
  spec.license = "MIT"
16
16
 
data/lib/file_compare.rb CHANGED
@@ -2,7 +2,7 @@ require 'file_compare/version'
2
2
  require 'digest/sha2'
3
3
 
4
4
  module FileCompare
5
- # Public: Returns SHA-1 finger print of provided file
5
+ # Public: Returns SHA256 finger print of provided file
6
6
  #
7
7
  # file_path - Path to the file
8
8
  #
@@ -1,3 +1,3 @@
1
1
  module FileCompare
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: file_compare
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jason Yost
@@ -164,7 +164,7 @@ dependencies:
164
164
  - - ">="
165
165
  - !ruby/object:Gem::Version
166
166
  version: '0'
167
- description: A simple gem to SHA1 fingerprint and compare files.
167
+ description: A simple gem to SHA256 fingerprint and compare files.
168
168
  email:
169
169
  - jyost@gocortexlabs.com
170
170
  executables:
@@ -177,6 +177,7 @@ files:
177
177
  - ".rspec"
178
178
  - ".travis.yml"
179
179
  - CODE_OF_CONDUCT.md
180
+ - Changelog.md
180
181
  - Gemfile
181
182
  - Guardfile
182
183
  - LICENSE.txt