We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This tools doesn't work in default installation (at least on Cygwin). It just produces #omitting #xxx that doesn't know its parents for every item.
#omitting #xxx that doesn't know its parents
The command gem install gitlab-grit solves this problem. It installs GitLab fork of Grit version 2.8.1 (for the moment).
gem install gitlab-grit
Whereas by default Grit 2.5.0 is installed. But it seems that this version is outdated now and Grit is no longer maintained.
In default installation, ref.parents throws NoMethodError on every item in filtering decorated list:
ref.parents
decorated
decorated.reject!{|ref| begin ref.parents false rescue NoMethodError puts "#omitting #{ref} that doesn't know its parents" true end}
Actually, repo.branches[0].commit.parents throws error:
repo.branches[0].commit.parents
NoMethodError: undefined method `>>' for "x":String
The text was updated successfully, but these errors were encountered:
Seems like a common theme -- see #7 and #8 as well. :)
Shall we just patch README to say to install https://github.com/gitlabhq/grit explicitly?
README
Sorry, something went wrong.
Yes, patching README is better than nothing ;)
But why don't just update Gemfile — can we put gem "gitlab-grit" in place of gem "grit"?
gem "gitlab-grit"
gem "grit"
Duh, yes -- sorry, I'm not doing much ruby these days. :) PR welcome, otherwise I'll try to get it done myself soon.
8b79a28
No branches or pull requests
This tools doesn't work in default installation (at least on Cygwin). It just produces
#omitting #xxx that doesn't know its parents
for every item.
The command
gem install gitlab-grit
solves this problem. It installs GitLab fork of Grit version 2.8.1 (for the moment).Whereas by default Grit 2.5.0 is installed. But it seems that this version is outdated now and Grit is no longer maintained.
In default installation,
ref.parents
throws NoMethodError on every item in filteringdecorated
list:Actually,
repo.branches[0].commit.parents
throws error:The text was updated successfully, but these errors were encountered: