freespace 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/freespace.gemspec +2 -2
- data/lib/freespace/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1d0e0f1ed97b3fa5014065745ebac296088b927e
|
|
4
|
+
data.tar.gz: c8a66341109c39880bdd3b89ba2a7ddc947b24b9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f041341452ccc9736b3bad4129d7392da4a3b5600341c0e6e844c21fca88df287be14aa8469702d143d0732c41c6c2c34f6d45bd2c4d902a2151f8c7747727b6
|
|
7
|
+
data.tar.gz: 3f9f39c1f5e83b4877bda1250a0e97dabce6775df761a4824d6d658ba67852d00999839d0eadbd9afd58daf51dedf3c7562d27d59c19a65a4d8e49b6e56c3db2
|
data/freespace.gemspec
CHANGED
|
@@ -9,8 +9,8 @@ Gem::Specification.new do |spec|
|
|
|
9
9
|
spec.authors = ["Jamie Little"]
|
|
10
10
|
spec.email = ["jamielittle@outlook.com"]
|
|
11
11
|
|
|
12
|
-
spec.summary =
|
|
13
|
-
spec.description =
|
|
12
|
+
spec.summary = "Get the amount of free space at a filesystem path"
|
|
13
|
+
spec.description = "A simple module that uses data from sys-filesystem to get a human readable amount of free space on a path"
|
|
14
14
|
spec.homepage = "https://github.com/little9/freespace"
|
|
15
15
|
spec.license = "MIT"
|
|
16
16
|
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
data/lib/freespace/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: freespace
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jamie Little
|
|
@@ -66,8 +66,8 @@ dependencies:
|
|
|
66
66
|
- - ">="
|
|
67
67
|
- !ruby/object:Gem::Version
|
|
68
68
|
version: '0'
|
|
69
|
-
description:
|
|
70
|
-
|
|
69
|
+
description: A simple module that uses data from sys-filesystem to get a human readable
|
|
70
|
+
amount of free space on a path
|
|
71
71
|
email:
|
|
72
72
|
- jamielittle@outlook.com
|
|
73
73
|
executables: []
|
|
@@ -108,5 +108,5 @@ rubyforge_project:
|
|
|
108
108
|
rubygems_version: 2.4.5.1
|
|
109
109
|
signing_key:
|
|
110
110
|
specification_version: 4
|
|
111
|
-
summary:
|
|
111
|
+
summary: Get the amount of free space at a filesystem path
|
|
112
112
|
test_files: []
|