lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

git-fame: init at 2.5.2

authored by

Joe Hermaszewski and committed by
Jörg Thalheim
531a5b1a 3bda9217

+111
+2
pkgs/applications/version-management/git-and-tools/default.nix
··· 34 34 35 35 git = appendToName "minimal" gitBase; 36 36 37 + git-fame = callPackage ./git-fame {}; 38 + 37 39 # The full-featured Git. 38 40 gitFull = gitBase.override { 39 41 svnSupport = true;
+4
pkgs/applications/version-management/git-and-tools/git-fame/Gemfile
··· 1 + source 'https://rubygems.org' 2 + 3 + # Specify your gem's dependencies in git_fame.gemspec 4 + gem "git_fame"
+26
pkgs/applications/version-management/git-and-tools/git-fame/Gemfile.lock
··· 1 + GEM 2 + remote: https://rubygems.org/ 3 + specs: 4 + git_fame (2.5.2) 5 + hirb (~> 0.7.3) 6 + memoist (~> 0.14.0) 7 + method_profiler (~> 2.0.1) 8 + progressbar (~> 0.21.0) 9 + scrub_rb (~> 1.0.1) 10 + trollop (~> 2.1.2) 11 + hirb (0.7.3) 12 + memoist (0.14.0) 13 + method_profiler (2.0.1) 14 + hirb (>= 0.6.0) 15 + progressbar (0.21.0) 16 + scrub_rb (1.0.1) 17 + trollop (2.1.2) 18 + 19 + PLATFORMS 20 + ruby 21 + 22 + DEPENDENCIES 23 + git_fame 24 + 25 + BUNDLED WITH 26 + 1.14.6
+19
pkgs/applications/version-management/git-and-tools/git-fame/default.nix
··· 1 + { stdenv, bundlerEnv, ruby, fetchFromGitHub, makeWrapper, bundler }: 2 + 3 + bundlerEnv rec { 4 + inherit ruby; 5 + 6 + pname = "git_fame"; 7 + 8 + gemdir = ./.; 9 + 10 + meta = with stdenv.lib; { 11 + description = '' 12 + A command-line tool that helps you summarize and pretty-print collaborators based on contributions 13 + ''; 14 + homepage = http://oleander.io/git-fame-rb; 15 + license = licenses.mit; 16 + maintainers = with maintainers; [ expipiplus1 ]; 17 + platforms = platforms.unix; 18 + }; 19 + }
+60
pkgs/applications/version-management/git-and-tools/git-fame/gemset.nix
··· 1 + { 2 + git_fame = { 3 + dependencies = ["hirb" "memoist" "method_profiler" "progressbar" "scrub_rb" "trollop"]; 4 + source = { 5 + remotes = ["https://rubygems.org"]; 6 + sha256 = "02k5ls5zyif8skdbnym6zw9y76whlnksw2m94jsh2n1ygk98izdd"; 7 + type = "gem"; 8 + }; 9 + version = "2.5.2"; 10 + }; 11 + hirb = { 12 + source = { 13 + remotes = ["https://rubygems.org"]; 14 + sha256 = "0mzch3c2lvmf8gskgzlx6j53d10j42ir6ik2dkrl27sblhy76cji"; 15 + type = "gem"; 16 + }; 17 + version = "0.7.3"; 18 + }; 19 + memoist = { 20 + source = { 21 + remotes = ["https://rubygems.org"]; 22 + sha256 = "03d3h6kp16bf0crqg1cxdgp1d2iyzn53d3phbmjh4pjybqls0gcm"; 23 + type = "gem"; 24 + }; 25 + version = "0.14.0"; 26 + }; 27 + method_profiler = { 28 + dependencies = ["hirb"]; 29 + source = { 30 + remotes = ["https://rubygems.org"]; 31 + sha256 = "1ax04qrrv7fqp5ayxaxhn72660pybdkpkvmgiwbg7bs7x5ijjzd8"; 32 + type = "gem"; 33 + }; 34 + version = "2.0.1"; 35 + }; 36 + progressbar = { 37 + source = { 38 + remotes = ["https://rubygems.org"]; 39 + sha256 = "17haw9c6c9q6imsn83pii32jnihpg76jgd09x7y4hjqq45n3qcdh"; 40 + type = "gem"; 41 + }; 42 + version = "0.21.0"; 43 + }; 44 + scrub_rb = { 45 + source = { 46 + remotes = ["https://rubygems.org"]; 47 + sha256 = "0dwg33w83w17aiij9kcbi7irj7lh045nh9prjgkzjya3f1j60d3x"; 48 + type = "gem"; 49 + }; 50 + version = "1.0.1"; 51 + }; 52 + trollop = { 53 + source = { 54 + remotes = ["https://rubygems.org"]; 55 + sha256 = "0415y63df86sqj43c0l82and65ia5h64if7n0znkbrmi6y0jwhl8"; 56 + type = "gem"; 57 + }; 58 + version = "2.1.2"; 59 + }; 60 + }