commit stringlengths 40 40 | old_file stringlengths 4 264 | new_file stringlengths 4 264 | old_contents stringlengths 0 4.24k | new_contents stringlengths 1 5.44k | subject stringlengths 14 778 | message stringlengths 15 9.92k | lang stringclasses 277
values | license stringclasses 13
values | repos stringlengths 5 127k |
|---|---|---|---|---|---|---|---|---|---|
86799ac3a263c56ed473e193aa2ff2e15fec1537 | .travis.yml | .travis.yml | matrix:
include:
- os: osx
language: objective-c
osx_image: xcode10.2
env:
- DESTINATION="platform=iOS Simulator,name=iPhone X,OS=12.2"
script:
# Alternatively: set -o pipefail && xcodebuild ... | xcpretty
# The pipefail option sets the exit status to the last command with a non-zer... | matrix:
include:
- os: osx
language: objective-c
osx_image: xcode11.1
script:
- swift test
| Update Travis CI config to use SwiftPM | Update Travis CI config to use SwiftPM
| YAML | mit | ole/Ampere |
b66eefee3581493c7ce58c84d38dec999ab6093f | .travis.yml | .travis.yml | sudo: false
language: erlang
otp_release: 18.0
branches:
only:
- master
addons:
apt:
packages:
- libexpat1-dev
install: make compile
script: make test
cache:
directories:
- dialyzer
| sudo: false
language: erlang
otp_release: 18.3
branches:
only:
- master
addons:
apt:
packages:
- libexpat1-dev
install: make compile
script: make test
cache:
directories:
- dialyzer
| Change minimm OTP release to 18.3 (aligned with MIM) | Change minimm OTP release to 18.3 (aligned with MIM)
| YAML | apache-2.0 | esl/amoc |
d1dd440f4dabaa1fce0469fd07e6a312336f8b8f | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.2.6
- 2.3.3
- 2.4.0
- ruby-head
matrix:
allow_failures:
- rvm: ruby-head
| language: ruby
rvm:
- 2.2.6
- 2.3.3
- 2.4.0
- ruby-head
matrix:
allow_failures:
- rvm: ruby-head
before_install:
- gem update --remote bundler
- gem update --system
| Upgrade RubyGems and Bundler (fixes "frozen string" error) | Upgrade RubyGems and Bundler (fixes "frozen string" error)
| YAML | mit | ddfreyne/cri |
c03c342f532585eb97fb9293fdbc662433e1eb77 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '4'
- '6'
- '7'
| sudo: false
language: node_js
node_js:
- '9'
- '8'
- '6'
| Update Travis CI node versions | Test(config): Update Travis CI node versions | YAML | unlicense | fvdm/nodejs-toonapi |
c2dd467236a2f698970ebcc3982058952dcceb38 | .travis.yml | .travis.yml | language: node_js
node_js:
- '12'
- '14'
- '15'
branches:
only:
- master
- travis-ci
install:
- npm install --no-package-lock --no-save
- npm install -g nyc prove
script:
- nyc npm test
| language: node_js
node_js:
- '12'
- '14'
- '16'
branches:
only:
- master
- travis-ci
install:
- npm install --no-package-lock --no-save
- npm install -g nyc prove
script:
- nyc npm test
| Build with Node.js 16 on Travis CI. | Build with Node.js 16 on Travis CI.
| YAML | mit | bigeasy/isochronous |
00336ca07c3a768306b7d15cd5e1381b17f7f943 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.0.0
- 2.1.8
- 2.2.4
- 2.3.0
- ruby-head
before_install: gem install bundler -v 1.11.2
| language: ruby
rvm:
- 2.0.0
- 2.1.10
- 2.2.5
- 2.3.1
- ruby-head
before_install: gem install bundler -v 1.11.2
| Update Ruby version on Travis CI | Update Ruby version on Travis CI
| YAML | mit | emsk/romajic,emsk/romajic,emsk/romaji_cop,emsk/romajic,emsk/romaji_cop,emsk/romaji_cop |
25a7483850039c6be8864f3297b808b04e2bf4a9 | packages/hs/hsinspect.yaml | packages/hs/hsinspect.yaml | homepage: ''
changelog-type: ''
hash: 84040e75f75744e9040081cb534fdf178cc4c0e299e0f40193761411ffb79b99
test-bench-deps: {}
maintainer: Tseen She
synopsis: Inspect Haskell source files.
changelog: ''
basic-deps:
ghc: -any
base: ! '>=4.11 && <5'
time: -any
hsinspect: -any
ghc-paths: -any
ghc-boot: -any
dire... | homepage: ''
changelog-type: ''
hash: f456e0adbef92e54adceaa600c8549199e28191412c787d9734de810c914c4b0
test-bench-deps: {}
maintainer: Tseen She
synopsis: Inspect Haskell source files.
changelog: ''
basic-deps:
ghc: -any
base: ! '>=4.11 && <5'
time: -any
hsinspect: -any
ghc-paths: -any
ghc-boot: -any
dire... | Update from Hackage at 2019-08-27T19:06:38Z | Update from Hackage at 2019-08-27T19:06:38Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
de3d870b1d3233aee846e30ae18252f292fcfaff | .travis.yml | .travis.yml | language: go
go:
- 1.4
- 1.4.1
- 1.4.2
- 1.4.3
- 1.5
- 1.6
- 1.7
- 1.8
# doing 'tip' is not a great idea; it has previously caused things to suddenly become "broken" based on calendar date, and i don't appreciate it.
install: true # don't `go get`, please.
script:
- time ./goad init
- time ./go... | language: go
go:
- 1.4
- 1.5
- 1.6
- 1.7
- 1.8
# doing 'tip' is not a great idea; it has previously caused things to suddenly become "broken" based on calendar date, and i don't appreciate it.
install: true # don't `go get`, please.
script:
- time ./goad init
- time ./goad test
- time ./goad test .... | Reduce the range of 1.4.x tests again. | Reduce the range of 1.4.x tests again.
Apparently all do indeed exhibit the exact same behavior, so the additional cpumelt seems unjustifiable.
Signed-off-by: Eric Myhre <2346ad27d7568ba9896f1b7da6b5991251debdf2@exultant.us>
| YAML | apache-2.0 | polydawn/meep,polydawn/meep |
a04e0e2f7c9272a8cf30b3adf51ac9537175964d | .travis.yml | .travis.yml | ---
language: d
install:
- bin/fetch-configlet
script:
- bin/configlet .
- bin/test-all-exercises
sudo: false
| ---
language: d
install:
- bin/fetch-configlet
script:
- bin/configlet lint .
- bin/test-all-exercises
sudo: false
| Call configlet subcommand on CI | Call configlet subcommand on CI
This changes configlet to pass a subcommand.
For now, we've released a version of configlet which handles both the old command:
configlet path/to/track
as well as the new command:
configlet lint path/to/track
This will let us update all the travis files to include the subco... | YAML | mit | exercism/xdlang |
6754c1e933f7129534d2911c9c0b388667d3b13b | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.11"
- "0.10"
- "0.8"
matrix:
allow_failures:
- node_js: "0.11"
# setup links to submodules
before_install:
- npm update -g npm
- npm run-script setup
- npm install
- cd ..
- git clone https://github.com/azure/azure-sdk-tools-xplat.git
- cd azure-sdk-tools-xplat... | language: node_js
node_js:
- "0.11"
- "0.10"
- "0.8"
matrix:
allow_failures:
- node_js: "0.11"
# setup links to submodules
before_install:
- npm install -g npm@1.4.23
- npm run-script setup
- npm install
- cd ..
- git clone https://github.com/azure/azure-sdk-tools-xplat.git
- cd azure-sdk-tool... | Update npm to a valid version | Update npm to a valid version
| YAML | mit | Azure/azure-sdk-for-node,devigned/azure-sdk-for-node,harshiam-hdinsight/azure-sdk-for-node,namratab/azure-sdk-for-node,devigned/azure-sdk-for-node,oaastest/azure-sdk-for-node,iwate/azure-sdk-for-node,shrishrirang/azure-sdk-for-node,huangpf/azure-sdk-for-node,xingwu1/azure-sdk-for-node,lmazuel/azure-sdk-for-node,begolds... |
f1c7b8effb7f805c032515657fe5426654930ac4 | .travis.yml | .travis.yml | language: python
matrix:
include:
- name: "generic tests"
python: 2.7
- name: "flake8 lint on Python 2.7"
python: 2.7
install: pip install flake8
script: flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
- name: "flake8 lint on Python 3.7"
dist: xenial ... | language: python
matrix:
include:
- name: "generic tests"
python: 2.7
- name: "flake8 lint on Python 2.7"
python: 2.7
install: pip install flake8
script: flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
- name: "flake8 lint on Python 3.7"
dist: xenial ... | Comment out the set -euo pipefail | Comment out the set -euo pipefail | YAML | apache-2.0 | iovisor/bcc,brendangregg/bcc,brendangregg/bcc,tuxology/bcc,brendangregg/bcc,brendangregg/bcc,tuxology/bcc,iovisor/bcc,iovisor/bcc,tuxology/bcc,brendangregg/bcc,iovisor/bcc,iovisor/bcc,tuxology/bcc,tuxology/bcc |
b92610d43a301bed10f3d467edef050f2f511083 | packages/st/stm-actor.yaml | packages/st/stm-actor.yaml | homepage: ''
changelog-type: markdown
hash: 912df59ab6e6bc876ae675d1daea84355e50e5d078e645080b0e2f0c15d03785
test-bench-deps:
stm: '>=2.1'
base: '>=4.12 && <4.15'
hspec: '>=2.7.4'
stm-queue: '>=0.1'
stm-actor: -any
mtl: '>=1.0'
maintainer: samuel@simspace.com
synopsis: A simplistic actor model based on STM
... | homepage: ''
changelog-type: markdown
hash: 4618e71571848531b814c02a9daaa5b2cf4d60d7b3243ce86ed0cb435d766a6c
test-bench-deps:
stm: '>=2.1'
base: '>=4.12 && <4.15'
hspec: '>=2.7.4'
stm-queue: '>=0.1'
stm-actor: -any
mtl: '>=1.0'
maintainer: samuel@simspace.com
synopsis: A simplistic actor model based on STM
... | Update from Hackage at 2020-09-22T18:33:16Z | Update from Hackage at 2020-09-22T18:33:16Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
88167d2df307a2aa38a507755720b8ef91ec91dd | .travis.yml | .travis.yml | language: node_js
node_js:
- "node"
- "iojs"
script:
- npm test
- npm run lint
- npm run style
| language: node_js
node_js:
- "node"
script:
- npm test
- npm run lint
- npm run style
| Remove io.js from Travis CI | Remove io.js from Travis CI
| YAML | mit | brettmclean/number-converter,brettmclean/number-converter |
ae6e40499b7749402c878d3daee9c54f4e972c55 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
before_install:
- sudo apt-get install gfortran
install:
- cat etc/requirements_dev.txt | grep -v "^#" | grep -v "^$" | grep -v ipython | grep -v nose== | xargs pip install --use-mirrors
- etc/ordered_pip.sh etc/requirements.txt
before_script:
- "flake8 zipline tests"
script:... | language: python
python:
- "2.7"
before_install:
- wget -O ta-lib-0.4.0-src.tar.gz http://sourceforge.net/projects/ta-lib/files/ta-lib/0.4.0/ta-lib-0.4.0-src.tar.gz/download
- tar xvzf ta-lib-0.4.0-src.tar.gz
- pushd ta-lib; ./configure; make; sudo make install; popd
- sudo apt-get install gfortran
install:
... | Add build ta-lib to Travis config. | BLD: Add build ta-lib to Travis config.
So that TALibTransforms tested on Travis.
| YAML | apache-2.0 | otmaneJai/Zipline,dhruvparamhans/zipline,zhoulingjun/zipline,davidastephens/zipline,gwulfs/zipline,dmitriz/zipline,michaeljohnbennett/zipline,ChinaQuants/zipline,stkubr/zipline,CarterBain/AlephNull,ronalcc/zipline,kmather73/zipline,dkushner/zipline,wubr2000/zipline,wubr2000/zipline,euri10/zipline,StratsOn/zipline,dmitr... |
cf2414edcae8653bc3d8f63cc6828fc726840893 | example/thanos/thanos-ruler-service.yaml | example/thanos/thanos-ruler-service.yaml | apiVersion: v1
kind: Service
metadata:
name: thanos-ruler
namespace: default
labels:
app: thanos-ruler
spec:
selector:
app: thanos-ruler
ports:
- name: grpc
port: 10901
targetPort: grpc
- name: http
port: 10902
targetPort: http
| apiVersion: v1
kind: Service
metadata:
name: thanos-ruler
namespace: default
labels:
app: thanos-ruler
spec:
selector:
app: thanos-ruler
ports:
- name: grpc
port: 10901
targetPort: grpc
- name: http
port: 10902
targetPort: web
| Change thanos ruler's http port to the default web | Change thanos ruler's http port to the default web
Signed-off-by: Benjamin <fe09bc2ef2737a3258f978e26226dcbac1b3f948@yunify.com>
| YAML | apache-2.0 | coreos/prometheus-operator,coreos/prometheus-operator |
211b60ed61387f14e59e8ea0c43f02fe65e7c88a | .travis.yml | .travis.yml | # Configuration options are documented at:
# http://docs.travis-ci.com/user/languages/javascript-with-nodejs/
sudo: false
language: node_js
node_js:
- '4'
- '5'
script: npm test && (npm run report-coverage || test 1)
| # Configuration options are documented at:
# http://docs.travis-ci.com/user/languages/javascript-with-nodejs/
sudo: false
language: node_js
node_js:
- '4'
- '5'
- '6'
script: npm test && (npm run report-coverage || test 1)
| Add node.js 6 to Travis testing. | Add node.js 6 to Travis testing.
| YAML | mit | RobLoach/kss-node,RobLoach/kss-node,RobLoach/kss-node |
296fcf4f33df02418f07d9380dce2bcb196f0958 | .travis.yml | .travis.yml | language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- hhvm
matrix:
exclude:
- php: 5.4
env: SYMFONY_VERSION=3.3.*
env:
- SYMFONY_VERSION=2.3.*
- SYMFONY_VERSION=2.8.*
- SYMFONY_VERSION=3.3.*
before_script:
- if [[ $TRAVIS_PHP_VERSION != hhvm ]]; then INI_FILE=~/.phpenv/versions/$(phpenv... | language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- hhvm
matrix:
exclude:
- php: 5.4
env: SYMFONY_VERSION=3.3.*
- php: 7.0
env: SYMFONY_VERSION=2.3.*
- php: 7.1
env: SYMFONY_VERSION=2.3.*
env:
- SYMFONY_VERSION=2.3.*
- SYMFONY_VERSION=2.8.*
- SYMFONY_VERSION=3.3.*
be... | Exclude Symfony 2.3 with PHP 7+ from test matrix | Exclude Symfony 2.3 with PHP 7+ from test matrix
| YAML | mit | argentumua/ArgentumTranslationBundle,argentumua/ArgentumTranslationBundle |
dc8a9babd8f5aebf645dde3223fcc0d6ad793360 | .travis.yml | .travis.yml | language: python
python:
- 2.6
- 2.7
before_install:
- sudo apt-get remove chromium firefox mongodb-10gen
- sudo apt-get install texlive-latex-base
install:
- "pip install -r requirements.txt --use-mirrors"
script:
- make html && make html
- make singlehtml && make singlehtml
- make text
- make sing... | language: python
python:
- 2.6
- 2.7
before_install:
- sudo apt-get remove chromium firefox mongodb-10gen
- sudo apt-get install texlive-latex-base texlive-latex-recommended
install:
- "pip install -r requirements.txt --use-mirrors"
script:
- make html && make html
- make singlehtml && make singlehtml
... | Add additional package to texlive reqs | Add additional package to texlive reqs
| YAML | bsd-2-clause | jterrace/sphinxtr,jterrace/sphinxtr |
bb0292148691dee59059b774721b4f3a53818b9c | .travis.yml | .travis.yml | language: c
compiler:
- gcc
- clang
notifications:
recipients:
- kenhys@gmail.com
branches:
only:
- master
- develop
env:
- USE_WEBKITGTK=yes
- USE_GTKHTML=yes
- USE_WEBKITGTK=yes USE_DEBUG=yes
- USE_GTKHTML=yes USE_DEBUG=yes
before_script:
- curl --location https://raw.github.com/kenhys/s... | language: c
compiler:
- gcc
- clang
notifications:
recipients:
- kenhys@gmail.com
branches:
only:
- master
- develop
env:
- USE_WEBKITGTK=yes SYLPHEED_STAGE=master
- USE_GTKHTML=yes SYLPHEED_STAGE=master
- USE_WEBKITGTK=yes SYLPHEED_STAGE=3.5
- USE_GTKHTML=yes SYLPHEED_STAGE=3.5
- USE_WEBK... | Add supported version of Sylpheed | Add supported version of Sylpheed
| YAML | bsd-2-clause | kenhys/sylpheed-htmlview,kenhys/sylpheed-htmlview |
7e56057bc7d1feef086a010a0d664b58bb5f8840 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.4"
- "3.5"
# setup test environment
before_install:
- if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then
wget http://repo.continuum.io/miniconda/Miniconda-3.8.3-Linux-x86_64.sh -O miniconda.sh;
else
wget http://repo.continuum.io/miniconda/Minicond... | language: python
notifications:
email: false
python:
- "2.7"
- "3.4"
- "3.5"
# setup test environment
before_install:
- if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then
wget http://repo.continuum.io/miniconda/Miniconda-3.8.3-Linux-x86_64.sh -O miniconda.sh;
else
wget http://re... | Set emails to false, remove matplotlib and decorator from before_install | Set emails to false, remove matplotlib and decorator from before_install
| YAML | bsd-3-clause | justinsalamon/scaper |
a9fe3bffeb090f72aceab92704b6e53b0463e79f | .travis.yml | .travis.yml | language: node_js
node_js:
- 0.12
- 4
- stable
| language: node_js
node_js:
- '5'
- '4'
- '0.12'
| Test on Node.js v0.12.x, v4.x, and v5.x | Test on Node.js v0.12.x, v4.x, and v5.x | YAML | mit | stylelint/stylelint-checkstyle-formatter,eddies/stylelint-junit-formatter,davidtheclark/stylelint-checkstyle-formatter |
57b3d63c41c18f83158f791aa3a0845dc3c07637 | .travis.yml | .travis.yml | language: python
python:
- "pypy"
# pypy3 is broken until https://github.com/pallets/flask/pull/1841
# is released, which should happen in flask version 0.11.2.
# - "pypy3"
- "2.6"
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
install:
- pip install pybuilder
- pip install coveralls
- pyb install_depend... | language: python
python:
- "pypy"
# pypy3 is broken until https://github.com/pallets/flask/pull/1841
# is released, which should happen in flask version 0.11.2.
# - "pypy3"
- "2.6"
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
install:
- pip install -U pip setuptools
- pip install pybuilder
- pip instal... | Fix error with pybuilder + Travis CI + Python 3.6 | Fix error with pybuilder + Travis CI + Python 3.6
See https://github.com/pybuilder/pybuilder/issues/493 for details.
| YAML | apache-2.0 | ImmobilienScout24/afp-core,ImmobilienScout24/afp-core |
0082e326b1e5e980d36606497aa3b7409657fb48 | .travis.yml | .travis.yml | language: python
sudo: false
python:
- "3.6"
- "3.5"
- "3.4"
- "3.3"
- "2.7"
install: pip install tox-travis
script: tox
| language: python
sudo: false
python: 3.6
env:
- TOXENV=py27
- TOXENV=py33
- TOXENV=py34
- TOXENV=py35
- TOXENV=py36
- TOXENV=docs
install: pip install -U tox
script: tox
| Make it build the docs too. | Make it build the docs too.
| YAML | bsd-3-clause | ubernostrum/akismet |
9b78be5ba5d8a53a4d91ad37f9983ed545ec148c | examples/xonotic/gameserver.yaml | examples/xonotic/gameserver.yaml | # Copyright 2017 Google Inc. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or a... | # Copyright 2017 Google Inc. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or a... | Update Xonotic demo to use dynamic ports | Update Xonotic demo to use dynamic ports
| YAML | apache-2.0 | nicedone/agones,nicedone/agones,googleforgames/agones,googleforgames/agones,googleforgames/agones,nicedone/agones,nicedone/agones,googleforgames/agones,googleforgames/agones,googleforgames/agones,googleforgames/agones,googleforgames/agones |
82d511ae8429210a6b8f8bb963f0ef050b8a43f4 | recipes/prettier/meta.yaml | recipes/prettier/meta.yaml | {% set name = "prettier" %}
{% set version = "2.2.1" %}
package:
name: {{ name|lower }}
version: {{ version|replace("-", "_") }}
source:
url: https://github.com/prettier/prettier/archive/refs/tags/{{ version }}.tar.gz
sha256: 31c22f314066d3997aeafb345ebc1143179500d62f2334efc965ccdc2b4ffcf7
build:
number: 0... | {% set name = "prettier" %}
{% set version = "2.2.1" %}
package:
name: {{ name|lower }}
version: {{ version|replace("-", "_") }}
source:
url: https://github.com/prettier/prettier/archive/refs/tags/{{ version }}.tar.gz
sha256: 31c22f314066d3997aeafb345ebc1143179500d62f2334efc965ccdc2b4ffcf7
build:
number: 0... | Revert "try to fix failing linux64 build by adding c compiler to build dependencies" | Revert "try to fix failing linux64 build by adding c compiler to build dependencies"
This reverts commit 88cdff0ed7f111af600633b1f13fe71120d37695.
| YAML | bsd-3-clause | igortg/staged-recipes,mariusvniekerk/staged-recipes,jochym/staged-recipes,ocefpaf/staged-recipes,ReimarBauer/staged-recipes,conda-forge/staged-recipes,jakirkham/staged-recipes,mariusvniekerk/staged-recipes,goanpeca/staged-recipes,jochym/staged-recipes,igortg/staged-recipes,johanneskoester/staged-recipes,johanneskoester... |
f0cc4837c8cdef84f68056d8694c216ab131a090 | _config.yml | _config.yml | name: Tom Wire's Blog
description: Blogging about stuffs
meta_description: "Tom Wire Blog. Blogging about ASP.NET, Ruby on Rails and anything in between"
markdown: redcarpet
pygments: true
logo: false
paginate: 15
# Details for the RSS feed generator
url: 'http://thesilverbadger.co.uk'
author: 'Tom... | name: Tom Wire's Blog
description: Blogging about stuffs
meta_description: "Tom Wire Blog. Blogging about ASP.NET, Ruby on Rails and anything in between"
# markdown: redcarpet
pygments: true
logo: false
paginate: 15
# Details for the RSS feed generator
url: 'http://thesilverbadger.co.uk'
author: 'T... | Remove redcarpet as the markdown engine | Remove redcarpet as the markdown engine | YAML | mit | thesilverbadger/thesilverbadger.github.io,thesilverbadger/thesilverbadger.github.io,thesilverbadger/thesilverbadger.github.io |
3a8b236ec219b85665d33ef074904e86f235e4b5 | .bmi/frost_number_Geo/info.yaml | .bmi/frost_number_Geo/info.yaml | author: J. Scott Stewart
doi:
email: james.stewart@colorado.edu
license: GPL
url:
version: 0.0.1
summary: "From Nelson and Outcalt (1987), the 'frost number', a
dimensionless ratio defined by manipulation of either freezing and
thawing degree-day sums or frost and thaw penetration depths, can be
used to define an... | author: J. Scott Stewart
doi:
email: james.stewart@colorado.edu
license: MIT
url: http://csdms.colorado.edu/wiki/Model:Frost_Model
version: 0.1
summary: "From Nelson and Outcalt (1987), the 'frost number', a
dimensionless ratio defined by manipulation of either freezing and
thawing degree-day sums or frost and thaw... | Update license, version, and model repo URL | Update license, version, and model repo URL
| YAML | mit | permamodel/permamodel,permamodel/permamodel |
c1a97dad459a2e349cbe0685c484c32ed2273c22 | docs/_config.yml | docs/_config.yml | title: Sinon.JS
description: >-
Standalone test spies, stubs and mocks for JavaScript. Works with any unit
testing framework.
url: 'http://sinonjs.org'
github_username: sinonjs
sinon:
current_release: v6.2.0
markdown: kramdown
kramdown:
input: GFM
syntax_highlighter: none
syntax_highlighter_opts:
disabl... | title: Sinon.JS
description: >-
Standalone test spies, stubs and mocks for JavaScript. Works with any unit
testing framework.
url: 'http://sinonjs.org'
github_username: sinonjs
sinon:
current_release: v6.2.0
markdown: kramdown
kramdown:
input: GFM
syntax_highlighter: none
syntax_highlighter_opts:
disabl... | Speed up builds by copying files as-is | Speed up builds by copying files as-is
| YAML | bsd-3-clause | fatso83/Sinon.JS,cjohansen/Sinon.JS,mroderick/Sinon.JS,cjohansen/Sinon.JS,mroderick/Sinon.JS,fatso83/Sinon.JS,cjohansen/Sinon.JS,mroderick/Sinon.JS,fatso83/Sinon.JS |
4fd0cfc78c60868ec5beef37d4940758e6a22b59 | go.yaml | go.yaml | ---
- name: Install Python
hosts: pfsense
gather_facts: no
tasks:
- name: bootstrap pkg
raw: env ASSUME_ALWAYS_YES=YES pkg bootstrap -f
- name: bootstrap python
raw: env ASSUME_ALWAYS_YES=YES pkg install python
- name: Install Packages
hosts: pfsense
gather_facts: yes
tasks:
- name:... | ---
- name: Install Python
hosts: pfsense
gather_facts: no
tasks:
- name: bootstrap pkg
raw: env ASSUME_ALWAYS_YES=YES pkg bootstrap -f
- name: bootstrap python
raw: env ASSUME_ALWAYS_YES=YES pkg install python
- name: Common Setup
hosts: pfsense
gather_facts: yes
tasks:
- name: Ins... | Fix typo, shutup dmesg about Intel License | Fix typo, shutup dmesg about Intel License
| YAML | mit | BrianAker/ansible_pfsense |
077aeddbf44189dcb05bdc17b5740c97f0084a3b | metadata/nl.devluuk.sleepywifi.yml | metadata/nl.devluuk.sleepywifi.yml | Categories:
- Connectivity
- System
License: GPL-3.0-or-later
SourceCode: https://github.com/DevLuuk/SleepyWifi
IssueTracker: https://github.com/DevLuuk/SleepyWifi/issues
Changelog: https://github.com/DevLuuk/SleepyWifi/releases
AutoName: SleepyWifi
Summary: Disables the Wi-Fi when the phone is in sleep mode
Descr... | Categories:
- Connectivity
- System
License: GPL-3.0-or-later
SourceCode: https://github.com/DevLuuk/SleepyWifi
IssueTracker: https://github.com/DevLuuk/SleepyWifi/issues
Changelog: https://github.com/DevLuuk/SleepyWifi/releases
AutoName: SleepyWifi
Summary: Disables the Wi-Fi when the phone is in sleep mode
Descr... | Update SleepyWifi to 1.4 (5) | Update SleepyWifi to 1.4 (5)
| YAML | agpl-3.0 | f-droid/fdroid-data,f-droid/fdroiddata,f-droid/fdroiddata |
8143e95f8a9b57d28f850d8799da746089e6bb22 | playbooks/edx-east/legacy_certificates.yml | playbooks/edx-east/legacy_certificates.yml | # ansible-playbook -i ec2.py --limit="tag_cluster_certificates:&tag_environment_loadtest" legacy_certificates.yml
- name: Deploy legacy_certs
hosts: all
sudo: True
gather_facts: True
vars:
serial_count: 1
repo_url: "git@github.com/edx/certificates.git"
repo_path: "/opt/wwc/certificates"
certific... | # ansible-playbook -i ec2.py --limit="tag_cluster_certificates:&tag_environment_loadtest" legacy_certificates.yml
- name: Deploy legacy_certs
hosts: all
sudo: True
gather_facts: True
vars:
serial_count: 1
repo_url: "git@github.com/edx/certificates.git"
repo_path: "/opt/wwc/certificates"
certific... | Fix the git.sh path and fix a task name. | Fix the git.sh path and fix a task name.
| YAML | agpl-3.0 | bugcy013/edx_infra,antshin72/configuration,appsembler/configuration,nunpa/configuration,fghaas/edx-configuration,lgfa29/configuration,vasyarv/configuration,leansoft/configuration,nunpa/configuration,IndonesiaX/configuration,CredoReference/configuration,CredoReference/configuration,usernamenumber/configuration,alu042/co... |
503c625ef78941a55e38c44ede38513ac5fc6b34 | singleton_int1.yml | singleton_int1.yml | ---
- hosts: singleton_int1
become: yes
remote_user: ubuntu
roles:
- dhcpd
- apache
- docker
- homeassistant
- mhz19
- mosquitto
| ---
- hosts: singleton_int1
become: yes
remote_user: ubuntu
roles:
- dhcpd
- docker
- homeassistant
- httpd
- mhz19
- mosquitto
| Rename apache role to httpd | Rename apache role to httpd
| YAML | mit | rewse/ansible-playbooks,rewse/ansible-playbooks,rewse/ansible-playbooks |
b377083627a248cfc4ea19a75d0b7cbdfc95defb | tasks/main.yml | tasks/main.yml | ---
- name: Create admin group
group: "name={{admingroup}}"
- name: Add admin group to sudoers
lineinfile: dest=/etc/sudoers state=present regexp='^%admin ALL\=' line='%admin ALL=(ALL) NOPASSWD:ALL' validate='visudo -cf %s'
register: admingroupsudoers
- name: Remove wheel group in sudoers if admin g... | ---
- name: Create admin group
group: "name={{admingroup}}"
- name: Add admin group to sudoers
lineinfile: dest=/etc/sudoers state=present regexp='^%admin ALL\=' line='%admin ALL=(ALL) NOPASSWD:ALL' validate='visudo -cf %s'
register: admingroupsudoers
- name: Remove wheel group in sudoers if admin g... | Remove a user if state=='absent' | Remove a user if state=='absent'
We need a way to remove admin accounts if they leave or change role.
| YAML | mit | CSC-IT-Center-for-Science/ansible-role-users,SoneraCloud/ansible-role-users |
da131cae8170584250c31f512aa0553e5e676e76 | marathon_itests/fig.yml | marathon_itests/fig.yml | zookeeper:
build: ../yelp_package/dockerfiles/itest/zookeeper/
ports:
- 2181
marathon:
build: ../yelp_package/dockerfiles/itest/marathon/
ports:
- 8080
links:
- zookeeper
command: 'marathon'
| zookeeper:
build: ../yelp_package/dockerfiles/itest/zookeeper/
ports:
- 2181
marathon:
build: ../yelp_package/dockerfiles/itest/marathon/
ports:
- 8080
links:
- zookeeper
command: 'marathon --no-logger'
| Update marathon integration tests for more visibility | Update marathon integration tests for more visibility
| YAML | apache-2.0 | gstarnberger/paasta,somic/paasta,somic/paasta,Yelp/paasta,Yelp/paasta,gstarnberger/paasta |
65c5ef7982dd07fe68edd483be7f5271f5749baf | bigquery-policy-tags-admin.yaml | bigquery-policy-tags-admin.yaml | # Copyright 2020 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, ... | # Copyright 2020 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, ... | Add section names for github includes | Add section names for github includes
| YAML | apache-2.0 | GoogleCloudPlatform/bigquery-data-lineage,GoogleCloudPlatform/bigquery-data-lineage,GoogleCloudPlatform/bigquery-data-lineage |
bf039c52fce6a548c2a6d4f9e7e9675b01ed6011 | metadata/org.kknickkk.spider.yml | metadata/org.kknickkk.spider.yml | Categories:
- Connectivity
License: AGPL-3.0-or-later
SourceCode: https://github.com/nickdurante/Spider
IssueTracker: https://github.com/nickdurante/Spider/issues
AutoName: Spider
RepoType: git
Repo: https://github.com/nickdurante/Spider
Builds:
- versionName: 0.1.6
versionCode: 7
commit: v0.1.6
subd... | Categories:
- Connectivity
License: AGPL-3.0-or-later
SourceCode: https://github.com/nickdurante/Spider
IssueTracker: https://github.com/nickdurante/Spider/issues
AutoName: Spider
RepoType: git
Repo: https://github.com/nickdurante/Spider
Builds:
- versionName: 0.1.6
versionCode: 7
commit: v0.1.6
subd... | Update Spider to 0.1.9 (10) | Update Spider to 0.1.9 (10)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
ea4ac7c66c551bd31975deff9a0a26911360a4b3 | metadata/click.dummer.have_radiosion.yml | metadata/click.dummer.have_radiosion.yml | Categories:
- Multimedia
- Internet
License: GPL-3.0-only
AuthorName: deadlockz
WebSite: https://github.com/no-go/HaveRadiosion
SourceCode: https://github.com/no-go/HaveRadiosion
IssueTracker: https://github.com/no-go/HaveRadiosion/issues
Changelog: https://github.com/no-go/HaveRadiosion/releases
AutoName: HaveRad... | Categories:
- Multimedia
- Internet
License: GPL-3.0-only
AuthorName: deadlockz
WebSite: https://github.com/no-go/HaveRadiosion
SourceCode: https://github.com/no-go/HaveRadiosion
IssueTracker: https://github.com/no-go/HaveRadiosion/issues
Changelog: https://github.com/no-go/HaveRadiosion/releases
AutoName: HaveRad... | Update HaveRadiosion to 2.6 (26) | Update HaveRadiosion to 2.6 (26)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
d9e8541dbdb04a42e571f64795a2a52965d8a53b | default.conf.yaml | default.conf.yaml | - defaults:
link:
relink: true
create: true
force: true # We are opinionated.
- clean: ['~']
- shell:
- [git submodule update --init --recursive, Installing submodules]
- [mkdir -p ~/.vim/temp_dirs/undodir, Crating vim undo dir]
- [bat cache --build, Updating bat syntax cache]
- link:
... | - defaults:
link:
relink: true
create: true
force: true # We are opinionated.
- clean: ['~']
- shell:
- [git submodule update --init --recursive, Installing submodules]
- [mkdir -p ~/.vim/temp_dirs/undodir, Crating vim undo dir]
- [bat cache --build, Updating bat syntax cache]
- link:
... | Add link from paths.zsh to .zshenv | Add link from paths.zsh to .zshenv
When using vscode, we don't import the .zshrc, and as such the custom
PATH specifying useful util locations such as $GOPATH/bin don't get set.
We can work around this by setting the appropriate path in the ~/.zshenv
Since I already only set the path in the one file, I can simply lin... | YAML | mit | issmirnov/dotfiles,issmirnov/dotfiles,issmirnov/dotfiles,issmirnov/dotfiles |
4e27e7bc2aa317d264b1deeee21f5a3f0b9d2b87 | defaults/main.yml | defaults/main.yml | ---
# Select one or the other
#artifactory_database: postgresql
artifactory_database: mysql
# defaults file for bbaassssiiee.artifactory
artifactory_version: "3.4.2"
artifactory_username: "artifactory"
artifactory_password: "password"
artifactory_license: oss
| ---
# Select one or the other
#artifactory_database: postgresql
artifactory_database: mysql
# defaults file for bbaassssiiee.artifactory
artifactory_version: "4.5.1"
artifactory_username: "artifactory"
artifactory_password: "password"
artifactory_license: oss
| Update default Artifactory version to 4.5.1 (current release). | Update default Artifactory version to 4.5.1 (current release).
| YAML | mit | bbaassssiiee/artifactory |
212a586169fee638ff06d441b63df8646e44e4f8 | ansible/roles/common/tasks/main.yml | ansible/roles/common/tasks/main.yml | ---
- name: Ensure availability of base packages
apt: name={{ item }} state=present
with_items:
- cowsay
- curl
- figlet
- git
- git-svn
- htop
- jq
- maven
- netcat-openbsd
- openjdk-7-jdk
- realpath
- subversion
- tmux
- tree
- unattended-upgrades
- ... | ---
- name: Ensure availability of base packages
apt: name={{ item }} state=present
with_items:
- cowsay
- curl
- figlet
- git
- git-svn
- htop
- jq
- maven
- netcat-openbsd
- openjdk-7-jdk
- realpath
- subversion
- tmux
- tree
- unattended-upgrades
- ... | Add cron for unattended upgrades | Add cron for unattended upgrades
| YAML | mit | kiesel/box |
e5a4eccad65ac140df14748248608b83cdfcf4dd | catalog/Documents_Reports/reporting.yml | catalog/Documents_Reports/reporting.yml | name: Reports & Spreadsheets
description: Tools for parsing spreadsheets and creating reports in multiple formats.
projects:
- activeadmin-axlsx
- acts_as_xlsx
- axlsx
- axlsx_rails
- caxlsx
- caxlsx_rails
- compendium
- creek
- dossier
- dynamic_reports
- excel_rails
- gnumeric
- goffice
- ... | name: Reports & Spreadsheets
description: Tools for parsing spreadsheets and creating reports in multiple formats.
projects:
- activeadmin-axlsx
- acts_as_xlsx
- axlsx
- axlsx_rails
- caxlsx
- caxlsx_rails
- compendium
- creek
- dossier
- dynamic_reports
- excel_rails
- fast_excel
- gnumeric
... | Add fast_excel to Reports & Spreadsheets | Add fast_excel to Reports & Spreadsheets | YAML | mit | rubytoolbox/catalog |
cb7de726cfe7808a315fe6c15dd7a9c2436cadf1 | .kitchen.yml | .kitchen.yml | driver:
name: vagrant
provisioner:
name: chef_zero
platforms:
- name: centos-6.7
- name: centos-7.1
- name: debian-7.8
run_list: apt::default
- name: debian-8.1
run_list: apt::default
- name: fedora-22
run_list: yum::dnf_yum_compat
- name: fedora-23
run_list: yum::dnf_yum_compat
- na... | driver:
name: vagrant
provisioner:
name: chef_zero
platforms:
- name: centos-5.11
- name: centos-6.7
- name: centos-7.2
- name: debian-7.9
run_list: apt::default
- name: debian-8.2
run_list: apt::default
- name: fedora-22
run_list: yum::dnf_yum_compat
- name: fedora-23
run_list: yum:... | Update platforms to test on | Update platforms to test on
| YAML | apache-2.0 | chef-cookbooks/iptables,chef-cookbooks/iptables,opscode-cookbooks/iptables,chef-cookbooks/iptables,opscode-cookbooks/iptables,opscode-cookbooks/iptables |
8d0a38b66016db5eba76aef0ed4e83de76436e9e | .kitchen.yml | .kitchen.yml | driver_plugin: vagrant
driver_config:
require_chef_omnibus: true
customize:
memory: 1024
platforms:
- name: ubuntu-12.04
run_list:
- recipe[apt::default]
- name: ubuntu-10.04
run_list:
- recipe[apt::default]
- name: centos-6.4
- name: centos-5.9
suites:
- name: default
run_list:
- ... | driver_plugin: vagrant
driver_config:
require_chef_omnibus: true
customize:
memory: 512
platforms:
- name: ubuntu-12.04
run_list:
- recipe[apt::default]
- name: ubuntu-10.04
run_list:
- recipe[apt::default]
- name: centos-6.4
- name: centos-5.9
suites:
- name: default
run_list:
- r... | Drop TK memory allocation for clients from 1024 -> 512 | Drop TK memory allocation for clients from 1024 -> 512
Tested that this is still enough to compile the NRPE client. No need to allocate more than that since some people only have dev systems with 4GB ram. | YAML | apache-2.0 | ChrisLundquist/nagios,bitmonk/chef-nagios,polamjag/nagios,popsikle/nagios-5.3.5,spudnic/nagios,spudnic/nagios,OpenGov/nagios,earzur/nagios,firebase/nagios,JulianNL/nagios,CanaryTek/nagios,polamjag/nagios,bitmonk/chef-nagios,spudnic/nagios,OpenGov/nagios,schubergphilis/nagios,spudnic/nagios,ChrisLundquist/nagios,ChrisLu... |
4333e4809b941144533fef9b814623a2c3a5d58e | .mergify.yml | .mergify.yml | pull_request_rules:
- name: "rebase unreviewed non-release PRs"
conditions:
- head~=^(?!(release|hotfix)).*$
- "#approved-reviews-by=0"
- "#changes-requested-reviews-by=0"
actions:
rebase: {}
- name: "merge non-release PRs with strict rebase"
conditions:
- head~=^(?!(relea... | pull_request_rules:
- name: "rebase unreviewed non-release PRs"
conditions:
- "head~=^(?!(release|hotfix)).*$"
- "#approved-reviews-by=0"
- "#changes-requested-reviews-by=0"
actions:
rebase: {}
- name: "merge non-release PRs with strict rebase"
conditions:
- "head~=^(?!(re... | Add quotes to escape other conditions | Add quotes to escape other conditions
to prevent any accidental yaml errors and unify all conditions to use quotes
| YAML | agpl-3.0 | retest/recheck,retest/recheck |
535ddae684f88bc3627de20fac0245bb2e5815d7 | .mocharc.yml | .mocharc.yml | # Mocha options
# https://mochajs.org/#configuring-mocha-nodejs
# https://github.com/mochajs/mocha/blob/master/example/config/.mocharc.yml
spec:
- test/fixtures/setup-mocks.js
- test/fixtures/mocha-hooks.js
- test/specs/**/*.spec.js
bail: true
timeout: 10000
retries: 2
recursive: true
| # Mocha options
# https://mochajs.org/#configuring-mocha-nodejs
# https://github.com/mochajs/mocha/blob/master/example/config/.mocharc.yml
spec:
- test/fixtures/setup-mocks.js
- test/fixtures/mocha-hooks.js
- test/specs/**/*.spec.js
bail: true
timeout: 10000
slow: 2000
retries: 2
recursive: true
| Increase the "slow" threshhold for tests | Increase the "slow" threshhold for tests
| YAML | mit | BigstickCarpet/version-bump-prompt |
cbee5e6a2c1364dcc4da853d41a64f0779722cf7 | requirements.yml | requirements.yml | - name: composer
src: geerlingguy.composer
version: 1.2.7
- name: ntp
src: resmo.ntp
version: 0.3.0
- name: logrotate
src: nickhammond.logrotate
version: fc3ea4
- name: swapfile
src: kamaln7.swapfile
version: 0.4
- src: geerlingguy.daemonize
version: 1.1.0
- name: mailhog
src: geerlingguy.mailh... | - name: composer
src: geerlingguy.composer
version: 1.5.0
- name: ntp
src: resmo.ntp
version: 0.3.0
- name: logrotate
src: nickhammond.logrotate
version: e7a498d
- name: swapfile
src: kamaln7.swapfile
version: 0.4
- src: geerlingguy.daemonize
version: 1.1.1
- name: mailhog
src: geerlingguy.mail... | Update galaxy roles: composer, logrotate, daemonize | Update galaxy roles: composer, logrotate, daemonize
| YAML | mit | kalenjohnson/trellis,newtonne/trellis,pressbooks/trellis,Twansparant/trellis-db-sync,roots/trellis,buluma/trellis,cimocimocimo/cimo-wordpress-server,alan-c/trellis,partounian/trellis,mAAdhaTTah/bedrock-ansible,mAAdhaTTah/bedrock-ansible,NicBeltramelli/trellis,fullyint/trellis,roots/bedrock-ansible,newtonne/trellis,jeff... |
94a02cba5e4cf0a8a30ec0a39c1808bb17031b94 | .buildkite/trigger.yml | .buildkite/trigger.yml | steps:
- label: ':coverage: Test Photon'
trigger: 'prisma2-test'
- label: ':flashlight: Publish Photon'
trigger: 'prisma2-publish'
if: |
// Only run on master branch
// More docs here https://buildkite.com/docs/pipelines/conditionals
build.branch == 'master'
- wait
| steps:
- label: ':coverage: Test Prisma Client JS'
trigger: 'prisma2-test'
- label: ':flashlight: Publish Prisma Client JS'
trigger: 'prisma2-publish'
if: |
// Only run on master branch
// More docs here https://buildkite.com/docs/pipelines/conditionals
build.branch == 'master'
- wai... | Rename Photon to Prisma Client JS in buildkite | Rename Photon to Prisma Client JS in buildkite
Former-commit-id: 3d108df77d4debff01709241dff4e2b1ffaf47f3
Former-commit-id: bae51270a2713fd4382a874e296642ec66bebabe | YAML | apache-2.0 | prisma/prisma,prisma/prisma,prisma/prisma |
30382d2adc7dbdc522df13030aaf557e384d35c6 | .dependabot/config.yml | .dependabot/config.yml | # c.f. https://dependabot.com/docs/config-file/
version: 1
update_configs:
- package_manager: "ruby:bundler"
directory: "/"
update_schedule: "daily"
default_assignees:
- sue445
allowed_updates:
- match:
# Disable. Only top-level dependencies (and security patches for subdepe... | # c.f. https://dependabot.com/docs/config-file/
version: 1
update_configs:
- package_manager: "ruby:bundler"
directory: "/"
update_schedule: "daily"
default_assignees:
- sue445
allowed_updates:
- match:
# Disable. Only top-level dependencies (and security patches for subdepe... | Allow auto merge for rubocop-xxx | Allow auto merge for rubocop-xxx [ci skip] | YAML | mit | sue445/rubicure_api,sue445/rubicure_api,sue445/rubicure_api |
cbc3707b9d8479c79a054e2db664fe7decd15868 | .forestry/settings.yml | .forestry/settings.yml | ---
new_page_extension: md
auto_deploy: false
admin_path: ''
webhook_url:
sections:
- type: jekyll-pages
label: Pages
create: all
- type: jekyll-posts
label: Posts
create: all
upload_dir: uploads
public_path: "/uploads"
front_matter_path: ''
use_front_matter_path: false
file_template: ":filename:"
| ---
new_page_extension: md
auto_deploy: false
admin_path: ''
webhook_url:
sections:
- type: jekyll-pages
label: Pages
create: all
- type: jekyll-posts
label: Posts
create: all
upload_dir: img
public_path: "/img"
front_matter_path: ''
use_front_matter_path: false
file_template: ":filename:"
| Update from Forestry.io - Updated Forestry configuration | Update from Forestry.io - Updated Forestry configuration | YAML | mit | vxav/vxav.github.io,vxav/vxav.github.io,vxav/vxav.github.io |
5573e2eeb219051a1e03537fd525f87b39abdff2 | .forestry/settings.yml | .forestry/settings.yml | ---
new_page_extension: md
auto_deploy: false
admin_path:
webhook_url:
sections:
- type: jekyll-pages
label: Pages
create: all
- type: jekyll-posts
label: Posts
create: all
upload_dir: uploads
public_path: "/uploads"
front_matter_path: ''
use_front_matter_path: false
file_template: ":filename:"
build:
previ... | ---
new_page_extension: md
auto_deploy: false
admin_path:
webhook_url:
sections:
- type: jekyll-pages
label: Pages
create: all
- type: jekyll-posts
label: Posts
create: all
upload_dir: img
public_path: "/img"
front_matter_path: ''
use_front_matter_path: false
file_template: ":filename:"
build:
preview_comma... | Update from Forestry.io - Updated Forestry configuration | Update from Forestry.io - Updated Forestry configuration
| YAML | apache-2.0 | gerbenjacobs/gerbenjacobs.github.io,gerbenjacobs/gerbenjacobs.github.io,gerbenjacobs/gerbenjacobs.github.io,gerbenjacobs/gerbenjacobs.github.io |
f39e2fa4c2c1cf3b679d4699ebd2aafe551e5b1d | .forestry/settings.yml | .forestry/settings.yml | ---
new_page_extension: md
auto_deploy: false
admin_path: ''
webhook_url:
sections:
- type: heading
label: JTemporal
- type: jekyll-posts
label: Posts
create: all
- type: jekyll-pages
label: Pages
create: all
upload_dir: images
public_path: ''
front_matter_path: ''
use_front_matter_path: false
file_template:... | ---
new_page_extension: md
auto_deploy: false
admin_path: ''
webhook_url:
sections:
- type: heading
label: JTemporal
- type: jekyll-posts
label: Posts
create: all
- type: jekyll-pages
label: Pages
create: all
upload_dir: images
public_path: ''
front_matter_path: ''
use_front_matter_path: false
file_template:... | Update from Forestry.io - Updated Forestry configuration | Update from Forestry.io - Updated Forestry configuration
| YAML | mit | jtemporal/jtemporal.github.io,jtemporal/jtemporal.github.io |
a2444f9a83111eec2c08bac37e544f34c123be7f | data/colo/phoenixnap-private.yaml | data/colo/phoenixnap-private.yaml | ---
dnsclient::nameservers:
- '8.8.8.8'
- '8.8.4.4'
ldapclient::ldapservers: 'ldaps://ldap3-us-west.apache.org:636 ldaps://ldap2-us-west.apache.org:636 ldaps://harmonia.apache.org:636'
| ---
dnsclient::nameservers:
- '8.8.8.8'
- '8.8.4.4'
hosts:
ldap3-us-west.apache.org:
ip: '10.41.0.12'
host_aliases: 'ldap3-us-west'
ldapclient::ldapservers: 'ldaps://ldap3-us-west.apache.org:636 ldaps://ldap2-us-west.apache.org:636 ldaps://harmonia.apache.org:636'
| Add hiera data to add a hosts file entry for all pnap private instanes to resolve ldap3-us-west via hosts file | Add hiera data to add a hosts file entry for all pnap private instanes to resolve ldap3-us-west via hosts file
| YAML | apache-2.0 | stumped2/infrastructure-puppet,apache/infrastructure-puppet,chtyim/infrastructure-puppet,sebbASF/infrastructure-puppet,apache/infrastructure-puppet,sebbASF/infrastructure-puppet,sebbASF/infrastructure-puppet,stumped2/infrastructure-puppet,bdube/infrastructure-puppet,chtyim/infrastructure-puppet,chtyim/infrastructure-pu... |
c1c49f23c65b18bd5d11a73c78de137b16fed2ca | packages/gl/glaze.yaml | packages/gl/glaze.yaml | homepage: https://github.com/louispan/glaze#readme
changelog-type: ''
hash: d065cd9797d5989bb883ac366e52b081e3da8d7c533f9b1d2857109181961720
test-bench-deps: {}
maintainer: louis@pan.me
synopsis: Framework for rendering things with metadata/headers and values
changelog: ''
basic-deps:
base: <6
lens: ! '>=4 && <5'
a... | homepage: https://github.com/louispan/glaze#readme
changelog-type: ''
hash: 1ac41672bcdd9e9d98098e8c008a8d5893711ea354cc59015841031a64409d97
test-bench-deps: {}
maintainer: louis@pan.me
synopsis: Framework for rendering things with metadata/headers and values
changelog: ''
basic-deps:
base: <6
lens: ! '>=4 && <5'
a... | Update from Hackage at 2017-01-29T12:15:56Z | Update from Hackage at 2017-01-29T12:15:56Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
894781fd281bd923bc990874a3c3d05755165b37 | vars/main.yml | vars/main.yml | ---
downloads: ~/.ansible-downloads/
homebrew_installed_packages:
- ansible
- autoconf
- gettext
- libevent
- packer
- python
- sqlite
- mysql
- php56
- php56-xdebug
- ssh-copy-id
- cowsay
- ios-sim
- readline
- subversion
- kdiff3
- openssl
- pv
- drush
- wget
- caskroom/cask... | ---
downloads: ~/.ansible-downloads/
homebrew_installed_packages:
- ansible
- autoconf
- gettext
- libevent
- packer
- python
- sqlite
- mysql
- php56
- php56-xdebug
- ssh-copy-id
- cowsay
- ios-sim
- readline
- subversion
- kdiff3
- openssl
- pv
- drush
- wget
- brew-cask
ho... | Use correct package name for Cask. | Use correct package name for Cask.
| YAML | mit | dhelfer/centos-webdev-environment,sinso/macbook-webdev-environment,jayanthm/mac-dev-playbook,opdavies/mac-dev-playbook,toby-griffiths/mac-dev-playbook,jayanthm/mac-dev-playbook,sillvan/mac-dev-playbook,techraf/mac-dev-playbook,Andrew415/mac-dev-playbook,timdiels1/mac-dev-playbook,siyelo/laptop,ngpestelos/mac-dev-playbo... |
3e847188122af81fdd5de32bfe8df1234d617908 | molecule/dnsdist-master/molecule.yml | molecule/dnsdist-master/molecule.yml | ---
scenario:
name: dnsdist-master
driver:
name: docker
dependency:
name: galaxy
platforms:
- name: centos-7
image: centos:7
dockerfile_tpl: centos-systemd
- name: ubuntu-1604
image: ubuntu:16.04
dockerfile_tpl: debian-systemd
- name: ubuntu-1804
image: ubuntu:18.04
dockerfile_... | ---
scenario:
name: dnsdist-master
driver:
name: docker
dependency:
name: galaxy
platforms:
- name: centos-7
image: centos:7
dockerfile_tpl: centos-systemd
- name: centos-8
image: centos:8
dockerfile_tpl: centos-systemd
- name: ubuntu-1804
image: ubuntu:18.04
dockerfile_tpl: de... | Align tests for master with 1.5 | Align tests for master with 1.5
| YAML | mit | PowerDNS/dnsdist-ansible |
5e69f099495ca4ce34f094fe8b8afe1e6362c6f6 | tasks/main.yml | tasks/main.yml | ---
- name: ensures tmux is installed/updated
homebrew: name=tmux state=latest
- name: ensure tmux.conf exists
copy: src=tmux.conf dest=~/.tmux.conf
- name: ensure copy/paste support (reattach-to-user-namespace) is installed/updated
homebrew: name=reattach-to-user-namespace state=latest
- name: ensure common t... | ---
- name: ensures tmux is installed/updated
homebrew: name=tmux state=latest
- name: ensure tmux.conf exists
copy: src=tmux.conf dest=~/.tmux.conf
- name: ensure copy/paste support (reattach-to-user-namespace) is installed/updated
homebrew: name=reattach-to-user-namespace state=latest
- name: ensure common t... | Remove brew cask due to deprecation | Remove brew cask due to deprecation | YAML | mit | short-stack/short-stack-tmux,poetic/short-stack-tmux |
c3dd4adc60a291f7af8261909633dba7d52d3725 | packages/gi/ginger.yaml | packages/gi/ginger.yaml | homepage: https://bitbucket.org/tdammers/ginger
changelog-type: ''
hash: 1b9b7f193896b18c561e96ee147822ab9bc59970201bc00220ed338fbe6850d9
test-bench-deps: {}
maintainer: tdammers@gmail.com
synopsis: An implementation of the Jinja2 template language in Haskell
changelog: ''
basic-deps:
bytestring: -any
base: ! '>=4.... | homepage: https://bitbucket.org/tdammers/ginger
changelog-type: ''
hash: 2386097e36b0b71f51ee2b9191edaf7116e9ed86e239abfdc3e9bca51702594d
test-bench-deps: {}
maintainer: tdammers@gmail.com
synopsis: An implementation of the Jinja2 template language in Haskell
changelog: ''
basic-deps:
bytestring: -any
base: ! '>=4.... | Update from Hackage at 2016-02-17T10:20:59+0000 | Update from Hackage at 2016-02-17T10:20:59+0000
| YAML | mit | commercialhaskell/all-cabal-metadata |
3d48e4cf4481b1e7a75cb47a8ceb2e5ca6e861b5 | packages/ma/massiv.yaml | packages/ma/massiv.yaml | homepage: https://github.com/lehins/massiv
changelog-type: ''
hash: aab284322fc6e53983d713cb24ef0a293b6a42ec2a935d1436c336bbaaf28d78
test-bench-deps:
base: ! '>=4.8 && <5'
hspec: -any
safe-exceptions: -any
massiv: -any
data-default: -any
deepseq: -any
QuickCheck: -any
vector: -any
maintainer: alexey@kul... | homepage: https://github.com/lehins/massiv
changelog-type: ''
hash: 9a2f7110f98f6eaf8fc0feafacac346c7ca6267c806ddacb821e0d3f573418ff
test-bench-deps:
base: ! '>=4.8 && <5'
hspec: -any
safe-exceptions: -any
massiv: -any
data-default: -any
deepseq: -any
QuickCheck: -any
vector: -any
maintainer: alexey@kul... | Update from Hackage at 2018-03-04T00:39:53Z | Update from Hackage at 2018-03-04T00:39:53Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
6df7a55dce2168fb0d38c8916c8e01c8af7fc4a6 | packages/mm/mmorph.yaml | packages/mm/mmorph.yaml | homepage: ''
changelog-type: ''
hash: e05376c0ca1433c1ae90b647c79b03b156206e649e00291063d86a088ea78b54
test-bench-deps: {}
maintainer: Gabriel439@gmail.com
synopsis: Monad morphisms
changelog: ''
basic-deps:
base: ! '>=4 && <5'
transformers: ! '>=0.2.0.0 && <0.6'
all-versions:
- '1.0.0'
- '1.0.1'
- '1.0.2'
- '1.0.3... | homepage: ''
changelog-type: ''
hash: 2574723748927a97bdd265fa42a97a738644fca49f7a8bc978d84a0a88708f49
test-bench-deps: {}
maintainer: Gabriel439@gmail.com
synopsis: Monad morphisms
changelog: ''
basic-deps:
base: ! '>=4 && <5'
mtl: ! '>=2.0.1 && <2.3'
transformers: ! '>=0.2.0.0 && <0.6'
transformers-compat: ! ... | Update from Hackage at 2016-02-03T05:21:11+0000 | Update from Hackage at 2016-02-03T05:21:11+0000
| YAML | mit | commercialhaskell/all-cabal-metadata |
75055b653dd1909edc746cbee209ef12306838fc | .kitchen.docker.yml | .kitchen.docker.yml | #
# Copyright 2016 Walter Dolce
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed ... | #
# Copyright 2016 Walter Dolce
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed ... | Add test commands to provision_command | Add test commands to provision_command
| YAML | apache-2.0 | walterdolce/ansible-role-sudoers-manager,walterdolce/ansible-role-sudoers-manager |
5c21e06114616b4a1efbec6d9c9e20a029a8a791 | metadata/de.kaffeemitkoffein.feinstaubwidget.yml | metadata/de.kaffeemitkoffein.feinstaubwidget.yml | Categories:
- Graphics
License: GPL-3.0-or-later
AuthorWebSite: https://kaffeemitkoffein.de/blog/me/
SourceCode: https://codeberg.org/Starfish/Feinstaubwidget
IssueTracker: https://codeberg.org/Starfish/Feinstaubwidget/issues
AutoName: FeinstaubWidget
RepoType: git
Repo: https://codeberg.org/Starfish/Feinstaubwidge... | Categories:
- Graphics
License: GPL-3.0-or-later
AuthorWebSite: https://kaffeemitkoffein.de/blog/me/
SourceCode: https://codeberg.org/Starfish/Feinstaubwidget
IssueTracker: https://codeberg.org/Starfish/Feinstaubwidget/issues
AutoName: FeinstaubWidget
RepoType: git
Repo: https://codeberg.org/Starfish/Feinstaubwidge... | Update FeinstaubWidget to 0.75 (31) | Update FeinstaubWidget to 0.75 (31)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
e1d3de2bfca7fe7289a30402f2f39fab7f0b9825 | src/tmlib/user.cfg.yml | src/tmlib/user.cfg.yml | # Template for a user configuration settings file
plates_dir:
sources_dir:
layers_dir:
plate_format: 384
workflow:
stages:
- name: conversion
steps:
- name: metaextract
args:
- name: metaconfig
args:
format: cellvoyager
- name: imextract
arg... | # Template for a user configuration settings file
plates_dir:
sources_dir:
layers_dir:
plate_format: 384
workflow:
stages:
- name: image_conversion
steps:
- name: metaextract
args:
- name: metaconfig
args:
format: cellvoyager
- name: imextract
... | Update user config file template | Update user config file template
| YAML | agpl-3.0 | TissueMAPS/TmLibrary,TissueMAPS/TmLibrary,TissueMAPS/TmLibrary,TissueMAPS/TmLibrary,TissueMAPS/TmLibrary |
46d088b4126e2039aa574c3f6a36cd0a2b861383 | .overcommit.yml | .overcommit.yml | PreCommit:
RuboCop:
enabled: true
problem_on_unmodified_line: ignore
flags: ['--fail-level', 'error']
| PreCommit:
RuboCop:
enabled: true
problem_on_unmodified_line: ignore
flags: ['--fail-level', 'error', '--format', 'emacs']
| Set the RuboCop output format to emacs | Set the RuboCop output format to emacs
This produces output compatible with overcommit.
| YAML | mit | github/elastomer-client,github/elastomer-client |
9c14f304ccf4fb37ec43d5d4e50a126a51f577c1 | packages/se/servant-JuicyPixels.yaml | packages/se/servant-JuicyPixels.yaml | homepage: https://github.com/tvh/servant-JuicyPixels
changelog-type: ''
hash: 2f172aabef738c0c7c65de30eefd15c2775a541f5ad4e64bd4cfb89c0d889939
test-bench-deps: {}
maintainer: tvh@tvholtz.de
synopsis: Servant support for JuicyPixels
changelog: ''
basic-deps:
warp: -any
JuicyPixels: ! '>=3.2.5.3'
bytestring: -any
... | homepage: https://github.com/tvh/servant-JuicyPixels
changelog-type: ''
hash: c2bb054b2bf321495ce60debc745eaf05b6e6322bd24db2aee5597040241b5be
test-bench-deps: {}
maintainer: tvh@tvholtz.de
synopsis: Servant support for JuicyPixels
changelog: ''
basic-deps:
warp: -any
JuicyPixels: ! '>=3.2.5.3'
bytestring: -any
... | Update from Hackage at 2018-06-26T20:37:28Z | Update from Hackage at 2018-06-26T20:37:28Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
26c8bfd92b751b6c9c25114301a196520af20282 | packages/we/web-routes-generics.yaml | packages/we/web-routes-generics.yaml | homepage: ''
changelog-type: ''
hash: d1b81b7b5387557de816e23268132d586781f14f30b91c5f5eba7c25991b6468
test-bench-deps: {}
maintainer: partners@seereason.com
synopsis: portable, type-safe URL routing
changelog: ''
basic-deps:
base: ! '>=4 && <5'
text: -any
parsec: ! '>=2 && <4'
web-routes: ! '>=0.26'
all-versio... | homepage: ''
changelog-type: ''
hash: bd0c99d1b4d9c57d7a1902b7052f2073d6f978323740e201531c06458a959568
test-bench-deps: {}
maintainer: partners@seereason.com
synopsis: portable, type-safe URL routing
changelog: ''
basic-deps:
base: ! '>=4 && <5'
text: -any
parsec: ! '>=2 && <4'
web-routes: ! '>=0.26'
all-versio... | Update from Hackage at 2019-07-14T02:26:22Z | Update from Hackage at 2019-07-14T02:26:22Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
c10b718c5c14e3b000438e4f1b342576c776c6b2 | config/prisons/HCI-huntercombe.yml | config/prisons/HCI-huntercombe.yml | ---
name: Huntercombe
nomis_id: HCI
address:
- Huntercombe Place
- 'RG9 5SB '
email: socialvisits.huntercombe@hmps.gsi.gov.uk
enabled: true
estate: Huntercombe
phone: 01491 643151
slot_anomalies:
2014-12-22:
- 1345-1600
2014-12-24:
- 1345-1600
2014-12-29:
- 1345-1600
2015-01-02:
- 1345-1600
slots:
mon... | ---
name: Huntercombe
nomis_id: HCI
address:
- Huntercombe Place
- 'RG9 5SB '
email: socialvisits.huntercombe@hmps.gsi.gov.uk
enabled: true
estate: Huntercombe
phone: 01491 643151
slot_anomalies:
2014-12-22:
- 1345-1600
2014-12-24:
- 1345-1600
2014-12-29:
- 1345-1600
2015-01-02:
- 1345-1600
slots:
mon... | Update Huntercombe Christmas visit slots | Update Huntercombe Christmas visit slots
Unbookable - Christmas Day, Boxing Day, New Year's Day | YAML | mit | ministryofjustice/prison-visits,ministryofjustice/prison-visits,ministryofjustice/prison-visits |
a0002535916433f94cb6ffde0a26dac76294f4ae | metadata/org.woheller69.eggtimer.yml | metadata/org.woheller69.eggtimer.yml | Categories:
- Sports & Health
License: GPL-3.0-only
AuthorName: woheller69
SourceCode: https://github.com/woheller69/eggtimer
IssueTracker: https://github.com/woheller69/eggtimer/issues
AutoName: Smart EggTimer
RepoType: git
Repo: https://github.com/woheller69/eggtimer
Builds:
- versionName: '1.2'
versionCod... | Categories:
- Sports & Health
License: GPL-3.0-only
AuthorName: woheller69
SourceCode: https://github.com/woheller69/eggtimer
IssueTracker: https://github.com/woheller69/eggtimer/issues
AutoName: Smart EggTimer
RepoType: git
Repo: https://github.com/woheller69/eggtimer
Builds:
- versionName: '1.2'
versionCod... | Update Smart EggTimer to 1.4 (14) | Update Smart EggTimer to 1.4 (14)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
36aee7afe69d88d17d5aab943f6e65c48b2d7c34 | .gitlab-ci.yml | .gitlab-ci.yml | #
# Yet Another UserAgent Analyzer
# Copyright (C) 2013-2021 Niels Basjes
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required b... | #
# Yet Another UserAgent Analyzer
# Copyright (C) 2013-2021 Niels Basjes
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required b... | Update maven Docker tag to v3.8.1 | Update maven Docker tag to v3.8.1
| YAML | apache-2.0 | nielsbasjes/yauaa,nielsbasjes/yauaa,nielsbasjes/yauaa,nielsbasjes/yauaa |
c02191f5fec363724eaedc41cc4caaac06eded55 | .gitlab-ci.yml | .gitlab-ci.yml | stages:
- build
fedora-latest:
image: fedora:latest
stage: build
before_script:
- dnf update -y && dnf -y install dnf-plugins-core redhat-rpm-config
- dnf -y builddep folks
script:
# Configure
- ./autogen.sh
# Build
- make -j
# Run tests
- make -j check
| stages:
- build
fedora-latest:
image: fedora:latest
stage: build
variables:
MAKEFLAGS: "-j8"
before_script:
- dnf update -y && dnf -y install dnf-plugins-core redhat-rpm-config
- dnf -y builddep folks
script:
# Configure
- ./autogen.sh
# Build
- make
# Run tests
- make c... | Move MAKEFLAGS out into a CI-wide variable | ci: Move MAKEFLAGS out into a CI-wide variable
Means we only have to specify it in one place.
Signed-off-by: Philip Withnall <29c2a2ac2a854b9cf047275aa9de346d096be2e0@endlessm.com>
| YAML | lgpl-2.1 | GNOME/folks,GNOME/folks,GNOME/folks |
42775970d74abac5ee01ef5c925091350973d1ce | .gitlab-ci.yml | .gitlab-ci.yml | image: quay.io/python-devs/ci-image
stages:
- test
- codecov
- deploy
qa:
script:
- tox -e qa
tests:
script:
- tox -e py27,py35,py36,py37,py38
coverage:
script:
- tox -e py27-cov,py35-cov,py36-cov
artifacts:
paths:
- coverage.xml
diffcov:
script:
- tox -e py27-diffcov,py35... | image: quay.io/python-devs/ci-image
stages:
- test
- codecov
- deploy
qa:
script:
- tox -e qa
tests:
script:
- tox -e py27,py35,py36,py37,py38
coverage:
script:
- tox -e py27-cov,py35-cov,py36-cov
artifacts:
paths:
- coverage.xml
diffcov:
script:
- tox -e py27-diffcov,py35... | Use 'v' prefix to match semver design. | Use 'v' prefix to match semver design.
| YAML | apache-2.0 | python/importlib_resources |
d0603d3dd251cd961da5735c454ccd76b249e642 | .gitlab-ci.yml | .gitlab-ci.yml | pages:
stage: deploy
image: ruby:2.1
script:
- gem install jekyll
- gem install redcarpet
- jekyll build -d public
artifacts:
paths:
- public
only:
- master
| pages:
stage: deploy
image: ruby:2.1
script:
- gem install bundler --no-ri --no-rdoc
- bundle install --jobs $(nproc)
- bundle exec jekyll build -d public
artifacts:
paths:
- public
only:
- master
| Fix CI setup for GitLab pages | Fix CI setup for GitLab pages
| YAML | apache-2.0 | chillcoding-at-the-beach/chillcoding-at-the-beach.github.io,chillcoding-at-the-beach/chillcoding-at-the-beach.github.io,chillcoding-at-the-beach/chillcoding-at-the-beach.github.io |
e214514876babd59a652ba64a83abf9435ef07e5 | .gitlab-ci.yml | .gitlab-ci.yml | stages:
- build
- test
- github
- cleanup
push to github:
image: wurbanski/alpine-git
stage: github
tags:
- docker-runner
script:
- if [ ! -n "$(grep "^github.com " ~/.ssh/known_hosts)" ]; then ssh-keyscan github.com >> ~/.ssh/known_hosts 2>/dev/null; fi
- eval $(ssh-agent -s)
- echo "$... | stages:
- build
- test
- github
.job_template: &job
tags:
- docker-runner
build alpine:
<<: *job
image: golang:1.8-alpine
stage: build
script:
- go build
build linux:
<<: *job
image: golang:1.8
stage: build
script:
- go build
push to github:
<<: *job
image: wurbanski/alpine-g... | Add build jobs to CI | Add build jobs to CI
| YAML | bsd-3-clause | wurbanski/i-must-go |
4d28468b5309c0f1a319876724b4cbc05d410597 | ab_tests/ab_tests.yaml | ab_tests/ab_tests.yaml | ---
- name: BenchmarkInlineLink
b_percentage: 30
expiry: 14d
- name: SearchMatchLength
b_percentage: 30
expiry: 1d
| ---
- name: BenchmarkInlineLink
b_percentage: 30
expiry: 14d
- name: SearchMatchLength
b_percentage: 5
expiry: 1d
| Reduce B group percentage of search A/B test | Reduce B group percentage of search A/B test
Reduce B percentage of `SearchMatchLength` test from 30% to 5% before
the test starts because the test should be run with just a small group
of users initially.
| YAML | mit | alphagov/fastly-configure,alphagov/fastly-configure,alphagov/fastly-configure |
a183a9a9403a27cdd1bf06fd63317ae6a3e16072 | data/quotes.yaml | data/quotes.yaml | quotes:
- empty: empty (arrays are 1 indexed!)
- quote: "Change is the end result of all true learning."
author: "Leo Buscaglia"
- quote: "Learning never exahusts the mind."
author: "Leonardo da Vinci"
- quote: "You don't learn to walk by following rules. You learn by doing and by failing over."
aut... | quotes:
- empty: empty (arrays are 1 indexed!)
- quote: "Change is the end result of all true learning."
author: "Leo Buscaglia"
- quote: "Learning never exhausts the mind."
author: "Leonardo da Vinci"
- quote: "You don't learn to walk by following rules. You learn by doing and by failing over."
aut... | Fix typo in quote (thanks SK) | Fix typo in quote (thanks SK) | YAML | mit | maurizzzio/blog,maurizzzio/blog,maurizzzio/blog,maurizzzio/blog,maurizzzio/blog |
7dfc03235ee52dda73b70c92e63ec21570e2146f | zuul/main.yaml | zuul/main.yaml | - tenant:
name: openstack
source:
gerrit:
config-projects:
- openstack-infra/project-config
untrusted-projects:
# Order matters, load common job repos first
- openstack-infra/zuul-jobs:
shadow: openstack-infra/project-config
- openstack... | - tenant:
name: openstack
source:
gerrit:
config-projects:
- openstack-infra/project-config
untrusted-projects:
# Order matters, load common job repos first
- openstack-infra/zuul-jobs:
shadow: openstack-infra/project-config
- openstack... | Add the base set of devstack projects to Zuul v3 | Add the base set of devstack projects to Zuul v3
These are in a group that permits no configuration, but the projects
may be used in jobs.
Change-Id: Ibb765b97b84ac183c8c54d9739ffa9d407e090b8
| YAML | apache-2.0 | openstack-infra/project-config,openstack-infra/project-config |
b93487b6504dbaa0d30a503a2853cb309e42a69f | .goreleaser.yml | .goreleaser.yml | project_name: nv
before:
hooks:
- go mod tidy
builds:
- <<: &build_defaults
binary: nv
main: ./cmd/nv/
env:
- CGO_ENABLE=0
ldflags:
- -s -w -X github.com/jcouture/nv/internal/build.Version={{.Version}}
id: macos
goos: [darwin]
goarch: [amd64, arm64]
- <... | project_name: nv
before:
hooks:
- go mod tidy
builds:
- <<: &build_defaults
binary: nv
main: ./cmd/nv/
env:
- CGO_ENABLE=0
ldflags:
- -s -w -X github.com/jcouture/nv/internal/build.Version={{.Version}}
id: macos
goos: [darwin]
goarch: [amd64, arm64]
- <... | Make sure to produce an ARM64 binary on Windows. | Make sure to produce an ARM64 binary on Windows.
| YAML | mit | jcouture/nv |
8e59b339cccd0e17d8c048ee6e893107d0fb6865 | .travis.yml | .travis.yml | language: php
sudo: false
php:
- "5.6"
- hhvm
- "5.5"
- "5.4"
- "5.3"
- hhvm-nightly
matrix:
fast_finish: true
allow_failures:
- php: hhvm-nightly
- env: PHPUNIT_VERSION='4.*@dev'
env:
- PHPUNIT_VERSION='3.7.*'
- PHPUNIT_VERSION='4.*@dev'
- PHPUNIT_VERSION='4.*@stable... | language: php
sudo: false
php:
- "5.6"
- hhvm
- "5.5"
- "5.4"
- "5.3"
- hhvm-nightly
cache:
directories:
- $HOME/.composer/cache
matrix:
fast_finish: true
allow_failures:
- php: hhvm-nightly
- env: PHPUNIT_VERSION='4.*@dev'
env:
- PHPUNIT_VERSION='3.7.*'
- PHPUNIT_... | Enable caching of dependencies installed with Composer | Enhancement: Enable caching of dependencies installed with Composer
| YAML | mit | RojerUA/paratest,quizlet/paratest,chbiel/paratest,chbiel/paratest,quizlet/paratest,brianium/paratest,brianium/paratest,ThomasDelteil/paratest,ThomasDelteil/paratest,RojerUA/paratest |
d4e86545611ee00165a5dd3c767cedcca37faca3 | .travis.yml | .travis.yml | services:
- rabbitmq
- redis-server
sudo: false
cache: bundler
language: ruby
rvm:
- ruby-head
- 2.2.5
matrix:
include:
- rvm: 2.2.5
env: INTEGRATION_LOG=1 INTEGRATION=1
| services:
- rabbitmq
- redis-server
sudo: false
cache: bundler
language: ruby
rvm:
- ruby-head
- "2.4.1"
- "2.3.4"
- "2.2.7"
matrix:
include:
- rvm: 2.2.5
env: INTEGRATION_LOG=1 INTEGRATION=1
| Test against the same set of Rubies as Bunny | Test against the same set of Rubies as Bunny | YAML | mit | pomnikita/sneakers,jondot/sneakers,reevoo/sneakers,reevoo/sneakers,pomnikita/sneakers,jondot/sneakers,pomnikita/sneakers,reevoo/sneakers |
d40223409d04631d3607e22c3fa914b382a65e94 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.2.3
script: rubocop && rspec
# We have to install Rust manually, as Travis does not yet allow multiligual
# builds. We install the latest stable Rust build.
before_install:
- mkdir ~/rust-installer
- curl -sL https://static.rust-lang.org/rustup.sh -o ~/rust-installer/rustup.sh
- sh ~/ru... | sudo: false
language: ruby
rvm:
- 2.2.3
script: rubocop && rspec
# We have to install Rust manually, as Travis does not yet allow multiligual
# builds. We install the latest stable Rust build.
before_install:
- mkdir ~/rust-installer
- curl -sL https://static.rust-lang.org/rustup.sh -o ~/rust-installer/rustup.sh... | Use new Travis container infrastructure. | Use new Travis container infrastructure.
| YAML | mit | nathankleyn/gitignore.rb,nathankleyn/gitignore.rb |
9aaad70b29f30d5385798f4a9cca94ad67cc92a0 | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
env:
- DJANGO=Django==1.3.7 SOUTH=1
- DJANGO=Django==1.4.5 SOUTH=1
- DJANGO=Django==1.5.1 SOUTH=1
- DJANGO=https://github.com/django/django/tarball/master SOUTH=1
- DJANGO=Django==1.3.7 SOUTH=0
install:
- pip install coverage $DJANGO --use-mirrors
- sh -c "i... | language: python
python:
- "2.6"
- "2.7"
env:
- DJANGO=Django==1.3.7 SOUTH=1
- DJANGO=Django==1.4.5 SOUTH=1
- DJANGO=Django==1.5.1 SOUTH=1
- DJANGO=https://github.com/django/django/tarball/master SOUTH=1
- DJANGO=Django==1.3.7 SOUTH=0
install:
- pip install coverage $DJANGO --use-mirrors
- sh -c "i... | Test Python 3.2 and 3.3 with Travis CI | Test Python 3.2 and 3.3 with Travis CI
| YAML | bsd-3-clause | pombredanne/django-simple-history,luzfcb/django-simple-history,treyhunner/django-simple-history,treyhunner/django-simple-history,emergence/django-simple-history,pombredanne/django-simple-history,emergence/django-simple-history,luzfcb/django-simple-history |
8bbb8fd02c37041d86163d4328f4f184d699c1c2 | .travis.yml | .travis.yml | language: go
go:
- 1.1
- 1.2
- 1.3
install:
- go get github.com/bmizerany/assert
- go get github.com/ddollar/dist
- go get github.com/ddollar/config
- go get github.com/ddollar/go-update
- go get github.com/ViViDboarder/gotifier
- go get github.com/bgentry/speakeasy
- go get github.com/kr/bina... | language: go
go:
- 1.1
- 1.2
- 1.3
install:
- go get github.com/bmizerany/assert
- go get github.com/ddollar/dist
- go get github.com/ddollar/config
- go get github.com/ddollar/go-update
- go get github.com/ViViDboarder/gotifier
- go get github.com/bgentry/speakeasy
- go get github.com/kr/bina... | Add Ginkgo Dependencies for Travis CI | Add Ginkgo Dependencies for Travis CI
| YAML | mit | devangel/force,cwarden/force,heroku/force,dsipasseuth/force,joist-engineering/force,ViViDboarder/force |
0d192b147aa1a7fda0ccb0c11ac1c368024fb7cc | _config.yml | _config.yml | # Site settings
title: lauris.github.io
email: lauris@discuss.lv
description: "A fucking awesome blog about programming, hacking, open-source, startups, git, vim, linux, etc."
baseurl: ""
url: "http://lauris.github.io"
twitter_username: lauriswat
github_username: lauris
# Build settings
markdown: kramdown
permalink: ... | # Site settings
title: lauris.github.io
email: lauris@discuss.lv
description: "A fucking awesome blog about programming, hacking, open-source, startups, git, vim, linux, etc."
baseurl: ""
url: "http://lauris.github.io"
twitter_username: lauriswat
github_username: lauris
# Build settings
markdown: kramdown
permalink: ... | Fix issue with Github permalink format. | Fix issue with Github permalink format.
| YAML | apache-2.0 | lauris/lauris.github.com,sanjaygouri/lauris.github.com,sanjaygouri/lauris.github.com,lauris/lauris.github.com |
44cd4d265504a83dfb10f5550d25620139d5e0fa | recipes/sos-r/meta.yaml | recipes/sos-r/meta.yaml | {% set name = "sos-r" %}
{% set version = "0.19.1" %}
package:
name: "{{ name|lower }}"
version: "{{ version }}"
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: ed48f4f32386a9b6a7e2c13056ce43d6ff151dc33afea5a6b96316b3af0df43b
build:
noarch: pyth... | {% set name = "sos-r" %}
{% set version = "0.19.1" %}
package:
name: "{{ name|lower }}"
version: "{{ version }}"
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: ed48f4f32386a9b6a7e2c13056ce43d6ff151dc33afea5a6b96316b3af0df43b
build:
noarch: pyth... | Add nose as test requirement | Add nose as test requirement | YAML | bsd-3-clause | petrushy/staged-recipes,conda-forge/staged-recipes,patricksnape/staged-recipes,jakirkham/staged-recipes,isuruf/staged-recipes,birdsarah/staged-recipes,Juanlu001/staged-recipes,stuertz/staged-recipes,mcs07/staged-recipes,hadim/staged-recipes,dschreij/staged-recipes,igortg/staged-recipes,igortg/staged-recipes,petrushy/st... |
96febaf27ff9822abb2a72ffd64fdbfe9003d6b8 | catalog/Background_Processing/Background_Jobs.yml | catalog/Background_Processing/Background_Jobs.yml | name: Background Jobs
description: Process slow tasks asynchronously to keep response times low, improve fault-tolerance and aid with horizontal scaling
projects:
- acts_as_executor
- amqp
- backburner
- backgrounded
- barttenbrinke/worker_queue
- beetle
- bj
- bunny
- cloud-crowd
- delayed_job
- ... | name: Background Jobs
description: Process slow tasks asynchronously to keep response times low, improve fault-tolerance and aid with horizontal scaling
projects:
- acts_as_executor
- amqp
- backburner
- backgrounded
- barttenbrinke/worker_queue
- beetle
- bj
- bunny
- cloud-crowd
- delayed_job
- ... | Add sneakers to background jobs | Add sneakers to background jobs
https://github.com/jondot/sneakers | YAML | mit | rubytoolbox/catalog |
ff3c671a4a2456680d6ba3a045b6fe7b41696eea | exercises/sieve/metadata.yml | exercises/sieve/metadata.yml | ---
blurb: "Write a program that uses the Sieve of Eratosthenes to find all the primes from 2 up to a given number."
source: "Sieve of Eratosthenes at Wikipedia"
source_url: "http://en.wikipedia.org/wiki/Sieve_of_Eratosthenes"
| ---
blurb: "Use the Sieve of Eratosthenes to find all the primes from 2 up to a given number."
source: "Sieve of Eratosthenes at Wikipedia"
source_url: "http://en.wikipedia.org/wiki/Sieve_of_Eratosthenes"
| Remove "write a program" from sieve exercise | Remove "write a program" from sieve exercise
| YAML | mit | kgengler/x-common,petertseng/x-common,kgengler/x-common,Vankog/problem-specifications,exercism/x-common,petertseng/x-common,jmluy/x-common,ErikSchierboom/x-common,jmluy/x-common,Vankog/problem-specifications,rpottsoh/x-common,rpottsoh/x-common,jmluy/x-common,ErikSchierboom/x-common,exercism/x-common |
671576935eae37d082e777ba9168d7708200a122 | roles/i3/tasks/main.yml | roles/i3/tasks/main.yml | ---
- include_vars: "{{ item }}"
with_first_found:
- "../vars/{{ ansible_distribution }}-{{ ansible_distribution_major_version | int}}.yml"
- "../vars/{{ ansible_distribution }}.yml"
- "../vars/{{ ansible_os_family }}.yml"
- "../vars/default.yml"
- name: Install i3
become: true
package:
... | ---
- include_vars: "{{ item }}"
with_first_found:
- "../vars/{{ ansible_distribution }}-{{ ansible_distribution_major_version | int}}.yml"
- "../vars/{{ ansible_distribution }}.yml"
- "../vars/{{ ansible_os_family }}.yml"
- "../vars/default.yml"
- name: Install i3
become: true
package:
... | Install i3status - necessary for py3stats | Install i3status - necessary for py3stats
| YAML | mit | JohnAZoidberg/dotfiles,JohnAZoidberg/dotfiles |
294b5590e59dd0078ebca35e8ee3e11707159632 | app.yaml | app.yaml | application: bingobuzzword
version: 1
runtime: python27
api_version: 1
threadsafe: yes
builtins:
- remote_api: on
inbound_services:
- warmup
libraries:
- name: django
version: "1.2"
- name: yaml
version: "3.10"
handlers:
- url: /_ah/queue/deferred
script: djangoappengine.deferred.handler.application
login: ... | application: bingobuzzword
version: 1
runtime: python27
api_version: 1
threadsafe: yes
builtins:
- remote_api: on
inbound_services:
- warmup
libraries:
- name: yaml
version: "3.10"
handlers:
- url: /_ah/queue/deferred
script: djangoappengine.deferred.handler.application
login: admin
- url: /_ah/stats/.*
sc... | Remove django 1.2 from library dependencies. | Remove django 1.2 from library dependencies.
| YAML | bsd-3-clause | seanfisk/buzzword-bingo-server,seanfisk/buzzword-bingo-server |
ca28f2d0d7429aa36891f47461830a3bf29f985f | automations/living_room_lights.yaml | automations/living_room_lights.yaml | - alias: 'Turn Living Room Ceiling Light on when there is Movement'
trigger:
platform: state
entity_id: binary_sensor.living_room_motion_sensor_occupancy
from: 'off'
to: 'on'
condition:
condition: or
conditions:
- condition: state
entity_id: input_select.bed_mode
state:... | - alias: 'Turn Living Room Ceiling Light on when there is Movement'
trigger:
platform: state
entity_id: binary_sensor.living_room_motion_sensor_occupancy
from: 'off'
to: 'on'
condition:
condition: or
conditions:
- condition: state
entity_id: input_select.bed_mode
state:... | Fix name of living room automation | Fix name of living room automation
| YAML | mit | davidorlea/homeassistant-config,davidorlea/homeassistant-config,davidorlea/homeassistant-config |
a3c39f084404de976b73cfc76e4231c455a5b177 | build.yaml | build.yaml | repositories:
remote:
- http://repo1.maven.org/maven2
artifacts:
javax_servlet: org.apache.geronimo.specs:geronimo-servlet_3.0_spec:jar:1.0
javax_annotation: com.google.code.findbugs:jsr305:jar:2.0.1
gwt_user: com.google.gwt:gwt-user:jar:2.5.1
gwt_dev: com.google.gwt:gwt-dev:jar:2.5.1
javax_validation:... | repositories:
remote:
- http://repo1.maven.org/maven2
artifacts:
javax_servlet: org.apache.geronimo.specs:geronimo-servlet_3.0_spec:jar:1.0
javax_annotation: com.google.code.findbugs:jsr305:jar:2.0.1
gwt_user: com.google.gwt:gwt-user:jar:2.5.1
gwt_dev: com.google.gwt:gwt-dev:jar:2.5.1
javax_validation:... | Upgrade the version of appcache in use | Upgrade the version of appcache in use
| YAML | apache-2.0 | realityforge/gwt-appcache-example,realityforge/gwt-appcache-example,realityforge/gwt-appcache-example |
3cbd14fda47b72a7ece7d76593480bdb0af2534b | docker-compose/config/selenium.yml | docker-compose/config/selenium.yml | test:
remote_url_firefox: http://seleniumff.docker/wd/hub
remote_url_chrome: http://seleniumch.docker/wd/hub
browser: firefox
| test:
remote_url_firefox: http://seleniumff.docker/wd/hub
remote_url_chrome: http://seleniumch.docker/wd/hub
browser: chrome
| Add chrome to docker-compose config as default | Add chrome to docker-compose config as default
Change-Id: Ie12f15d3093cdbb6c1f60de7eb62d2987250006e
Reviewed-on: https://gerrit.instructure.com/114481
Tested-by: Jenkins
Reviewed-by: Simon Williams <088e16a1019277b15d58faf0541e11910eb756f6@instructure.com>
Product-Review: Gentry Beckmann <f487939f789774cca922ca5b88663... | YAML | agpl-3.0 | djbender/canvas-lms,instructure/canvas-lms,djbender/canvas-lms,venturehive/canvas-lms,instructure/canvas-lms,venturehive/canvas-lms,venturehive/canvas-lms,venturehive/canvas-lms,instructure/canvas-lms,sfu/canvas-lms,sfu/canvas-lms,djbender/canvas-lms,sfu/canvas-lms,sfu/canvas-lms,instructure/canvas-lms,sfu/canvas-lms,i... |
471b68a4ebd93c0b936adec894e848abeef95d9b | tests/common_tests.yml | tests/common_tests.yml | ---
# Tests for base-packages role
- name: If user disable installation of packages, install nothing
fail:
msg: "User disable ipackage installation but Packages installed"
when:
- base_packages_test_disable_installation
- base_packages_installed is defined
- debug:
var: base_packages_install
- n... | ---
# Tests for base-packages role
- name: If user disable installation of packages, install nothing
fail:
msg: "User disable ipackage installation but Packages installed"
when:
- base_packages_test_disable_installation
- base_packages_installed is defined
- debug:
var: base_packages_install
- n... | Add compatibility for test when conditions | Add compatibility for test when conditions
| YAML | mit | infOpen/ansible-role-base-packages |
ab99c2b6725c09faa6cd94a842641928e7d613a6 | app.yaml | app.yaml | application: apptscout
version: 1
runtime: python27
api_version: 1
threadsafe: true
handlers:
- url: /_ah/(mapreduce|queue|warmup).*
script: scout.wsgi.application
login: admin
secure: always
- url: /static/admin/
static_dir: sitepackages/django/contrib/admin/static/admin/
secure: always
# Set Django admi... | application: apptscout
version: 1
runtime: python27
api_version: 1
threadsafe: true
handlers:
- url: /_ah/(mapreduce|queue|warmup).*
script: scout.wsgi.application
login: admin
secure: always
- url: /static/admin/
static_dir: sitepackages/django/contrib/admin/static/admin/
secure: always
- url: /static/
s... | Support static files in production. | Support static files in production.
| YAML | mit | meizon/scout,meizon/scout,meizon/scout,meizon/scout |
b80f3b4f3269f03eb4ed9499fd024c40b7028132 | wercker.yml | wercker.yml | box: wercker/python
build:
steps:
- virtualenv:
name: Setup virtual environment
- pip-install:
name: Install requirements
auto_run_wheel: True
- script:
name: Run unit testing
code: |
python setup.py test
after-steps:
- sherzberg/slack-notify:
... | box: wercker/python
build:
steps:
- virtualenv:
name: Setup virtual environment
- pip-install:
name: Install requirements
auto_run_wheel: True
- script:
name: Run unit testing
code: |
python setup.py test
after-steps:
- sherzberg/slack-notify:
... | Fix Wercker notifications to Slack | Fix Wercker notifications to Slack
| YAML | mit | nikdoof/dropbot,nikdoof/dropbot |
43d7f7737502a677fc2647aa65f41ca3ac69f077 | build.yaml | build.yaml | repositories:
remote:
- http://repo1.maven.org/maven2
artifacts:
javax_javaee: javax:javaee-api:jar:7.0
javax_annotation: com.google.code.findbugs:jsr305:jar:2.0.1
gwt_user: com.google.gwt:gwt-user:jar:2.5.1
gwt_dev: com.google.gwt:gwt-dev:jar:2.5.1
javax_validation: javax.validation:validation-api:jar... | repositories:
remote:
- http://repo1.maven.org/maven2
artifacts:
javax_javaee: javax:javaee-api:jar:7.0
javax_annotation: com.google.code.findbugs:jsr305:jar:2.0.1
gwt_user: com.google.gwt:gwt-user:jar:2.6.0
gwt_dev: com.google.gwt:gwt-dev:jar:2.6.0
javax_validation: javax.validation:validation-api:jar... | Move to the latest release of GWT | Move to the latest release of GWT
| YAML | apache-2.0 | realityforge/gwt-eventsource-example,realityforge/gwt-eventsource-example,realityforge/gwt-eventsource-example |
9f092598de5f7487e35d813eb4c22c7a24aad661 | spec/javascripts/support/jasmine.yml | spec/javascripts/support/jasmine.yml | src_files:
- lib/deps/jquery-1.8.js
- lib/deps/json2.js
- lib/deps/require.js
- lib/tetra.js
- lib/mod/require/client.js
- lib/mod/tmpl/client-micro-tmpl.js
- lib/tetra-view.js
- lib/tetra-controller.js
- lib/tetra-model.js
- spec/javascripts/specs/core/conf/viadeo-webapp.js
- spec/javascripts/lib... | src_files:
- lib/deps/jquery-1.8.js
- lib/deps/json2.js
- lib/deps/require.js
- lib/tetra.js
- lib/mod/require/client.js
- lib/mod/tmpl/client-micro-tmpl.js
- lib/tetra-view.js
- lib/tetra-controller.js
- lib/tetra-model.js
- spec/javascripts/specs/core/conf/viadeo-webapp.js
- spec/javascripts/lib... | Add controller tests to test suite | Add controller tests to test suite
| YAML | mit | viadeo/tetra,viadeo/tetra |
861f9224e0be9c64d6aad7140084bb5b843128b5 | roles/st2/meta/main.yml | roles/st2/meta/main.yml | ---
galaxy_info:
description: Install StackStorm and all its components
author: armab
company: StackStorm
license: Apache
min_ansible_version: 1.9
platforms:
- name: Ubuntu
versions:
- trusty
- precise
categories:
- system
dependencies:
- role: epel
when: ansible_os_fam... | ---
galaxy_info:
description: Install StackStorm and all its components
author: armab
company: StackStorm
license: Apache 2.0
min_ansible_version: 1.9
platforms:
- name: Ubuntu
versions:
- trusty
- precise
- name: EL
versions:
- 6
- 7
categories:
- s... | Include EL platforms for 'st2' role | Include EL platforms for 'st2' role
| YAML | apache-2.0 | StackStorm/ansible-st2,armab/ansible-st2 |
a5d51e04c647273f2d57eaa31833bc57766e54c9 | wercker.yml | wercker.yml | box: golang:alpine
no-response-timeout: 20
services:
- boostport/hbase-phoenix-all-in-one:1.1.5-4.7.0
build:
steps:
- setup-go-workspace
# Set up enviroment variable
- script:
name: set up environment variables
code: |
export AVATICA_HOST=http://$PHOENIX_HBASE_ALL_IN_ONE_P... | box:
id: golang:alpine
cmd: /bin/sh
no-response-timeout: 20
services:
- boostport/hbase-phoenix-all-in-one:1.1.5-4.7.0
build:
steps:
- setup-go-workspace
# Set up enviroment variable
- script:
name: set up environment variables
code: |
export AVATICA_HOST=http://$PHOEN... | Use sh for alpine builds. | Use sh for alpine builds.
| YAML | apache-2.0 | Boostport/calcite-avatica-go,Boostport/calcite-avatica-go |
ef521102ce49854ed430baefb48cbac1895d475a | build.yaml | build.yaml | repositories:
remote:
- http://repo1.maven.org/maven2
artifacts:
javax_naming: geronimo:geronimo-naming:jar:1.1.1
| repositories:
remote:
- https://repo1.maven.org/maven2
artifacts:
javax_naming: geronimo:geronimo-naming:jar:1.1.1
| Use SSL to access maven repository. | Use SSL to access maven repository.
| YAML | apache-2.0 | realityforge/jndikit,realityforge/jndikit,realityforge/jndikit |
78be97d55c2d15bc4d4b73836fffae8b135f5f13 | packages/qu/quickcheck-classes.yaml | packages/qu/quickcheck-classes.yaml | homepage: https://github.com/andrewthad/quickcheck-classes#readme
changelog-type: ''
hash: 54a5916e462cfce6782f3f43dc824846592371230ec8f66b8bfa1e709297a241
test-bench-deps:
base: -any
quickcheck-classes: -any
tagged: -any
transformers: -any
QuickCheck: -any
aeson: -any
primitive: -any
vector: -any
maint... | homepage: https://github.com/andrewthad/quickcheck-classes#readme
changelog-type: ''
hash: cdd8f1303d884524c4673a5cc70d1617ebfcae27956f99248f9e7e5fadabbd7a
test-bench-deps:
base: -any
quickcheck-classes: -any
tagged: -any
transformers: -any
QuickCheck: -any
aeson: -any
primitive: -any
vector: -any
maint... | Update from Hackage at 2018-03-22T01:27:05Z | Update from Hackage at 2018-03-22T01:27:05Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
4a82df27f6d39485ec8ea7e1599d51b1ff3bc0d9 | .rubocop.yml | .rubocop.yml | require: rubocop-rspec
AllCops:
RunRailsCops: true
Exclude:
- example/db/**/*
- example/config/**/*
- search_object.gemspec
# Disables "Line is too long"
LineLength:
Enabled: false
# Disables "Missing top-level class documentation comment"
Documentation:
Enabled: false
# Disables "Use each_with_... | require: rubocop-rspec
AllCops:
RunRailsCops: true
Exclude:
- example/db/**/*
- example/config/**/*
- search_object.gemspec
# Disables "Module definition is too long"
ModuleLength:
Enabled: false
# Disables "Line is too long"
LineLength:
Enabled: false
# Disables "Missing top-level class documen... | Disable ModuleTooLong cop. Breaking on spec file | Disable ModuleTooLong cop. Breaking on spec file
| YAML | mit | RStankov/MiniForm |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.