bundle_filter 0.1.0 → 0.2.0
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/.gitignore +13 -0
- data/.rspec +3 -0
- data/.travis.yml +6 -0
- data/Gemfile +9 -0
- data/Gemfile.lock +34 -0
- data/README.md +2 -1
- data/Rakefile +6 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/bundle_filter.gemspec +37 -0
- data/lib/bundle_filter/cli.rb +1 -0
- data/lib/bundle_filter/version.rb +1 -1
- data/plugins.rb +1 -0
- metadata +12 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 145866532b668c313c74b4d85b5069eca9e7e1e1412f4294f899f0de28671c97
|
4
|
+
data.tar.gz: 300cd4ff82ad9efb2c2d79d17064d4c98f12447fd4384f242b7d0dee1752d807
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8cb8e307398d394ec625873b4f603d4991a7d19f71af370530fa504ec057227a37c8c9ec531a8bea28d87f69c23de8e1dac579513ba7d47798a58ea6fc7afe62
|
7
|
+
data.tar.gz: e05e0d1576a11c460c5fa4cc290112f60b094fdf12a27ef220e79d2302ba4a18a8501e9b613c105356390ac39a1c57f1dfc9f3e04a83eeda6dd2f98e82dbf30f
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/.travis.yml
ADDED
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
@@ -0,0 +1,34 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
bundle_filter (0.1.0)
|
5
|
+
|
6
|
+
GEM
|
7
|
+
remote: https://rubygems.org/
|
8
|
+
specs:
|
9
|
+
diff-lcs (1.5.0)
|
10
|
+
rake (12.3.3)
|
11
|
+
rspec (3.12.0)
|
12
|
+
rspec-core (~> 3.12.0)
|
13
|
+
rspec-expectations (~> 3.12.0)
|
14
|
+
rspec-mocks (~> 3.12.0)
|
15
|
+
rspec-core (3.12.1)
|
16
|
+
rspec-support (~> 3.12.0)
|
17
|
+
rspec-expectations (3.12.2)
|
18
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
19
|
+
rspec-support (~> 3.12.0)
|
20
|
+
rspec-mocks (3.12.5)
|
21
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
22
|
+
rspec-support (~> 3.12.0)
|
23
|
+
rspec-support (3.12.0)
|
24
|
+
|
25
|
+
PLATFORMS
|
26
|
+
ruby
|
27
|
+
|
28
|
+
DEPENDENCIES
|
29
|
+
bundle_filter!
|
30
|
+
rake (~> 12.0)
|
31
|
+
rspec (~> 3.0)
|
32
|
+
|
33
|
+
BUNDLED WITH
|
34
|
+
2.1.4
|
data/README.md
CHANGED
@@ -20,9 +20,10 @@ this plugin will remove useless info from bundle install like unchanged gems "Us
|
|
20
20
|
|
21
21
|
## To-do
|
22
22
|
|
23
|
-
New features that can be interesting to add
|
23
|
+
New features that can be interesting to add if more users want too
|
24
24
|
- Set config file to give freedom to user select which show up
|
25
25
|
- Remove or simplify "Complete" final mensage
|
26
|
+
- Add progress-bar to bundle install gem?
|
26
27
|
|
27
28
|
## Contributing
|
28
29
|
|
data/Rakefile
ADDED
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "bundler/filter"
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
# require "pry"
|
11
|
+
# Pry.start
|
12
|
+
|
13
|
+
require "irb"
|
14
|
+
IRB.start(__FILE__)
|
data/bin/setup
ADDED
@@ -0,0 +1,37 @@
|
|
1
|
+
require_relative 'lib/bundle_filter/version'
|
2
|
+
|
3
|
+
Gem::Specification.new do |spec|
|
4
|
+
spec.name = "bundle_filter"
|
5
|
+
spec.version = BundleFilter::VERSION
|
6
|
+
spec.authors = ["Diogo Fernandes"]
|
7
|
+
spec.email = ["diogofernandesop@gmail.com"]
|
8
|
+
|
9
|
+
spec.summary = 'Filter bundle install output.'
|
10
|
+
spec.description = 'A filter for bundle that removes useless info when run bundle.'
|
11
|
+
spec.homepage = "https://github.com/dfop02/bundle_filter"
|
12
|
+
spec.license = "MIT"
|
13
|
+
|
14
|
+
spec.metadata = {
|
15
|
+
'allowed_push_host' => 'https://rubygems.org',
|
16
|
+
'bug_tracker_uri' => "#{spec.homepage}/issues",
|
17
|
+
'changelog_uri' => "#{spec.homepage}/blob/#{spec.version}/Changelog.md",
|
18
|
+
'homepage_uri' => spec.homepage,
|
19
|
+
'documentation_uri' => 'https://rspec.info/documentation/',
|
20
|
+
'source_code_uri' => spec.homepage
|
21
|
+
}
|
22
|
+
|
23
|
+
# Specify which files should be added to the gem when it is released.
|
24
|
+
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
25
|
+
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
|
26
|
+
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
27
|
+
end
|
28
|
+
spec.rdoc_options = ['--charset=UTF-8']
|
29
|
+
spec.extra_rdoc_files = Dir['README.md', 'CHANGELOG.md', 'LICENSE']
|
30
|
+
spec.require_path = 'lib'
|
31
|
+
spec.bindir = 'exe'
|
32
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
33
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
34
|
+
spec.require_paths = ['lib']
|
35
|
+
|
36
|
+
spec.required_ruby_version = Gem::Requirement.new('>= 2.3.0')
|
37
|
+
end
|
data/lib/bundle_filter/cli.rb
CHANGED
data/plugins.rb
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require 'bundle_filter'
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bundle_filter
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Diogo Fernandes
|
@@ -19,8 +19,17 @@ extra_rdoc_files:
|
|
19
19
|
- README.md
|
20
20
|
- LICENSE
|
21
21
|
files:
|
22
|
+
- ".gitignore"
|
23
|
+
- ".rspec"
|
24
|
+
- ".travis.yml"
|
25
|
+
- Gemfile
|
26
|
+
- Gemfile.lock
|
22
27
|
- LICENSE
|
23
28
|
- README.md
|
29
|
+
- Rakefile
|
30
|
+
- bin/console
|
31
|
+
- bin/setup
|
32
|
+
- bundle_filter.gemspec
|
24
33
|
- lib/bundle_filter.rb
|
25
34
|
- lib/bundle_filter/cli.rb
|
26
35
|
- lib/bundle_filter/configuration.rb
|
@@ -31,13 +40,14 @@ files:
|
|
31
40
|
- lib/bundle_filter/rubygems.rb
|
32
41
|
- lib/bundle_filter/source.rb
|
33
42
|
- lib/bundle_filter/version.rb
|
43
|
+
- plugins.rb
|
34
44
|
homepage: https://github.com/dfop02/bundle_filter
|
35
45
|
licenses:
|
36
46
|
- MIT
|
37
47
|
metadata:
|
38
48
|
allowed_push_host: https://rubygems.org
|
39
49
|
bug_tracker_uri: https://github.com/dfop02/bundle_filter/issues
|
40
|
-
changelog_uri: https://github.com/dfop02/bundle_filter/blob/0.
|
50
|
+
changelog_uri: https://github.com/dfop02/bundle_filter/blob/0.2.0/Changelog.md
|
41
51
|
homepage_uri: https://github.com/dfop02/bundle_filter
|
42
52
|
documentation_uri: https://rspec.info/documentation/
|
43
53
|
source_code_uri: https://github.com/dfop02/bundle_filter
|