lol
fork

Configure Feed

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

travis: add update instructions (#36855)

authored by

Jörg Thalheim and committed by zimbatm.tngl.sh bbf69b73 a9e1ae3d

+27 -3
+1 -1
pkgs/development/tools/misc/travis/Gemfile
··· 1 1 source "https://rubygems.org" 2 2 3 - gem "travis" 3 + gem "travis", "1.8.8"
+2 -2
pkgs/development/tools/misc/travis/Gemfile.lock
··· 45 45 ruby 46 46 47 47 DEPENDENCIES 48 - travis 48 + travis (= 1.8.8) 49 49 50 50 BUNDLED WITH 51 - 1.14.4 51 + 1.14.6
+5
pkgs/development/tools/misc/travis/default.nix
··· 1 1 { lib, bundlerEnv, ruby }: 2 2 3 + # Maintainer notes for updating 4 + # 1. increment version number in Gemfile 5 + # 2. run $ nix-shell --command "bundler install && bundix" 6 + # in the travis directory in nixpkgs 7 + 3 8 bundlerEnv { 4 9 inherit ruby; 5 10 pname = "travis";
+8
pkgs/development/tools/misc/travis/gemset.nix
··· 16 16 version = "3.6.8"; 17 17 }; 18 18 ethon = { 19 + dependencies = ["ffi"]; 19 20 source = { 20 21 remotes = ["https://rubygems.org"]; 21 22 sha256 = "1i873cvma4j52xmij7kasjylh66vf60cy5prkp4cz4hcn9jlkznl"; ··· 24 25 version = "0.10.1"; 25 26 }; 26 27 faraday = { 28 + dependencies = ["multipart-post"]; 27 29 source = { 28 30 remotes = ["https://rubygems.org"]; 29 31 sha256 = "18p1csdivgwmshfw3mb698a3bn0yrykg30khk5qxjf6n168g91jr"; ··· 32 34 version = "0.11.0"; 33 35 }; 34 36 faraday_middleware = { 37 + dependencies = ["faraday"]; 35 38 source = { 36 39 remotes = ["https://rubygems.org"]; 37 40 sha256 = "0bcarc90brm1y68bl957w483bddsy9idj2gghqnysk6bbxpsvm00"; ··· 48 51 version = "1.9.18"; 49 52 }; 50 53 gh = { 54 + dependencies = ["addressable" "backports" "faraday" "multi_json" "net-http-persistent" "net-http-pipeline"]; 51 55 source = { 52 56 remotes = ["https://rubygems.org"]; 53 57 sha256 = "0g4df0jsscq16g6f27flfmvk7p4sbq81d5mdylbz4ikqq60kywzg"; ··· 72 76 version = "2.0.3"; 73 77 }; 74 78 launchy = { 79 + dependencies = ["addressable"]; 75 80 source = { 76 81 remotes = ["https://rubygems.org"]; 77 82 sha256 = "190lfbiy1vwxhbgn4nl4dcbzxvm049jwc158r2x7kq3g5khjrxa2"; ··· 112 117 version = "1.0.1"; 113 118 }; 114 119 pusher-client = { 120 + dependencies = ["json" "websocket"]; 115 121 source = { 116 122 remotes = ["https://rubygems.org"]; 117 123 sha256 = "18ymxz34gmg7jff3h0nyzp5vdg5i06dbdxlrdl2nq4hf14qwj1f4"; ··· 120 126 version = "0.6.2"; 121 127 }; 122 128 travis = { 129 + dependencies = ["backports" "faraday" "faraday_middleware" "gh" "highline" "launchy" "pusher-client" "typhoeus"]; 123 130 source = { 124 131 remotes = ["https://rubygems.org"]; 125 132 sha256 = "02bjz73f6r9b7nskwzcvcbr4hlvgwrf9rnr6d218d2i1rk4ww936"; ··· 128 135 version = "1.8.8"; 129 136 }; 130 137 typhoeus = { 138 + dependencies = ["ethon"]; 131 139 source = { 132 140 remotes = ["https://rubygems.org"]; 133 141 sha256 = "03x3fxjsnhgayl4s96h0a9975awlvx2v9nmx2ba0cnliglyczdr8";
+11
pkgs/development/tools/misc/travis/shell.nix
··· 1 + # Env to update Gemfile.lock / gemset.nix 2 + 3 + with import <nixpkgs> {}; 4 + stdenv.mkDerivation { 5 + name = "env"; 6 + buildInputs = [ 7 + ruby.devEnv 8 + gnumake 9 + bundix 10 + ]; 11 + }