gem_bench 1.0.4 → 2.0.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.
metadata.gz.sig ADDED
Binary file
data/.byebug_history DELETED
@@ -1,44 +0,0 @@
1
- exit
2
- instance.check_gemfile?
3
- instance.check_gemfile
4
- instance
5
- exit
6
- next
7
- gemfile_lines
8
- gemfile_trash
9
- next
10
- a =~ GemBench::TRASH_REGEX
11
- a = "gem \"bundler\" # For specs!\n"
12
- all_lines
13
- exit
14
- scout.gemfile_lines
15
- gemfile_lines
16
- scout
17
- next
18
- exit
19
- self.gemfile_lines
20
- scout
21
- gemfile_lines
22
- next
23
- exit
24
- self.scout.gemfile_lines
25
- self.gemfile_lines
26
- @scout.gemfile_lines
27
- @scout
28
- @gemfile_lines
29
- gemfile_lines
30
- Gem.loaded_specs.values
31
- next
32
- Gem.loaded_specs.values
33
- next
34
- exit
35
- next
36
- @loaded_gems
37
- loaded_gems
38
- next
39
- @gemfile_trash, @gemfile_lines = all_lines.partition {|x| x =~ GemBench::TRASH_REGEX}
40
- all_lines
41
- next
42
- file.readlines
43
- next
44
- gemfile_path
data/.gitignore DELETED
@@ -1,16 +0,0 @@
1
- /.bundle/
2
- /.yardoc
3
- /Gemfile.lock
4
- /_yardoc/
5
- /coverage/
6
- /doc/
7
- /pkg/
8
- /spec/reports/
9
- /tmp/
10
-
11
- # rspec failure tracking
12
- .rspec_status
13
-
14
- *.gem
15
- /.idea/
16
- .ruby-version
data/.rspec DELETED
@@ -1,2 +0,0 @@
1
- --format documentation
2
- --color
data/.travis.yml DELETED
@@ -1,9 +0,0 @@
1
- sudo: false
2
- language: ruby
3
- rvm:
4
- - 2.0
5
- - 2.1
6
- - 2.2
7
- - 2.3.3
8
- - 2.4.0
9
- before_install: gem install bundler -v 1.14.5
data/Gemfile DELETED
@@ -1,6 +0,0 @@
1
- source 'https://rubygems.org'
2
-
3
- gem "bundler" # For specs!
4
-
5
- # Specify your gem's dependencies in gem_bench.gemspec
6
- gemspec
data/Rakefile DELETED
@@ -1,6 +0,0 @@
1
- require "bundler/gem_tasks"
2
- require "rspec/core/rake_task"
3
-
4
- RSpec::Core::RakeTask.new(:spec)
5
-
6
- task :default => :spec
data/bin/console DELETED
@@ -1,14 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- require "bundler/setup"
4
- require "gem_bench"
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 DELETED
@@ -1,8 +0,0 @@
1
- #!/usr/bin/env bash
2
- set -euo pipefail
3
- IFS=$'\n\t'
4
- set -vx
5
-
6
- bundle install
7
-
8
- # Do any other automated setup that you need to do here
data/gem_bench.gemspec DELETED
@@ -1,37 +0,0 @@
1
- # coding: utf-8
2
- lib = File.expand_path('../lib', __FILE__)
3
- $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
- require 'gem_bench/version'
5
-
6
- Gem::Specification.new do |spec|
7
- spec.name = "gem_bench"
8
- spec.version = GemBench::VERSION
9
- spec.authors = ["Peter Boling"]
10
- spec.email = ["peter.boling@gmail.com"]
11
-
12
- spec.summary = %q{Static Gemfile and installed gem library source code analysis}
13
- spec.description = %q{Enforce Gemfile version constraints
14
- Regex search across all installed gem's source code to find issues quickly
15
- Trim down app load times by keeping your worst players on the bench (useful for beating Heroku slug load time cutoff)}
16
- spec.homepage = "http://github.com/acquaintable/gem_bench"
17
-
18
- spec.licenses = ['MIT']
19
- spec.platform = Gem::Platform::RUBY
20
- spec.required_ruby_version = ">= 2.0.0" # because has named parameters with default values
21
-
22
- spec.files = `git ls-files -z`.split("\x0").reject do |f|
23
- f.match(%r{^(test|spec|features)/})
24
- end
25
- spec.bindir = "exe"
26
- spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
27
- spec.require_paths = ["lib"]
28
- spec.test_files = Dir.glob("{test|spec|features}/**/*")
29
-
30
- # Yes, it *is* actually a run-time dependency. This gem is sort of a bundler add-on.
31
- spec.add_runtime_dependency "bundler", "~> 1.14"
32
- spec.add_development_dependency "rake", "~> 10.5"
33
- spec.add_development_dependency "rspec", "~> 3.5"
34
- spec.add_development_dependency "byebug", "~> 9.0"
35
- spec.add_development_dependency "gem-release", "~> 0.5"
36
- spec.add_development_dependency "awesome_print"
37
- end