bigfiles 0.0.1 → 0.0.2
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/bigfiles.gemspec +2 -2
- data/bin/bigfiles +5 -0
- data/lib/bigfiles/version.rb +1 -1
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3cd6c9d1d07da0ad571fe464f1092a645c36a28b
|
4
|
+
data.tar.gz: 577b578a937e1425c6b0b71c19b26849d78e0ff7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e6fb26bd54301c2b13255d0ef0079bc50ad55793f3f88cc7b6b02f040af6873c713748b325f16dba1dea4ec536df509dd516f1754fddf95a9bb791e3ee2b7920
|
7
|
+
data.tar.gz: a88c51610683c5412b2ee9b6c6ef79b9d70f52475e5c4b29a98590f7f3c6714e3123ceb1a05b59027d8c458260645c66c84d317b5aeda167b9d40097f7397df1
|
data/bigfiles.gemspec
CHANGED
@@ -11,12 +11,12 @@ Gem::Specification.new do |s|
|
|
11
11
|
s.description = 'bigfiles finds the largest source files in your project ' \
|
12
12
|
'and reports on them'
|
13
13
|
s.email = ['vince@broz.cc']
|
14
|
-
|
14
|
+
s.executables = ['bigfiles']
|
15
15
|
# s.extra_rdoc_files = ["CHANGELOG", "License.txt"]
|
16
16
|
s.license = 'MIT'
|
17
17
|
s.files = Dir['License.txt', 'README.md',
|
18
18
|
'Rakefile',
|
19
|
-
|
19
|
+
'bin/bigfiles',
|
20
20
|
'{lib}/**/*',
|
21
21
|
'bigfiles.gemspec'] & `git ls-files -z`.split("\0")
|
22
22
|
# s.rdoc_options = ["--main", "README.md"]
|
data/bin/bigfiles
ADDED
data/lib/bigfiles/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bigfiles
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Vince Broz
|
@@ -84,12 +84,14 @@ description: bigfiles finds the largest source files in your project and reports
|
|
84
84
|
them
|
85
85
|
email:
|
86
86
|
- vince@broz.cc
|
87
|
-
executables:
|
87
|
+
executables:
|
88
|
+
- bigfiles
|
88
89
|
extensions: []
|
89
90
|
extra_rdoc_files: []
|
90
91
|
files:
|
91
92
|
- Rakefile
|
92
93
|
- bigfiles.gemspec
|
94
|
+
- bin/bigfiles
|
93
95
|
- lib/bigfiles.rb
|
94
96
|
- lib/bigfiles/file_with_lines.rb
|
95
97
|
- lib/bigfiles/source_code_finder.rb
|