bigfiles 0.1.2 → 0.1.3

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: cf4a5bbae72f722ccf428675d63e64ad4e229451
4
- data.tar.gz: 603bda6dfae33c48276eb7e4ec2e477c0ef57916
3
+ metadata.gz: 40abc4d318260355a33bfe37f192ed8b5463b0ae
4
+ data.tar.gz: 82e7a2cbd78368b63210e29f24f49b0fe09b8f2f
5
5
  SHA512:
6
- metadata.gz: bae26bd963ff8379f31639b2da418e4cab456183b293fecda34d393e58a4101f9b73e517de0dafa709889d0cafd3b67ab1861403f318cfb8530e394f98fb23ee
7
- data.tar.gz: 288c2b628c6ce4a78a3543103153dfdd0166ddf368041e20cd2ae55c8d0c1907f1ac78afd387bb9298f530920ab6c01b4a0bce30387c576714393950cc2b2601
6
+ metadata.gz: 5174d80ccd1b0658b8c0f30f7cee3bd6004dc213dd009f1c6a3c247d12803b92daffc7aa46b4c1c843033a7a0bc5eb4f79830508396af612a6a5c09f7cef453c
7
+ data.tar.gz: 99c57e01f56fe495c80c19a53db08d3e7eca5b7c188174169bc0f9394d57a230ac27ab50a61ee0da12c0bd8963cedfd6f18e568a2db0c55a9a349a0174288015
data/License.txt ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2013 Vincent Broz
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/bigfiles.gemspec CHANGED
@@ -14,11 +14,10 @@ Gem::Specification.new do |s|
14
14
  s.executables = ['bigfiles']
15
15
  # s.extra_rdoc_files = ["CHANGELOG", "License.txt"]
16
16
  s.license = 'MIT'
17
- s.files = Dir['License.txt', 'README.md',
18
- 'Rakefile',
19
- 'bin/bigfiles',
20
- '{lib}/**/*',
21
- 'bigfiles.gemspec'] & `git ls-files -z`.split("\0")
17
+ s.files = Dir['CODE_OF_CONDUCT.md', 'License.txt', 'README.md',
18
+ '{lib}/bigfiles.rb',
19
+ '{lib}/bigfiles/**/*.rb',
20
+ 'bigfiles.gemspec']
22
21
  # s.rdoc_options = ["--main", "README.md"]
23
22
  s.require_paths = ['lib']
24
23
  s.homepage = 'http://github.com/apiology/bigfiles'
@@ -1,4 +1,4 @@
1
1
  # Tool to find the largest source files in your project
2
2
  module BigFiles
3
- VERSION = '0.1.2'
3
+ VERSION = '0.1.3'
4
4
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bigfiles
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Vince Broz
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-09-13 00:00:00.000000000 Z
11
+ date: 2015-11-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: source_finder
@@ -103,7 +103,7 @@ executables:
103
103
  extensions: []
104
104
  extra_rdoc_files: []
105
105
  files:
106
- - Rakefile
106
+ - License.txt
107
107
  - bigfiles.gemspec
108
108
  - bin/bigfiles
109
109
  - lib/bigfiles.rb
data/Rakefile DELETED
@@ -1,30 +0,0 @@
1
- require 'rspec/core/rake_task'
2
- require 'quality/rake/task'
3
- require 'bundler/gem_tasks'
4
-
5
- Quality::Rake::Task.new do |task|
6
- task.skip_tools = ['reek']
7
- task.output_dir = 'metrics'
8
- end
9
-
10
- desc 'Run specs'
11
- RSpec::Core::RakeTask.new(:spec) do |task|
12
- task.pattern = 'spec/**/*_spec.rb'
13
- task.rspec_opts = '--format doc'
14
- end
15
-
16
- desc 'Run features'
17
- RSpec::Core::RakeTask.new(:feature) do |task|
18
- task.pattern = 'feature/**/*_spec.rb'
19
- task.rspec_opts = '--format doc'
20
- end
21
-
22
- task :clear_metrics do |_t|
23
- ret =
24
- system('git checkout coverage/.last_run.json metrics/*_high_water_mark')
25
- fail unless ret
26
- end
27
-
28
- desc 'Default: Run specs and check quality.'
29
- task localtest: [:clear_metrics, :spec, :feature, :quality]
30
- task default: [:localtest]