Skip to content

Instantly share code, notes, and snippets.

@plietar
Forked from lawrencejones/git-logging
Created May 10, 2016 13:42
Show Gist options
  • Save plietar/31f16f25b0778853fa056287d8fd1424 to your computer and use it in GitHub Desktop.
Save plietar/31f16f25b0778853fa056287d8fd1424 to your computer and use it in GitHub Desktop.
lawrencejones at MacBookPro in .../lawrencejones/Projects/rails on (master)
λ ~> time g log --oneline -- README.md
7bbc6d6 Fix links in README for code [ci skip]
051b00c Merge pull request #17264 from claudiob/add-activejob-to-readme
b0ecbc8 Link to ActiveModel’s README in "Welcome to Rails"
8d66866 Add ActiveJob to "Welcome to Rails" section
d9b1c9b Update README.md
57fe5fd [ci skip] update wiki link for MVC
752e7a1 Use SVG version of travis build status badge [skip ci]
4f5aff9 updated Travis build status image url
1df4dcf remove gemnasium batch from README. [ci skip]
ee4b5f1 highlight http://localhost:3000 in README.md. Closes #13643. [ci skip]
d963b48 Clarify that visiting http://localhost:3000 should be done in a browser.
182f1d1 Fix misspelling on README.md
853596c Updating README.md [ci skip]
18a70ff fix travis links in readme
c02675b fix README links in the main README.md
41a90dd editorial touch, remove these dots
dcf2aac converts the project README to Markdown
7bbc6d68 Fix links in README for code [ci skip]
051b00c2 Merge pull request #17264 from claudiob/add-activejob-to-rea
ff8f1555 Merge pull request #17265 from claudiob/add-link-to-active-m
b0ecbc8e Link to ActiveModel’s README in "Welcome to Rails"
8d668664 Add ActiveJob to "Welcome to Rails" section
a2400308 Merge branch 'master' into loofah
fb9d9da2 Merge pull request #16443 from duccioarmenise/patch-1
d9b1c9ba Update README.md
7a9493ff Update README.md
fd4bb5af Merge pull request #15735 from aditya-kapoor/update-wiki-md
57fe5fd9 [ci skip] update wiki link for MVC
62c5ea58 Merge pull request #86 from cristianbica/qu_adapter
b36d4da3 Implemented :qu adapter
895f06a2 Merge pull request #69 from seuros/patch-2
aa348150 Update README.md
d1ed2d06 Merge pull request #68 from seuros/patch-2
895f22a9 Update README.md
6eb163a7 Tagged logging
0312c1fa Merge pull request #67 from seuros/patch-1
bffd4628 Update README.md
67ac8b2a mergy
e26e1d5c Merge pull request #50 from seuros/readme
a76ec4ea Update Readme.md
b49d3f10 merge master
34f0e424 Update README with queue_as example and the desire for a Res
7a6aa477 Merge pull request #31 from seuros/master
6d009504 Add Que Adapter/Wrapper
f5c85dc0 Merge pull request #39 from larrylv/update-readme
6f059b0b Update README for currently supported adapters.
3a233d08 Merge pull request #37 from Aesthetikx/master
1b71fe59 Add Sneakers wrapper
c6925f52 Merge pull request #34 from cristianbica/queue_classic-adpat
5cad2c1b Implemented queue_classic adapter
ac930b80 Merge pull request #33 from mperham/patch-2
eebec88e Update README.md
7a2775b7 Merge pull request #28 from larrylv/patch-1
29c9dcc4 Add doc for setting the queue adapter.
3a932bf0 Merge pull request #21 from DouweM/patch-1
edc89268 Fix typos in readme.
c2cdb8be Merge branch 'master' of github.com:rails/activejob
c69dda49 Add justification
f85ad8bd Update README.md
c47d6b49 Update README.md
afb3d4f9 Move to instance method and document usage
079ff1f1 Merge branch 'master' of github.com:rails/activejob
c14cc48e Update README.md
f71147ec Use markdown instead of rdoc
085ce4f1 Merge branch 'master' into rm-uuid-fixtures
347d74a0 Merge branch 'master' into adequaterecord
baa9b9bf Merge pull request #14623 from t3chnoboy/master
752e7a11 Use SVG version of travis build status badge [skip ci]
fe42effb Merge branch 'master' into adequaterecord
bcaef36d Merge pull request #14058 from lantoli/master
4f5aff92 updated Travis build status image url
1df4dcf7 remove gemnasium batch from README. [ci skip]
bf48af53 Merge branch 'master' into set_binds
ee4b5f1b highlight http://localhost:3000 in README.md. Closes #13643.
11e8badb Merge branch 'master' into set_binds
0c553350 Merge branch 'master' of github.com:lifo/docrails
df2226ea Merge pull request #12690 from durrantm/minor_README_change
d963b488 Clarify that visiting http://localhost:3000 should be done i
6b9b0767 Merge branch 'master' of github.com:lifo/docrails
182f1d13 Fix misspelling on README.md
2230f247 Merge pull request #12028 from egilburg/patch-1
853596c9 Updating README.md [ci skip]
457c79cb Merge pull request #10361 from teeparham/patch-1
18a70fff fix travis links in readme
6b3979d9 Merge pull request #10289 from maratvmk/readme
c02675b6 fix README links in the main README.md
41a90dd4 editorial touch, remove these dots
dcf2aac1 converts the project README to Markdown
#!/bin/ruby
rails = Rugged::Repository.new('rails')
walker = Rugged::Walker.new(rails).tap do |walker|
walker.sorting(Rugged::SORT_DATE)
walker.push(rails.head.target)
end
log = walker.select { |c| c.diff(paths: ['README.md']).size > 0 }
log.size # 71
log_output = log.map { |c| "#{c.oid.first(8)} #{c.message.lines.first.first(60)}".chomp }.join("\n")
File.write('ruby-log', log_output)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment