Conversation
| module RailsStats | ||
| class ConsoleFormatter < StatsFormatter | ||
| def to_s | ||
| Bundler::Stats::CLI.start |
There was a problem hiding this comment.
@etagwerker I saw that you added this in #21
It was causing me trouble because Bundler was trying to interpret the first command line argument as a Bundler command.
The gem reporting seems to still work without it, so perhaps it was only needed for an older version of Bundler?
There was a problem hiding this comment.
Actually, I think it's not correctly counting the gems, I'll need to dig into this a bit more.
There was a problem hiding this comment.
This issue is the same as reported in #30. I'm getting that too.
|
|
||
| spec.files = `git ls-files -z`.split("\x0") | ||
| spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } | ||
| spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } |
There was a problem hiding this comment.
Changed to match the newer Bundler convention.
9395229 to
2f55046
Compare
|
@andyw8 is fixed and running in the |
CHANGELOG.mdthat links to this PR under the "main (unreleased)" heading.This change allows
rails_statsto be run from anywhere, without needing aRakefile.