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 |
|---|---|---|---|---|---|---|---|---|---|
fca62c482735c3ffc7cb84b4b73813827fb2b085 | .travis.yml | .travis.yml | language: php
php:
- 5.5
- 5.6
- hhvm
before_script:
- bash -c 'if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then wget https://scrutinizer-ci.com/ocular.phar; fi;'
- composer install
script:
- bash -c 'if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then vendor/bin/codecept run unit --coverage-xml; fi;'
- bash -c '... | language: php
php:
- 5.5
- 5.6
- hhvm
before_script:
- bash -c 'if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then wget https://scrutinizer-ci.com/ocular.phar; fi;'
- composer self-update
- composer install
script:
- bash -c 'if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then vendor/bin/codecept run unit --coverag... | Make sure travi's composer is up to date | Make sure travi's composer is up to date
| YAML | mit | stevewest/changelog |
9fe101326b93391ca7e7fd54c9c5732092aa7859 | .travis.yml | .travis.yml | language: objective-c
osx_image: xcode9
before_install:
- gem update fastlane --no-ri --no-rdoc --no-document
- git remote set-url origin "https://${GITHUB_TOKEN}@github.com/uias/Pageboy.git"
script:
- .travis/build.sh
after_success:
- bash <(curl -s https://codecov.io/bash)
notifications:
email: false | language: objective-c
osx_image: xcode9
before_install:
- gem install cocoapods
- gem update fastlane --no-ri --no-rdoc --no-document
- git remote set-url origin "https://${GITHUB_TOKEN}@github.com/uias/Pageboy.git"
script:
- .travis/build.sh
after_success:
- bash <(curl -s https://codecov.io/bash)
notifications:
em... | Add update CocoaPods pre build step | Add update CocoaPods pre build step
| YAML | mit | uias/Pageboy,uias/Pageboy |
b6bb0a4eeb14bd63ef655506240f6ac7432aa0ba | .travis.yml | .travis.yml | language: node_js
node_js:
- node
- iojs
- 4
before_install:
- sudo add-apt-repository ppa:thomas-schiex/blender
- sudo apt-get update
- sudo apt-get install blender wget
- wget https://github.com/BabylonJS/Babylon.js/raw/ebcda2bcb71cce1bc7febedaacf0f2c9d4602a90/Exporters/Blender/Blender2Baby... | language: node_js
node_js:
- node
- iojs
- 4
before_install:
- sudo add-apt-repository ppa:thomas-schiex/blender -y
- sudo apt-get update
- sudo apt-get install blender wget -y
- wget https://github.com/BabylonJS/Babylon.js/raw/ebcda2bcb71cce1bc7febedaacf0f2c9d4602a90/Exporters/Blender/Blende... | Add -y option to apt-get as necessary. | Add -y option to apt-get as necessary.
| YAML | mit | binki/node-babylonjs-blender,binki/node-babylonjs-blender |
7710f29a18d45075a64ba7d2a0756c8c020c85cb | .travis.yml | .travis.yml | sudo: false
language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
- 7
before_install:
- if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then composer require satooshi/php-coveralls:^1.0 --no-update; fi;
install:
- composer update --prefer-source
before_script:
- mkdir -p build/logs
script:
... | sudo: false
language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
- 7.0
- 7.1
before_install:
- if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then composer require satooshi/php-coveralls:^1.0 --no-update; fi;
install:
- composer update --prefer-source
before_script:
- mkdir -p build/lo... | Include PHP 7.1 in test builds | Include PHP 7.1 in test builds
| YAML | bsd-3-clause | console-helpers/console-kit |
88c3e204aff8b8b7fbd5fc85d6298c85a1004cc1 | .travis.yml | .travis.yml | sudo: false
language: php
cache:
directories:
- $HOME/.composer/cache
- vendor
matrix:
fast_finish: true
include:
- php: 5.5
env:
- EXECUTE_CS_CHECK=true
- php: 5.6
env:
- EXECUTE_TEST_COVERALLS=true
- php: 7
- php: hhvm
allow_failures:
- php: 7
- ... | sudo: false
language: php
cache:
directories:
- $HOME/.composer/cache
- vendor
matrix:
fast_finish: true
include:
- php: 5.5
env:
- EXECUTE_CS_CHECK=true
- php: 5.6
env:
- EXECUTE_TEST_COVERALLS=true
- php: 7
- php: hhvm
allow_failures:
- php: 7
- ... | Use stable version of php-coveralls | Use stable version of php-coveralls
And remove --no-update flag preempively in case someone commits a composer.lock and blocks the installation with it. | YAML | bsd-3-clause | zendframework/zend-expressive-router |
d863597a32d24904db15b4801abdffd60731bbe8 | _config.yml | _config.yml | # Welcome to Jekyll!
#
# This config file is meant for settings that affect your whole blog, values
# which you are expected to set up once and rarely need to edit after that.
# For technical reasons, this file is *NOT* reloaded automatically when you use
# 'jekyll serve'. If you change this file, please restart the se... | # Welcome to Jekyll!
#
# This config file is meant for settings that affect your whole blog, values
# which you are expected to set up once and rarely need to edit after that.
# For technical reasons, this file is *NOT* reloaded automatically when you use
# 'jekyll serve'. If you change this file, please restart the se... | Update Helmet version to 4.4.1 | Update Helmet version to 4.4.1
| YAML | mit | helmetjs/helmetjs.github.io,helmetjs/helmetjs.github.io |
2b6ec31542279663f732af31b95264b3e8b03514 | _config.yml | _config.yml | # Site settings
title: Autolab Project Blog
email: autolab-dev@andrew.cmu.edu
description: > # this means to ignore newlines until "baseurl:"
Read on for releases news, feature spotlights, development insights, and
more!
baseurl: "" # the subpath of your site, e.g. /blog/
url: "https://autolab.github.io" # the base... | # Site settings
title: Autolab Project Blog
email: autolab-dev@andrew.cmu.edu
description: > # this means to ignore newlines until "baseurl:"
Read on for release news, feature spotlights, development insights, and
more!
baseurl: "" # the subpath of your site, e.g. /blog/
url: "https://autolab.github.io" # the base ... | Change description and compress scss files | Change description and compress scss files
| YAML | apache-2.0 | autolab/autolab.github.io,autolab/autolab.github.io |
c36383973731cf96be9d65a0c0f29627fe8c9269 | _config.yml | _config.yml | title: Dave Jachimiak
description: Blog
canonical: https://davej.io
baseurl: /
# Owner/author information
owner:
name: Dave Jachimiak
avatar: dave.jpg
bio: "guy"
email: dave.jachimiak@gmail.com
twitter: davejachimiak
github: davejachimiak
location: "Cambridge, MA"
# Plug in your disqus shortname!
# L... | title: Dave Jachimiak
description: Blog
canonical: https://davej.io
baseurl: /davejachimiak.github.io
# Owner/author information
owner:
name: Dave Jachimiak
avatar: dave.jpg
bio: "guy"
email: dave.jachimiak@gmail.com
twitter: davejachimiak
github: davejachimiak
location: "Cambridge, MA"
# Plug in your... | Use repo name for baseurl | Use repo name for baseurl
| YAML | mit | davejachimiak/davejachimiak.github.io,davejachimiak/davejachimiak.github.io,davejachimiak/davejachimiak.github.io |
000ac430a1c5980230d9111c3d193d881bc75961 | _config.yml | _config.yml | # website name; shown in page title and copyright
name: 42bytes/Timber
logo: Timber
# meta tag information
author: Graeme Russell
description: An open-source Jekyll theme provided by 42bytes.com
# optional path to favicon
favicon:
# how many (if any) share options to show at bottom of post (max 12)
# the share lin... | # website name; shown in page title and copyright
name: 42bytes/Timber
logo: Timber
# meta tag information
author: Graeme Russell
description: An open-source Jekyll theme provided by 42bytes.com
# optional path to favicon
favicon:
# how many (if any) share options to show at bottom of post (max 12)
# the share lin... | Add *.sass to excludes for _site | Add *.sass to excludes for _site
| YAML | mit | bytes42/timber |
cc66302c5a3634650aab866a18d3289bec40ed5e | _config.yml | _config.yml | title: Local Preservation School
description: Tools, resources, and tutorials on saving historic places in your community
url: http://localpast.school
baseurl: ""
paginate_path: "blog/page:num/"
permalink: blog/:title/
markdown: redcarpet
highlighter: pygments
paginate: 5
navigation:
- title: Home
url: /index.ht... | title: Local Preservation School
description: Tools, resources, and tutorials on saving historic places in your community
url: http://localpreservation.github.io
baseurl: ""
paginate_path: "blog/page:num/"
permalink: blog/:title/
markdown: redcarpet
highlighter: pygments
paginate: 5
navigation:
- title: Home
url... | Revert url back to github.io | Revert url back to github.io | YAML | mit | localpreservation/localpreservation.github.io,localpreservation/localpreservation.github.io |
ad9dfca56aa1782d7a05259572eee11ce3f7c8c0 | _config.yml | _config.yml | # Site settings
title: Your awesome title
description: >
Write an awesome description for your new site here. You can edit this
line in _config.yml. It will appear in your document head meta (for
Google search results) and in your feed.xml site description.
url: https://yyl29.gith... | # Site settings
title: Your awesome title
description: >
Write an awesome description for your new site here. You can edit this
line in _config.yml. It will appear in your document head meta (for
Google search results) and in your feed.xml site description.
url: https://yyl29.gith... | Exclude Gemfile, LICENSE and Rakefile in build | Exclude Gemfile, LICENSE and Rakefile in build
| YAML | mit | yyl29/jekyll-blog,yyl29/jekyll-blog,yyl29/jekyll-blog |
5d2838f74491ab3c184b4a4f83ba29f5bc83beda | _config.yml | _config.yml | name: lmgonzalves
description: I am a front-end developer (HTML5, CSS3, SASS, Bootstrap, JavaScript, jQuery, AngularJS). And I also like to develop back-end APIs (NodeJS and Django).
url: http://lmgonzalves.github.io
markdown: redcarpet
highlighter: pygments # or rouge or null
exclude: ["node_modules", "gulpfile.js", "... | name: lmgonzalves
description: I am a front-end developer (HTML5, CSS3, SASS, Bootstrap, JavaScript, jQuery, AngularJS). And I also like to develop back-end APIs (NodeJS and Django).
url: http://lmgonzalves.github.io
highlighter: pygments # or rouge or null
exclude: ["node_modules", "gulpfile.js", "package.json"]
pagin... | Update markdown processor to kramdown | Update markdown processor to kramdown
| YAML | mit | lmgonzalves/lmgonzalves.github.io,lmgonzalves/lmgonzalves.github.io |
591eaced924929e572e4d19e5d573876a7826a24 | _config.yml | _config.yml | name: Bedford Lab Research
description: Science updates on evolution, epidemiology and immunology from the Bedford lab at the Fred Hutch
url: http://bedford.io
markdown: redcarpet
highlighter: pygments
permalink: /:categories/:title/
redcarpet:
extensions:
- tables
- no_intra_emphasis
- autolink
- supe... | name: Bedford Lab Research
description: Science updates on evolution, epidemiology and immunology from the Bedford lab at the Fred Hutch
url: http://bedford.io
markdown: redcarpet
highlighter: pygments
permalink: /:categories/:title/
redcarpet:
extensions:
- tables
- no_intra_emphasis
- autolink
- supe... | Fix bug in Jekyll compiling. | Fix bug in Jekyll compiling.
| YAML | mit | AustenLamacraft/austenlamacraft.github.io,AustenLamacraft/austenlamacraft.github.io,AustenLamacraft/austenlamacraft.github.io |
920ffe6dfa9efee0c8be4583c25201e09ac3dedc | _config.yml | _config.yml | # Dependencies
markdown: kramdown
highlighter: true
# Permalinks
permalink: pretty
# Setup
title: Prajjwal Bhandari
tagline: ''
description: 'Student. Coder. Caffiene Addict.'
url: http://pbhandari.ca
baseurl: /
author:
name: 'Prajjwal... | # Dependencies
markdown: kramdown
highlighter: true
# Permalinks
permalink: pretty
# Setup
title: Prajjwal Bhandari
tagline: ''
description: 'Student. Coder. Caffiene Addict.'
url: http://pbhandari.ca
baseurl: /
author:
name: 'Prajjwal Bh... | Add links for pgp key and email | Add links for pgp key and email
| YAML | mit | pbhandari/pbhandari.github.io |
3f72b9f8385edbb35ee3a1a9fbaaeb7eed30458f | _config.yml | _config.yml | title: Yair, JavaScript Rockstar
author: Yair Rodriguez
keywords: Yair, Frontend, Architect, Design, JavaScript, Rockstar
email: rodriguezortega.yair@gmail.com
description: >
Yair is a Genius Front End Architect and a JavaScript Rockstar, designing
systems to people can communicate with machines.
baseurl: ""
url: ... | title: Yair, JavaScript Rockstar
author: Yair Rodriguez
keywords: Yair, Frontend, Architect, Design, JavaScript, Rockstar
email: rodriguezortega.yair@gmail.com
description: >
Yair is a Genius Front End Architect and a JavaScript Rockstar, designing
systems to people can communicate with machines.
baseurl: ""
url: ... | Add the correct protocol for Open Graph tags. | [fix] Add the correct protocol for Open Graph tags.
| YAML | mit | yairodriguez/yairodriguez.github.io,yairodriguez/yairodriguez.github.io,yairodriguez/yairodriguez.github.io |
b5e8be6f18435f2a632bb2a3dd9f099d0390254e | _config.yml | _config.yml | # Site settings
title: 'Thomas Maroulis'
description: 'I am a software team lead in London'
description2: 'Also foodie, sci-fi literature reader, space geek, general geek, etc.'
url: 'https://www.thomasmaroulis.com'
enforce_ssl: 'www.thomasmaroulis.com'
baseurl: '/'
# enforce_ssl: ''
# google_analytics: 'UA-XXXXXX-X'
#... | # Site settings
title: 'Thomas Maroulis'
description: 'I am a software team lead in London'
description2: 'Also foodie, sci-fi literature reader, space geek, general geek, etc.'
url: 'https://www.thomasmaroulis.com'
enforce_ssl: 'www.thomasmaroulis.com'
baseurl: '/'
google_analytics: 'UA-89411902-1'
# disqus_shortname:... | Add Google Analytics tracking ID | Add Google Analytics tracking ID
| YAML | mit | Dalamar42/dalamar42.github.io,Dalamar42/dalamar42.github.io,Dalamar42/dalamar42.github.io,Dalamar42/dalamar42.github.io |
10a5737d79473bc1510212f2623ea07229185b56 | _config.yml | _config.yml | title: FiniteMachine Ruby gem
description: > # this means to ignore newlines until "baseurl:"
Write an awesome description for your new site here. You can edit this
line in _config.yml. It will appear in your document head meta (for
Google search results) and in your feed.xml site description.
baseurl: ""
highlig... | title: FiniteMachine Ruby gem
description: > # this means to ignore newlines until "baseurl:"
Write an awesome description for your new site here. You can edit this
line in _config.yml. It will appear in your document head meta (for
Google search results) and in your feed.xml site description.
baseurl: ""
highlig... | Change to make relative base url. | Change to make relative base url.
| YAML | mit | peter-murach/finite_machine.github.io,peter-murach/finite_machine.github.io |
af91b35a06e25471dec84bfc19d8fd65d1ba5014 | _config.yml | _config.yml | markdown: kramdown
sass:
style: :compressed
kramdown:
input: GFM
auto_ids: true
footnote_nr: 1
entity_output: as_char
toc_levels: 1..6
smart_quotes: lsquo,rsquo,ldquo,rdquo
enable_coderay: false
syntax_highlighter: rouge
exclude:
- bin
- vendor
- LICENSE.txt
- README.md
- TODO
- Gemfile
... | markdown: kramdown
sass:
style: :compressed
kramdown:
input: GFM
auto_ids: true
footnote_nr: 1
entity_output: as_char
toc_levels: 1..6
smart_quotes: lsquo,rsquo,ldquo,rdquo
enable_coderay: false
syntax_highlighter: rouge
exclude:
- bin
- vendor
- LICENSE.txt
- README.md
- TODO
- Gemfile
... | Configure feed title and description | Configure feed title and description
| YAML | mit | sorentwo/sorentwo.github.io,sorentwo/sorentwo.github.io |
4eaab2ccd55829d959c6e5a750477d5cce88e52f | _config.yml | _config.yml | # Site settings
title: MolView
email: info@molview.org
author: Herman Bergwerf
description: MolView is an intuitive, Open-Source web-application to make chemistry and biology more awesome!
baseurl: http://blog.molview.org
url: http://blog.molview.org
# Optional features
animated: ... | # Site settings
title: MolView
email: info@molview.org
author: Herman Bergwerf
description: MolView is an intuitive, Open-Source web-application to make chemistry and biology more awesome!
baseurl: http://blog.molview.org
url: http://blog.molview.org
# Optional features
animated: ... | Set markdown engine to kramdown | Set markdown engine to kramdown
| YAML | mit | molview/molview-blog,molview/molview-blog,molview/molview-blog,molview/molview-blog |
916f92a3918da8c27e7e24c1164078790b560026 | _config.yml | _config.yml | name: (emacs-berlin)
highlighter: pygments
markdown: kramdown
kramdown:
input: GFM
| name: (emacs-berlin)
highlighter: rouge
markdown: kramdown
kramdown:
input: GFM
| Change jekyll highlighter to rouge | Change jekyll highlighter to rouge
Got this mail from GitHub:
You are attempting to use the 'pygments' highlighter, which is currently
unsupported on GitHub Pages. Your site will use 'rouge' for highlighting
instead. To suppress this warning, change the 'highlighter' value to
'rouge' in your '_config.yml'. For more i... | YAML | cc0-1.0 | emacs-berlin/emacs-berlin.org,emacs-berlin/emacs-berlin.org,emacs-berlin/emacs-berlin.org |
18e9d51ed762b02b7c140734b0f09825dd8123fe | _config.yml | _config.yml | # Site settings
title: CityCampCHA
email: brigade@openchattanooga.com
description: CityCampCHA is an unconference focused on innovation for municipal governments and community organizations.
baseurl: "" # the subpath of your site, e.g. /blog/
url: "https://citycampcha.com" # the base hostname & protocol for your site
d... | # Site settings
title: CityCampCHA
email: brigade@openchattanooga.com
description: CityCampCHA is an unconference focused on innovation for municipal governments and community organizations. As an unconference, content for CityCampCHA is not programmed for a passive audience. Content is created and organized by partici... | Change description back to original. | Change description back to original.
| YAML | mit | openchattanooga/citycampcha |
1e306bce001e8173d9e3953958f8ab712af1b5d9 | _config.yml | _config.yml | # Site wide configuration
title: Site Title
locale: en_US
description: Describe your website here.
logo: site-logo.png
search: true
url:
# Jekyll configuration
permalink: /:categories/:title/
markdown: kramdown
highlighter: pygments
sass:
sass_dir: _sass
style: compressed
gems:
- jekyll-sitemap
kramdow... | # Site wide configuration
title: Site Title
locale: en_US
description: Describe your website here.
logo: site-logo.png
search: true
url:
# Jekyll configuration
permalink: /:categories/:title/
markdown: kramdown
highlighter: pygments
sass:
sass_dir: _sass
style: compressed
gems:
- jekyll-sitemap
kramdow... | Include examples for social media links | Include examples for social media links
| YAML | mit | jcdavison/blog.antipattern.io,grubdragon/erc-website-jekyll,dlebauer/so-simple-theme,duyn/duyn.github.io,packsaddle/easy.packsaddle.org,dakoo/so-simple-theme,metrophp/metrophp.github.io,wetty/wetty.github.io,paparaeluiza/paparaeluiza.github.io,foxsofter/foxsofter,modtoolz/modtoolz.github.io,mister-raindrop/mister-raind... |
afdb5dccb50362afa1782dbbb2d10d4169c633cd | _config.yml | _config.yml | # Site settings
title: UI Guidelines
description: Front-end coding guidelines for Bright Interactive
baseurl: "/ui-guidelines/" # the subpath of your site, e.g. /blog/
url: "http://brightinteractive.github.io" # the base hostname & protocol for your site
twitter_username: brightinteract
github_username: jekyl... | # Site settings
title: UI Guidelines
description: Front-end coding guidelines for Bright Interactive
baseurl: "/ui-guidelines" # the subpath of your site, e.g. /blog/
url: "http://brightinteractive.github.io" # the base hostname & protocol for your site
twitter_username: brightinteract
github_username: jekyll... | Remove trailing slash from baseURL | Remove trailing slash from baseURL
As described here:http://jekyllrb.com/docs/github-pages/
| YAML | mit | brightinteractive/ui-guidelines,brightinteractive/ui-guidelines,brightinteractive/ui-guidelines |
b7208c7e5c27f26826fa49cf2b2c29713a4ace76 | _config.yml | _config.yml | # Welcome to Jekyll!
#
# This config file is meant for settings that affect your whole blog, values
# which you are expected to set up once and rarely need to edit after that.
# For technical reasons, this file is *NOT* reloaded automatically when you use
# 'jekyll serve'. If you change this file, please restart the se... | # Welcome to Jekyll!
#
# This config file is meant for settings that affect your whole blog, values
# which you are expected to set up once and rarely need to edit after that.
# For technical reasons, this file is *NOT* reloaded automatically when you use
# 'jekyll serve'. If you change this file, please restart the se... | Change blog title to my name | Change blog title to my name
| YAML | cc0-1.0 | krutisfood/krutisfood.github.io,krutisfood/krutisfood.github.io |
d28b5289c8673857d3a91e513d367f00e06a6abd | _config.yml | _config.yml | # Dependencies
pygments: false
# Permalinks
permalink: pretty
# Settings
destination: ./_gh_pages
exclude: ["README.md"]
paginate: 10
encoding: UTF-8
future: false
name: Built With Ember
url: http://builtwithember.io
| # Dependencies
pygments: false
# Permalinks
permalink: pretty
# Settings
markdown: kramdown
destination: ./_gh_pages
exclude: ["README.md"]
paginate: 10
encoding: UTF-8
future: false
name: Built With Ember
url: http://builtwithemb... | Update markdown processor to kramdown | Update markdown processor to kramdown
| YAML | mit | jpadilla/built-with-ember,kellysutton/built-with-ember,jpadilla/built-with-ember,toddjordan/built-with-ember,1024inc/built-with-ember,GetBlimp/built-with-ember,GetBlimp/built-with-ember,toddjordan/built-with-ember,nicolaschenet/built-with-ember,kellysutton/built-with-ember,nicolaschenet/built-with-ember |
5ee2fb6349944cf6b0dd4506ef36c322f0f5dc01 | _config.yml | _config.yml | name: Revath S Kumar
description: "Alone I can't make this world better, so I do open source."
markdown: redcarpet
pygments: true
url: http://blog.revathskumar.com
permalink: '/:year/:month/:title.html'
excerpt_separator: "\n\n"
| name: Revath S Kumar
description: "Alone I can't make this world better, so I do open source."
markdown: redcarpet
highlighter: true
url: http://blog.revathskumar.com
permalink: '/:year/:month/:title.html'
excerpt_separator: "\n\n"
| Update pygments config key with higlighter | Update pygments config key with higlighter
| YAML | mit | revathskumar/blog.revathskumar.com,revathskumar/blog.revathskumar.com,revathskumar/blog.revathskumar.com |
fd7ec2e7505352ca5cfd20d60e42dab7a019a559 | _config.yml | _config.yml | # top level stuff you probably don't need to touch
highlighter: pygments
markdown: rdiscount
rdiscount:
extensions: [smart]
permalink: /:title.html
paginate: 5
gems: [jekyll-paginate]
port: 3000
safe: true
# edit here to achieve your personal greatness
url: http://sadhu89.github.io/
baseurl: ""
title: Carlos Rojas
... | # top level stuff you probably don't need to touch
highlighter: pygments
markdown: rdiscount
rdiscount:
extensions: [smart]
permalink: /:title.html
paginate: 5
gems: [jekyll-paginate]
port: 3000
safe: true
# edit here to achieve your personal greatness
url: http://sadhu89.github.io/
baseurl: ""
title: Carlos Rojas
... | Update google analytics tracking code | Update google analytics tracking code
| YAML | mit | sadhu89/sadhu89.github.io,sadhu89/sadhu89.github.io,sadhu89/sadhu89.github.io |
3ec61dfcd79d7a77ce9806758dd4227a0e747862 | _config.yml | _config.yml | # Site settings
title: Shablog
email: mail@sabhiram.com
description: >
A collection of ponderous ponderings
baseurl: ""
url: "http://sabhiram.com"
twitter_username: shaba_abhiram
github_username: sabhiram
# Build settings
kramdown:
input: GFM
defaults:
-
scope:
path: ""
type: "posts"
... | # Site settings
title: Shablog
email: mail@sabhiram.com
description: >
A collection of ponderous ponderings
baseurl: ""
url: "http://sabhiram.com"
twitter_username: shaba_abhiram
github_username: sabhiram
# Build settings
kramdown:
input: GFM
defaults:
-
scope:
path: ""
type: "posts"
... | Remove open/closeQuote from the config | Remove open/closeQuote from the config
| YAML | mit | sabhiram/sabhiram.github.io,sabhiram/sabhiram.github.io |
fe224bc6552690e2506e89c82452baf3242780ae | _config.yml | _config.yml | # Site settings
language: ""
title: "Site Title"
description: "Site description"
google-verification: ""
# Handling Reading
include:
- ".htaccess"
- "_pages"
exclude:
- "/assets/"
- "bower.json"
- "composer.json"
- "composer.lock"
- "DOC.md"
- "Gemfile"
-... | # Site settings
language: ""
title: "Site Title"
description: "Site description"
google-verification: ""
# Handling Reading
include:
- ".htaccess"
- "_pages"
exclude:
- "/assets/"
- "bower.json"
- "composer.json"
- "composer.lock"
- "DOC.md"
- "Gemfile"
-... | Disable compress_html for development environment | Disable compress_html for development environment
| YAML | mit | core77/jekyll-foundation,parsfibernet/fibernet-ir-official,lifeflowercare/lifeflower,Foundation-for-Jekyll-sites/jekyll-foundation,core77/jekyll-foundation,core77/jekyll-foundation,lifeflowercare/lifeflower,Foundation-for-Jekyll-sites/jekyll-foundation,Foundation-for-Jekyll-sites/jekyll-foundation,lifeflowercare/lifefl... |
7649da5b252e45770c167f978808bcde7499b750 | _config.yml | _config.yml | # Header
menu:
## If your site is put in a subdirectory, set Home as '/child/'
Home: /
Archives: archives
social:
email:
twitter:
weibo:
github:
googleplus:
rss: /atom.xml
# Content
fancybox: true # set to true if you want to use it
duoshuo: #duoshuo_shortname
disqus: #disqus _shortname
google_anal... | # Header
menu:
## If your site is put in a subdirectory, set Home as '/child/'
Home: /
Archives: archives
social:
email:
twitter:
weibo:
github:
googleplus:
rss: /atom.xml
# Content
fancybox: true # set to true if you want to use it
duoshuo: #duoshuo_shortname
disqus: #disqus _shortname
google_anal... | Change config comment to English | Change config comment to English
| YAML | mit | lotabout/very-simple |
a601e3c3194cd31408fc41afb6ba3f45883b179e | _config.yml | _config.yml | # Header
menu:
Home: /
Archives: /archives
rss: /atom.xml
# Content
excerpt_link: Read More
fancybox: true
# Sidebar
sidebar: right
widgets:
- category
- tag
- tagcloud
- archive
- recent_posts
# Miscellaneous
google_analytics:
favicon: /favicon.png
twitter:
google_plus:
fb_admins:
fb_app_id: | # Header
menu:
Home: /
Archives: /archives/
Java Tutorials: /java/
rss: /atom.xml
# Content
excerpt_link: Read More
fancybox: true
# Sidebar
sidebar: false
widgets:
- category
- tag
- tagcloud
- archive
- recent_posts
# Miscellaneous
google_analytics: UA-599349-1
favicon: /favicon.png
twitter:
google_plus:
fb_... | Save local configuration into git | Save local configuration into git
| YAML | mit | SykieChen/hexo-theme-hic17,howiefh/hexo-theme-landscape-f,JLHwung/hexo-theme-landscape,SykieChen/hexo-theme-hic17,1PxUp/Naji,takeshik/hexo-theme-landscape,sandinmyjoints/hexo-theme-landscape,cgmartin/hexo-theme-bootstrap-blog,takeshik/hexo-theme-landscape,howiefh/hexo-theme-landscape-f,sandinmyjoints/hexo-theme-landsca... |
9131c7bb2e5d34c8e828e7cc62d8962213778618 | _config.yml | _config.yml | # Site settings
title: Electron
email: electron@atom.io
description: Cross Platform Application Shell
url: http://electron.atom.io
twitter_username: AtomEditor
github_username: atom
# Build settings
markdown: kramdown
| # Site settings
title: Electron
email: electron@atom.io
description: Cross Platform Application Shell
baseurl: http://electron.atom.io
twitter_username: AtomEditor
github_username: atom
# Build settings
markdown: kramdown
| Set baseurl so script/server works | Set baseurl so script/server works
| YAML | mit | mnquintana/electron.atom.io,TianJinRong/electron.atom.io,dahmian/dahmian.github.io,Kaizhi/electron.atom.io,pmcalabrese/electron.atom.io,sabeehmurtaza9/electron.atom.io,Kaizhi/electron.atom.io,simurai/electron.atom.io,mnquintana/electron.atom.io,RandScullard/electron.atom.io,simurai/electron.atom.io,sabeehmurtaza9/elect... |
75125e397d6974dc7ac8d23b0b052771f72fb306 | packages/cs/css-syntax.yaml | packages/cs/css-syntax.yaml | homepage: ''
changelog-type: ''
hash: a909c779524f80e24e73a91ade7cd645a7eb6cf46571c442798ab4db07c534e3
test-bench-deps:
bytestring: -any
base: ! '>=4 && <5'
hspec: -any
text: -any
attoparsec: ! '>=0.13'
scientific: -any
directory: -any
maintainer: tomas.carnecky@gmail.com
synopsis: This package implments ... | homepage: ''
changelog-type: ''
hash: 0412a4267ae891e23f4de98e2138f330dbd0dc342416b778668b7b2745d9f58e
test-bench-deps:
bytestring: -any
base: ! '>=4 && <5'
hspec: -any
text: -any
attoparsec: ! '>=0.13'
scientific: -any
directory: -any
maintainer: tomas.carnecky@gmail.com
synopsis: This package implments ... | Update from Hackage at 2018-08-17T20:14:48Z | Update from Hackage at 2018-08-17T20:14:48Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
74a17ca0bc05a65cf794aa0e077a6803fd552394 | Resources/config/intl.yml | Resources/config/intl.yml | parameters:
darvin_utils.intl.twig_extension.class: Twig_Extensions_Extension_Intl
services:
darvin_utils.intl.twig_extension:
class: %darvin_utils.intl.twig_extension.class%
tags:
- { name: twig.extension }
| parameters:
darvin_utils.intl.twig_extension.class: Twig_Extensions_Extension_Intl
services:
darvin_utils.intl.twig_extension:
class: %darvin_utils.intl.twig_extension.class%
public: false
tags:
- { name: twig.extension }
| Make Intl Twig extension private. | Make Intl Twig extension private.
| YAML | mit | DarvinStudio/DarvinUtilsBundle |
b80c5556f723b019275a163b8c8b40d0d244f471 | packages/co/coin.yaml | packages/co/coin.yaml | homepage: https://bitbucket.org/borekpiotr/coin
changelog-type: ''
hash: 116a29c830b74a44130ac1cfeba2eb0b5ffa54504b1befd68b3f8db6c4f7bade
test-bench-deps: {}
maintainer: Piotr Borek <piotrborek@op.pl>
synopsis: Simple account manager
changelog: ''
basic-deps:
bytestring: -any
base: ! '>=4.8 && <5.0'
time: -any
... | homepage: https://bitbucket.org/borekpiotr/coin
changelog-type: ''
hash: d652c80be8aa6a05ab1cbe74feb91ed27dd34413272501a734c82cb486c41452
test-bench-deps: {}
maintainer: Piotr Borek <piotrborek@op.pl>
synopsis: Simple account manager
changelog: ''
basic-deps:
bytestring: -any
base: ! '>=4.8 && <5.0'
time: -any
... | Update from Hackage at 2016-12-02T18:13:42Z | Update from Hackage at 2016-12-02T18:13:42Z | YAML | mit | commercialhaskell/all-cabal-metadata |
8cc50ab3eb6a0c18b0865500513d1a391f138cca | packages/mc/mcl.yaml | packages/mc/mcl.yaml | homepage: ''
changelog-type: ''
hash: 83f5ffc7a7dc60864fe53641b859426c5865b6044e788720fd9d7df30be448d2
test-bench-deps:
groups: -any
bytestring: -any
test-framework: -any
mcl: -any
base: <5
test-framework-quickcheck2: -any
criterion: -any
binary: -any
deepseq: -any
QuickCheck: -any
maintainer: andrz... | homepage: ''
changelog-type: ''
hash: 02a6819febe104926b5ddd767ce57adbd77dd3e24938f48af04f2515b2bcc979
test-bench-deps:
groups: -any
bytestring: -any
test-framework: -any
mcl: -any
base: <5
test-framework-quickcheck2: -any
criterion: -any
binary: -any
deepseq: -any
QuickCheck: -any
maintainer: andrz... | Update from Hackage at 2017-05-09T21:23:02Z | Update from Hackage at 2017-05-09T21:23:02Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
b4d71a9a8d96d8dc15b7d0553e1f7e138d10e13b | packages/ju/judy.yaml | packages/ju/judy.yaml | homepage: http://github.com/mwotton/judy
changelog-type: ''
hash: 809ce53fd6b02e1fc5a220cc01e249a33647feeb3e261fd868853371cf631ae6
test-bench-deps:
base: -any
hspec: -any
judy: -any
QuickCheck: -any
maintainer: Mark Wotton <mwotton@gmail.com>
synopsis: Fast, scalable, mutable dynamic arrays, maps and hashes
cha... | homepage: http://github.com/mwotton/judy
changelog-type: ''
hash: 0d2a63ab67dbc8a2e7c85a8837b5de5874e2fec113928c6780f17bcfcd3c9356
test-bench-deps:
base: -any
hspec: -any
judy: -any
QuickCheck: -any
maintainer: Mark Wotton <mwotton@gmail.com>
synopsis: Fast, scalable, mutable dynamic arrays, maps and hashes
cha... | Update from Hackage at 2016-02-14T15:21:00+0000 | Update from Hackage at 2016-02-14T15:21:00+0000
| YAML | mit | commercialhaskell/all-cabal-metadata |
e4abe4cf09c2c9260b7c3be9d2a3bc51646ca1b5 | logger.yaml | logger.yaml | ---
loggers:
file:
class: file
filename: mt.log
#1MB
size: 1048576
max: 6
types:
info:
logger: file
ansi_color:
- green
- on_black
warning:
logger: file
ansi_color:
- yellow
- on_black
... | ---
loggers:
log:
class: file
filename: mt.log
#1MB
size: 1048576
max: 6
query:
class: file
filename: query.log
#1MB
size: 1048576
max: 6
trace:
class: file
filename: trace.log
#1MB
size: 1048576
... | Change default log file name. | Change default log file name.
| YAML | mit | usualoma/mt-plugin-log-exporter |
bb896940d6716466dc7ea3822380b53f7461a6fc | packages/op/optional-args.yaml | packages/op/optional-args.yaml | homepage: ''
changelog-type: ''
hash: 42f31b6f3cf9586b12835165f33836506d48fc5238f66bae33b2cf70c4b604af
test-bench-deps: {}
maintainer: Gabriel439@gmail.com
synopsis: Optional function arguments
changelog: ''
basic-deps:
base: ! '>=4.5 && <5'
all-versions:
- '1.0.0'
author: Gabriel Gonzalez
latest: '1.0.0'
description... | homepage: ''
changelog-type: ''
hash: 5bafb6a2a8c74ed72112750d07381f2ddc46f814eb9f157619ad286b3e55a244
test-bench-deps: {}
maintainer: Gabriel439@gmail.com
synopsis: Optional function arguments
changelog: ''
basic-deps:
base: ! '>=4.5 && <5'
all-versions:
- '1.0.0'
- '1.0.1'
author: Gabriel Gonzalez
latest: '1.0.1'
d... | Update from Hackage at 2016-04-16T04:40:13+0000 | Update from Hackage at 2016-04-16T04:40:13+0000
| YAML | mit | commercialhaskell/all-cabal-metadata |
0ba77c50bd67c5e426b5ba1c36d9277b1795c281 | test-integration/commands.yml | test-integration/commands.yml | - description: Command help should display help information
command: ../../../../../bin/breaker --help
exitcode: 0
output: 'Usage: breaker'
- description: Command init should create sample Breaker hosts file
command: ../../../../../bin/breaker init
exitcode: 0
output: 'Creating sample Breaker hosts file: .... | - params:
breaker: ../../../../../bin/breaker
- description: Command help should display help information
command: '{breaker} --help'
exitcode: 0
output: 'Usage: breaker'
- description: Command init should create sample Breaker hosts file
command: '{breaker} init'
exitcode: 0
output: 'Creating sample ... | Simplify integration test by using param for command path. | Simplify integration test by using param for command path.
| YAML | mit | cliffano/breaker |
14571983333adce390553a2280abaed8e792d76a | .forestry/front_matter/templates/vmware-tools-10-3-0-abort-mission.yml | .forestry/front_matter/templates/vmware-tools-10-3-0-abort-mission.yml | ---
label: Article
hide_body: false
is_partial: false
fields:
- name: layout
label: Layout
type: text
hidden: false
default: post
- name: title
label: Title
type: text
hidden: false
default: ''
- type: datetime
| ---
label: Article
hide_body: false
is_partial: false
fields:
- name: layout
label: Layout
type: text
hidden: false
default: post
- name: title
label: Title
type: text
hidden: false
default: ''
- type: datetime
name: DATE
| 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 |
1a64a8bb1be4a48992c52ca712ec6efcd04a4565 | azure-pipelines.web.yaml | azure-pipelines.web.yaml | trigger:
batch: false
branches:
include: ["master"]
paths:
include:
[
"azure-pipelines.web.yaml",
"src/FilterLists.Web/*",
".dockerignore",
"docker-compose.yml",
"docker-compose.prod.yml",
]
pr:
autoCancel: false
branches:
include: ["master"]
... | trigger:
batch: false
branches:
include: ["master"]
paths:
include:
[
"azure-pipelines.web.yaml",
"src/FilterLists.Web/*",
".dockerignore",
"docker-compose.yml",
"docker-compose.prod.yml",
]
pr:
autoCancel: false
branches:
include: ["master"]
... | Revert "try not specifying connection in build phase" | Revert "try not specifying connection in build phase"
This reverts commit c735b4945ce45eef3f1d866038a9318b057066a4.
| YAML | mit | collinbarrett/FilterLists,collinbarrett/FilterLists,collinbarrett/FilterLists,collinbarrett/FilterLists,collinbarrett/FilterLists |
863cd079ebe986b90ae6ba4b287d58cce3c1fd69 | codecov.yml | codecov.yml | coverage:
status:
project:
default:
# Allow coverage to drop by as much as 2% from the parent commit or pull request base
threshold: 2
patch:
default:
threshold: 2
changes:
default:
threshold: 2
| coverage:
status:
project:
default:
# Allow coverage to drop by as much as 2% from the parent commit or pull request base
threshold: 2
patch:
default:
threshold: 2
| Disable the "changes" status from CodeCov | Disable the "changes" status from CodeCov
| YAML | mit | atom/github,atom/github,atom/github |
4fae2cc37f78ced325259e105f3261b1732e90b1 | data/site.yml | data/site.yml | language: "en-us"
name: "Euro Team Outreach"
url: "http://euroteamoutreach.org"
human_url: "euroteamoutreach.org"
title: "Euro Team Outreach - Missionaries serving Christ in Ukraine"
description: >
Euro Team Outreach is a Christian organization dedicated to the
advancement of the Gospel of Jesus Christ. We believe ... | language: "en-us"
name: "Euro Team Outreach"
url: "https://euroteamoutreach.org"
human_url: "euroteamoutreach.org"
title: "Euro Team Outreach - Missionaries serving Christ in Ukraine"
description: >
Euro Team Outreach is a Christian organization dedicated to the
advancement of the Gospel of Jesus Christ. We believe... | Correct url. (http > https) | Correct url. (http > https)
| YAML | mit | euroteamoutreach/euroteamoutreach.org,euroteamoutreach/euroteamoutreach.org,euroteamoutreach/euroteamoutreach.org,euroteamoutreach/euroteamoutreach.org |
72036634ac1de749d799f3294c368a2b9e3be728 | packages/do/doctest-exitcode-stdio.yaml | packages/do/doctest-exitcode-stdio.yaml | homepage: https://hub.darcs.net/thielema/doctest-exitcode-stdio/
changelog-type: ''
hash: 7af215015a215ffa74dd8104707cac10d689fa43ef6cd26529f181a17cafcde6
test-bench-deps: {}
maintainer: Henning Thielemann <haskell@henning-thielemann.de>
synopsis: Run doctest's in a Cabal.Test.exitcode-stdio environment
changelog: ''
b... | homepage: https://hub.darcs.net/thielema/doctest-exitcode-stdio/
changelog-type: ''
hash: a34619492781c17817f3af9f4f409335c7d0f8751b5ac4aaa1f01bc816d2c580
test-bench-deps: {}
maintainer: Henning Thielemann <haskell@henning-thielemann.de>
synopsis: Run doctest's in a Cabal.Test.exitcode-stdio environment
changelog: ''
b... | Update from Hackage at 2021-11-18T00:08:34Z | Update from Hackage at 2021-11-18T00:08:34Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
34f67a54a0b145108e14d6c9f90ca5ca355c40c0 | packages/ht/html-presentation-text.yaml | packages/ht/html-presentation-text.yaml | homepage: ''
changelog-type: markdown
hash: 0e0069cb74ee0718966f563507fe0055c9446f958e41197ae5f49a0e970e945b
test-bench-deps: {}
maintainer: olexandr543@yahoo.com
synopsis: Simple tool to create html presentation for text.
changelog: "# Revision history for html-presentation-text\n\n## 0.1.0.0 -- 2022-01-18\n\n*
Firs... | homepage: ''
changelog-type: markdown
hash: 44cf02cb47bd156bdbb04d177a1c530ee64a9ee1e48186570707f8b46ba4906f
test-bench-deps: {}
maintainer: olexandr543@yahoo.com
synopsis: Simple tool to create html presentation for text.
changelog: "# Revision history for html-presentation-text\n\n## 0.1.0.0 -- 2022-01-18\n\n*
Firs... | Update from Hackage at 2022-01-21T13:09:31Z | Update from Hackage at 2022-01-21T13:09:31Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
c7b95e0081482a2bcf06748b5c95c10496120eef | rails/locales/tr.yml | rails/locales/tr.yml | tr:
errors:
messages:
carrierwave_processing_error: işlenmesi sırasında hata oluştu
carrierwave_integrity_error: izin verilebilir bir dosya türü değil
carrierwave_download_error: indirilemedi
extension_whitelist_error: "%{extension} uzantılı dosyaları yükleme izniniz yok, izin verilen uzan... | tr:
errors:
messages:
carrierwave_processing_error: işlenmesi sırasında hata oluştu
carrierwave_integrity_error: izin verilebilir bir dosya türü değil
carrierwave_download_error: indirilemedi
extension_whitelist_error: "%{extension} uzantılı dosyaları yükleme izniniz yok, izin verilen uzan... | Fix grammar error for TR locale file | Fix grammar error for TR locale file
It is a common grammar mistake. | YAML | mit | carrierwaveuploader/carrierwave-i18n |
a2e8efcc1c6923e83dbf8f4e25d8a08ad2c1f823 | recipes/stringtie/meta.yaml | recipes/stringtie/meta.yaml | about:
home: http://ccb.jhu.edu/software/stringtie/
license: Artistic License 2.0
summary: Transcriptome assembly and quantification for RNA-seq
build:
number: 1
package:
name: stringtie
version: 1.3.3
requirements:
build:
- gcc # [linux]
- llvm # [osx]
- zlib
run:
- libgcc # [l... | about:
home: http://ccb.jhu.edu/software/stringtie/
license: Artistic License 2.0
summary: Transcriptome assembly and quantification for RNA-seq
build:
number: 1
package:
name: stringtie
version: 1.3.3
requirements:
build:
- gcc # [linux]
- llvm # [osx]
- zlib
- gnu-wget
run:
-... | Add gnu-wget as runtime dependency | Add gnu-wget as runtime dependency | YAML | mit | zachcp/bioconda-recipes,bioconda/recipes,matthdsm/bioconda-recipes,ivirshup/bioconda-recipes,zachcp/bioconda-recipes,rob-p/bioconda-recipes,HassanAmr/bioconda-recipes,daler/bioconda-recipes,matthdsm/bioconda-recipes,abims-sbr/bioconda-recipes,rvalieris/bioconda-recipes,omicsnut/bioconda-recipes,keuv-grvl/bioconda-recip... |
79f92be19709c36d033a8daa100ab332dddf28ec | roles/osx/defaults/main.yml | roles/osx/defaults/main.yml | ---
osx:
brew:
taps:
- caskroom/cask
- caskroom/versions
packages:
- ansible
- autojump
- brew-cask
- cowsay
- fish
- fortune
- reattach-to-user-namespace
- terminal-notifier
- tmux
custom_packages:
- name: emacs
options:
... | ---
osx:
brew:
taps:
- caskroom/cask
- caskroom/versions
packages:
- ansible
- autojump
- brew-cask
- cowsay
- fish
- fortune
- reattach-to-user-namespace
- terminal-notifier
- tmux
custom_packages:
- name: emacs
options:
... | Install VLC on OS X hosts by default. | Install VLC on OS X hosts by default.
| YAML | mit | alloy-d/alloy-d.nyc |
b86b488c1809549e46b00e2bcecba20072bba4b3 | buildspecs/noop.yml | buildspecs/noop.yml | version: 0.2
phases:
install:
runtime-versions:
java: openjdk8
build:
commands:
- echo "No-op." | version: 0.2
phases:
build:
commands:
- echo "No-op." | Remove runtime from no-op buildspec. | Remove runtime from no-op buildspec.
Runtimes aren't needed, and the runtimes available depend on the image, so we shouldn't depend on any specific runtime so that we can use the no-op buildspec on any image.
| YAML | apache-2.0 | aws/aws-sdk-java-v2,aws/aws-sdk-java-v2,aws/aws-sdk-java-v2,aws/aws-sdk-java-v2,aws/aws-sdk-java-v2 |
3ebca1f58faa1474ca4f8e3c18f2f742fdcb341e | templates/infrastructure-warden.yml | templates/infrastructure-warden.yml | meta:
environment: vault-warden
stemcell:
name: bosh-warden-boshlite-ubuntu-trusty-go_agent
version: latest
persistent_disk: 4096
update:
canaries: 1
max_in_flight: 50
canary_watch_time: 1000-30000
update_watch_time: 1000-30000
jobs:
- name: vault
instances: 1
networks:
- name: ... | meta:
environment: vault-warden
stemcell:
name: bosh-warden-boshlite-ubuntu-trusty-go_agent
version: latest
persistent_disk: 4096
update:
canaries: 1
max_in_flight: 50
canary_watch_time: 1000-30000
update_watch_time: 1000-30000
jobs:
- name: vault
instances: 1
networks:
- name: ... | Move CI/CD for vault-warden test (IP collisions ftw!) | Move CI/CD for vault-warden test (IP collisions ftw!)
| YAML | apache-2.0 | cloudfoundry-community/vault-boshrelease,z4ce/vault-boshrelease,cloudfoundry-community/vault-boshrelease,z4ce/vault-boshrelease,cloudfoundry-community/vault-boshrelease,z4ce/vault-boshrelease,cloudfoundry-community/vault-boshrelease |
63f94827888c5517da328f3ebfe7363abfe68e1f | packages/dt/dtab.yaml | packages/dt/dtab.yaml | homepage: ''
changelog-type: ''
hash: ae47c927f9fee82b5ed672e6e82d75b5856dc30d320cd7998a9754f93fcd01ee
test-bench-deps: {}
maintainer: miketolly@gmail.com
synopsis: Harmonix (Guitar Hero, Rock Band) DTA/DTB metadata library
changelog: ''
basic-deps:
bytestring: ! '>=0.10.0.2 && <0.11'
base: ! '>=4.6 && <4.9'
dtab... | homepage: ''
changelog-type: ''
hash: 41b11012de0a2e76323056b9843fad195da0360f64b407d511e71de49d44fa26
test-bench-deps: {}
maintainer: miketolly@gmail.com
synopsis: Harmonix (Guitar Hero, Rock Band) DTA/DTB metadata library
changelog: ''
basic-deps:
bytestring: ! '>=0.10.0.2'
base: ! '>=4.6 && <4.12'
dtab: -any
... | Update from Hackage at 2018-04-28T02:46:41Z | Update from Hackage at 2018-04-28T02:46:41Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
41f4f02fb3571ae8998d46ed96a52596efb49d57 | gemspec.yml | gemspec.yml | name: combinatorics
summary: Bringing (more) Combinatorics to Ruby
description:
A collection of modules and methods for performing Combinatoric
calculations.
license: MIT
authors:
- Postmodern
- Duper
email:
- postmodern.mod3@gmail.com
- super@manson.vistech.net
homepage: https://github.com/postmodern/combinato... | name: combinatorics
summary: Bringing (more) Combinatorics to Ruby
description:
A collection of modules and methods for performing Combinatoric
calculations.
license: MIT
authors:
- Postmodern
- Duper
email:
- postmodern.mod3@gmail.com
- super@manson.vistech.net
homepage: https://github.com/postmodern/combinato... | Replace development dependencies with just bundler ~> 2.0. | Replace development dependencies with just bundler ~> 2.0.
| YAML | mit | postmodern/combinatorics |
feed7b4cfd860bdc9f5b4efc2ca2af76cb01d55d | ci/geminstaller.yml | ci/geminstaller.yml | ---
gems:
- name: geminstaller
version: >= 0.4.3
- name: fcgi
version: >= 0.8.7
- name: memcache-client
version: >= 1.5.0
- name: mocha
version: >= 0.9.4
- name: mysql
#version: >= 2.7
version: = 2.7
- name: postgres
version: >= 0.7.9.2008.01.28
- name: rack
version: '~> 0.9.0'
- name: rake
version: >... | ---
gems:
- name: geminstaller
version: >= 0.4.3
- name: fcgi
version: >= 0.8.7
- name: memcache-client
version: >= 1.5.0
- name: mocha
version: >= 0.9.4
- name: mysql
#version: >= 2.7
version: = 2.7
- name: pg
version: >= 0.7.9.2008.10.13
- name: rack
version: '~> 0.9.0'
- name: rake
version: >= 0.8.... | Move to use pg instead of postgres on the CI server | Move to use pg instead of postgres on the CI server
| YAML | mit | Envek/rails,georgeclaghorn/rails,gavingmiller/rails,mtsmfm/rails,schuetzm/rails,lucasmazza/rails,ttanimichi/rails,marklocklear/rails,pschambacher/rails,mohitnatoo/rails,illacceptanything/illacceptanything,yasslab/railsguides.jp,bolek/rails,jeremy/rails,voray/rails,schuetzm/rails,Spin42/rails,maicher/rails,odedniv/rails... |
e4479b2f1bc54edf155408d51dd3236955150ce1 | activerecord/test/fixtures/pirates.yml | activerecord/test/fixtures/pirates.yml | blackbeard:
catchphrase: "Yar."
parrot: george
redbeard:
catchphrase: "Avast!"
parrot: louis
created_on: <%= 2.weeks.ago.to_s(:db) %>
updated_on: <%= 2.weeks.ago.to_s(:db) %>
| blackbeard:
catchphrase: "Yar."
parrot: george
redbeard:
catchphrase: "Avast!"
parrot: louis
created_on: <%= 2.weeks.ago.utc.to_s(:db) %>
updated_on: <%= 2.weeks.ago.utc.to_s(:db) %>
| Fix failure in test_preserves_existing_fixture_data from test/cases/fixtures_test.rb when UTC and local time occur on different dates. | Fix failure in test_preserves_existing_fixture_data from test/cases/fixtures_test.rb when UTC and local time occur on different dates.
| YAML | mit | mathieujobin/reduced-rails-for-travis,xlymian/rails,mtsmfm/rails,illacceptanything/illacceptanything,pvalena/rails,yasslab/railsguides.jp,odedniv/rails,betesh/rails,gfvcastro/rails,sergey-alekseev/rails,sergey-alekseev/rails,voray/rails,lucasmazza/rails,ngpestelos/rails,starknx/rails,yhirano55/rails,printercu/rails,elf... |
c5e430be4c2a050fd03e5951b0fda8938053ee2d | packages/br/bronyradiogermany-common.yaml | packages/br/bronyradiogermany-common.yaml | homepage: ''
changelog-type: markdown
hash: 0e9d65628fab677a5d6a14381ddf8fa975fcbb8097e5a5566e048d4f0af882e9
test-bench-deps: {}
maintainer: darcs@mcohrs.eu
synopsis: Common types and URIs for the BronyRadioGermany API bindings.
changelog: ! '# Revision history for bronyradiogermany
## 0.1.0.0 -- YYYY-mm-dd
* ... | homepage: ''
changelog-type: markdown
hash: 23134b720430513bcd98e8d7e56786ae88e133babfb1993908e04e76b1fc5a0f
test-bench-deps: {}
maintainer: darcs@mcohrs.eu
synopsis: Common types and URIs for the BronyRadioGermany API bindings.
changelog: ! '# Revision history for bronyradiogermany
## 0.1.0.0 -- YYYY-mm-dd
* ... | Update from Hackage at 2018-04-11T19:51:03Z | Update from Hackage at 2018-04-11T19:51:03Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
5a0a1b3d7a5b5d633027b0543292e06c8ba9cf0a | ansible/roles/openshift/tasks/main.yml | ansible/roles/openshift/tasks/main.yml | ---
- name: Setup installation pre-requisites
include: prereqs.yml
- name: Run main OpenShift Ansible installation playbook
include: install.yml
- name: Post installation bespoking
include: postinstall.yml
| ---
- block:
- name: Setup installation pre-requisites
include: prereqs.yml
- name: Run main OpenShift Ansible installation playbook
include: install.yml
- name: Post installation bespoking
include: postinstall.yml
environment:
PATH: "{{ ansible_env.PATH }}:/usr/local/bin/"
| Add /usr/local/bin to path as openshift binaries are installed there now | Add /usr/local/bin to path as openshift binaries are installed there now
| YAML | mit | wicksy/vagrant-openshift,wicksy/vagrant-openshift,wicksy/vagrant-openshift |
65deebe2d3a15c331fad253383235bc27ae49a6d | ansible/roles/db/tasks/main.yml | ansible/roles/db/tasks/main.yml | - apt_key: url=http://apt.postgresql.org/pub/repos/apt/ACCC4CF8.asc state=present
- apt_repository: repo='deb http://apt.postgresql.org/pub/repos/apt/ {{ansible_distribution_release}}-pgdg main 9.3' state=present
- apt: pkg={{item}} state=latest update_cache=yes
with_items:
- postgresql-client-9.3
- postgresq... | - apt_key: url=http://apt.postgresql.org/pub/repos/apt/ACCC4CF8.asc state=present
- apt_repository: repo='deb http://apt.postgresql.org/pub/repos/apt/ {{ansible_distribution_release}}-pgdg main 9.3' state=present
- apt: pkg={{item}} state=latest update_cache=yes
with_items:
- postgresql-client-9.3
- postgresq... | Make sure database server is started | Make sure database server is started
| YAML | mit | vmalloc/mailboxer,getslash/mailboxer,vmalloc/mailboxer,Infinidat/lanister,vmalloc/mailboxer,getslash/mailboxer,Infinidat/lanister,getslash/mailboxer |
8d99f7ad18938a6c93695ee24d4ec473ad7af78e | config/browsers.yml | config/browsers.yml | minimums:
chrome: 67
safari: 11
firefox: 68
ie: 12
| minimums:
chrome: 76
safari: 11
firefox: 68
ie: 12
| Update minimum Chrome version to 76 | Update minimum Chrome version to 76
Current version of Chrome is 78; Firefox is 70
CLOSES: DOC-1154
Test plan:
- specs pass
Change-Id: I29466e7fe5ae0908fa11a54788d0537658bb9a8c
Reviewed-on: https://gerrit.instructure.com/c/canvas-lms/+/218451
Tested-by: Service Cloud Jenkins <9144042a601061f88f1e1d7a1753ea3e2972119... | YAML | agpl-3.0 | instructure/canvas-lms,djbender/canvas-lms,instructure/canvas-lms,instructure/canvas-lms,sfu/canvas-lms,djbender/canvas-lms,djbender/canvas-lms,sfu/canvas-lms,sfu/canvas-lms,instructure/canvas-lms,sfu/canvas-lms,instructure/canvas-lms,djbender/canvas-lms,instructure/canvas-lms,instructure/canvas-lms,sfu/canvas-lms,sfu/... |
85d7e1d5668c5961d34a033b7d3b4704fa56ef63 | config/database.yml | config/database.yml | # SQLite version 3.x
# gem install sqlite3
#
# Ensure the SQLite 3 gem is defined in your Gemfile
# gem 'sqlite3'
#
default: &default
adapter: postgresql
pool: 5
timeout: 5000
encoding: unicode
development:
<<: *default
database: rethink_development
username: <%= ENV['POSTGRES_USERNAME'] %>
passw... | # SQLite version 3.x
# gem install sqlite3
#
# Ensure the SQLite 3 gem is defined in your Gemfile
# gem 'sqlite3'
#
default: &default
adapter: postgresql
pool: 5
timeout: 5000
encoding: unicode
development:
<<: *default
database: rethink_development
username: <%= ENV['POSTGRES_USERNAME'] %>
passw... | Use template0 as base template | Use template0 as base template
| YAML | agpl-3.0 | FiloSpaTeam/thinks,FiloSpaTeam/thinks,FiloSpaTeam/thinks |
976b379d4934a167fc58a03e6064c17887dc709d | config/releaser.yml | config/releaser.yml | releaser.maven.build-command: ./scripts/integration-tests.sh
releaser.maven.deploy-command: ./mvnw dockerfile:push -pl :spring-cloud-kubernetes-configuration-watcher -Pdockerpush && ./mvnw deploy -DskipTests -B -Pfast,deploy {{systemProps}}
| releaser.maven.build-command: ./scripts/integration-tests.sh
releaser.maven.deploy-command: ./mvnw deploy -DskipTests -B -Pfast,deploy {{systemProps}} && ./mvnw dockerfile:push -pl :spring-cloud-kubernetes-configuration-watcher -Pdockerpush
| Revert "Updating release command so that central profile is added last" | Revert "Updating release command so that central profile is added last"
This reverts commit 7053a00702c98dcfe3524abbedb76e9754029e9f.
| YAML | apache-2.0 | spring-cloud-incubator/spring-cloud-kubernetes |
ebc1936079faae02ce968caa8fda988d4efc15b7 | config/settings.yml | config/settings.yml | property_types: ['STRING', 'INTEGER', 'DATE']
validators: ['', 'PARTICIPANT_ID', 'CENTER_ID']
minimum_android_version_code: 1
exception_notifications:
email_prefix: '[LSTracker] '
sender: 'noreply@chpir.org'
recipients: ['michael@chpir.org', 'leonard@chpir.org']
| property_types: ['STRING', 'INTEGER', 'DATE']
validators: ['', 'PARTICIPANT_ID', 'CENTER_ID', 'CHILD_ID', 'CAREGIVER_ID']
minimum_android_version_code: 1
exception_notifications:
email_prefix: '[LSTracker] '
sender: 'noreply@chpir.org'
recipients: ['michael@chpir.org', 'leonard@chpir.org']
| Add child id and caregiver id validator | Add child id and caregiver id validator
| YAML | mit | kodvinci/participant_tracker,kodvinci/participant_tracker,DukeMobileTech/participant_tracker,DukeMobileTech/participant_tracker,DukeMobileTech/participant_tracker,kodvinci/participant_tracker |
3298c1dabb95d5f1b5714d48f478bd502ba9a2af | docs/.forestry/settings.yml | docs/.forestry/settings.yml | ---
new_page_extension: md
auto_deploy: false
admin_path:
webhook_url:
sections:
- type: jekyll-posts
label: Posts
create: all
- type: jekyll-pages
label: Pages
create: all
upload_dir: docs/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-posts
label: Posts
create: all
- type: jekyll-pages
label: Pages
create: all
upload_dir: docs/assets
public_path: "/assets"
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 | preciousforever/sketch-data-populator |
155a63109e6764aee03e333be5eed70ca50db9c9 | .github/workflows/main.yml | .github/workflows/main.yml | name: CI
on: [push, pull_request]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
php: [7.4]
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
- name:... | name: CI
on:
push: ~
pull_request: ~
workflow_dispatch: ~
schedule:
- cron: '37 6 * * 5'
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
php: [7.4]
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php... | Allow running Actions manually and run once a week | Allow running Actions manually and run once a week
| YAML | mit | Codeception/AspectMock |
b9279b9a707824678f9fd0e06df8bde752694c76 | .github/workflows/main.yml | .github/workflows/main.yml | name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
fail-fast: false
steps:
- uses: actions/checkout@v3
- name: Set up JDK
uses... | name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
fail-fast: false
steps:
- uses: actions/checkout@v3
- name: Set up JDK
uses... | Bump actions/setup-java from 2 to 3 | Bump actions/setup-java from 2 to 3
Bumps [actions/setup-java](https://github.com/actions/setup-java) from 2 to 3.
- [Release notes](https://github.com/actions/setup-java/releases)
- [Commits](https://github.com/actions/setup-java/compare/v2...v3)
---
updated-dependencies:
- dependency-name: actions/setup-java
depe... | YAML | bsd-2-clause | teverett/musicbrainztagger,teverett/musicbrainztagger |
7784d6618b41ccedee1e80f3b4dd2ed2c0fd7f5c | .github/workflows/ruby.yml | .github/workflows/ruby.yml | name: Build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
ruby: ['2.5', '2.6', '2.7']
steps:
- uses: actions/checkout@v2
- name: Set up Ruby versions
... | name: Build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
ruby: ['2.5', '2.6', '2.7']
steps:
- uses: actions/checkout@v2
- name: Set up Ruby versions
... | Update branch name in Github action | Update branch name in Github action
| YAML | mit | citizen428/methodfinder,citizen428/methodfinder |
599deda9c0a30443830def0a7de83686d218c4b0 | .github/workflows/test.yml | .github/workflows/test.yml | name: Test on push and PR
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses... | name: Test on push and PR
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses... | Update actions/checkout action to v3 | Update actions/checkout action to v3
| YAML | mit | zrrrzzt/difi |
c6a8d742d977a3e23231157eb79df92a2c6bc11e | .github/workflows/test.yml | .github/workflows/test.yml | ---
name: Test
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Ruby 2.7
uses: actions/setup-ruby@v1
with:
ruby-version: 2.7.x
- name: Ruboc... | ---
name: Test
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
lint:
strategy:
fail-fast: false
matrix:
ruby:
- '2.7'
- '3.0'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Ruby 2.... | Test on Ruby 2.7 & 3.0 w/ Rake | chore: Test on Ruby 2.7 & 3.0 w/ Rake
Use the new Rake task for RuboCop, plus add matrixed builds to ensure
this works on Ruby 2.7 & Ruby 3.0.
Uses the officially supported rubo/setup-ruby Action, instead of the
deprecated actions/setup-ruby.
Drop using the stale andrewmcodes/rubocop-linter-action Action in favor
of... | YAML | mit | evertrue/cronitor,evertrue/cronitor |
8869cdb3ace401c3ed3a4060eb553da97f75553e | .github/workflows/test.yml | .github/workflows/test.yml | name: Test
on: [push, pull_request]
jobs:
build:
name: build (Python ${{ matrix.python-version }}, Django ${{ matrix.django-version }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
max-parallel: 5
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10']
django-version... | name: Test
on: [push, pull_request]
jobs:
build:
name: build (Python ${{ matrix.python-version }}, Django ${{ matrix.django-version }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
max-parallel: 5
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10']
django-version... | Exclude missing tox envs from CI | Exclude missing tox envs from CI
| YAML | agpl-3.0 | dsanders11/django-newsletter,dsanders11/django-newsletter,dsanders11/django-newsletter |
dbca1ec57f9ff59cd327863f73a6ac6307360355 | .github/workflows/test.yml | .github/workflows/test.yml | name: CI
on: [push, pull_request]
jobs:
run_test:
runs-on: ubuntu-latest
env:
CC: clang
steps:
- name: Checkout
uses: actions/checkout@v2
with:
submodules: recursive
- name: Checkout vn3d
uses: actions/checkout@v2
with:
repository: sh... | name: CI
on: [push, pull_request]
jobs:
run_test:
runs-on: ubuntu-latest
env:
CC: clang
steps:
- name: Checkout
uses: actions/checkout@v2
with:
submodules: recursive
- name: Checkout vn3d
uses: actions/checkout@v2
with:
repository: sh... | Use clang 13 for build | Use clang 13 for build
| YAML | bsd-2-clause | shamazmazum/voxvision,shamazmazum/voxvision |
f3555f246e33fe19277a42b3f30d2a9cc35cb56c | packages/co/compendium-client.yaml | packages/co/compendium-client.yaml | homepage: https://github.com/higherkindness/mu-haskell
changelog-type: ''
hash: 044afaf629dafa4bee356e0fcb6e5101b8fab674d39338334f9e0848df4efe73
test-bench-deps: {}
maintainer: alejandro.serrano@47deg.com
synopsis: Client for the Compendium schema server
changelog: ''
basic-deps:
http-client: -any
base: ! '>=4.12 &... | homepage: https://higherkindness.io/mu-haskell/
changelog-type: ''
hash: 2b0fdc8af79aedded7b5d9655389c0ea6b5595f77a74758be7b0ae9b5c1bf986
test-bench-deps: {}
maintainer: alejandro.serrano@47deg.com
synopsis: Client for the Compendium schema server
changelog: ''
basic-deps:
http-client: -any
base: ! '>=4.12 && <5'
... | Update from Hackage at 2020-01-13T08:42:53Z | Update from Hackage at 2020-01-13T08:42:53Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
cbd828b22bc8e54ca7c0d64db69dfc7738c89807 | packages/co/complex-generic.yaml | packages/co/complex-generic.yaml | homepage: https://gitorious.org/complex-generic
changelog-type: ''
hash: 035d4ab5d0f2b72b41cbfe1c56adfa358584f978e72549ce8bcb88e80c6ba0d5
test-bench-deps: {}
maintainer: claude@mathr.co.uk
synopsis: complex numbers with non-mandatory RealFloat
changelog: ''
basic-deps:
base: <4.9
template-haskell: <2.11
all-version... | homepage: https://code.mathr.co.uk/complex-generic
changelog-type: ''
hash: 440fd9de41fb8eb8f7668c9f77f447daac8ffcfbf01547c1db18b49650627079
test-bench-deps: {}
maintainer: claude@mathr.co.uk
synopsis: complex numbers with non-mandatory RealFloat
changelog: ''
basic-deps:
base: <4.10
template-haskell: <2.12
all-ver... | Update from Hackage at 2017-04-03T15:32:53Z | Update from Hackage at 2017-04-03T15:32:53Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
41562d6a7ab9c1f6089cc9314141d815ca782ae9 | data/sites/decc.yml | data/sites/decc.yml | ---
site: decc
host: www.decc.gov.uk
redirection_date: 23rd January 2013
tna_timestamp: 20121217150421
title: Department of Energy and Climate Change
furl: www.gov.uk/decc
homepage: https://www.gov.uk/government/organisations/department-of-energy-climate-change
options: --query-string -
---
| ---
site: decc
host: www.decc.gov.uk
redirection_date: 23rd January 2013
tna_timestamp: 20121217150421
title: Department of Energy and Climate Change
furl: www.gov.uk/decc
homepage: https://www.gov.uk/government/organisations/department-of-energy-climate-change
options: --query-string filepath
---
| Support for query string for DECC assets --> to support remunge | Support for query string for DECC assets --> to support remunge
| YAML | mit | alphagov/transition-config,alphagov/transition-config |
4c9c7c54c0ad8d2b0803c33ce16040fc968a0423 | spec/integrations.yml | spec/integrations.yml | ---
# Might not elaborate all 2.1 specific ASTs but the only 2.1 lib I know
- name: chassis
repo_uri: 'https://github.com/ahawkins/chassis.git'
exclude: []
- name: rubyspec
repo_uri: 'https://github.com/rubyspec/rubyspec.git'
exclude:
# Binary encoded source subjected to limitations see Readme
- core/ar... | ---
# Might not elaborate all 2.1 specific ASTs but the only 2.1 lib I know
- name: chassis
repo_uri: 'https://github.com/ahawkins/chassis.git'
exclude: []
- name: rubyspec
repo_uri: 'https://github.com/rubyspec/rubyspec.git'
exclude:
# Binary encoded source subjected to limitations see Readme
- core/ar... | Exclude 8bit encoded parts of rubyspec from corpus test | Exclude 8bit encoded parts of rubyspec from corpus test
| YAML | mit | chastell/unparser,mbj/unparser,mvz/unparser,glittershark/unparser,mbj/unparser |
ad02b25167597a203ebc96ca3827a5783e235085 | concourse/tasks/mvn-package.yml | concourse/tasks/mvn-package.yml | ---
platform: linux
image_resource:
type: docker-image
source:
repository: kdvolder/sts4-build-env
inputs:
- name: sts4
run:
path: mvn
args: ["clean", "package"]
dir: sts4/vscode-extensions
| # This is meant to be run as a local task
# I.e. you upload the code from local hd and
# It gets built in concourse ci
#
# To run it:
#
# - cd to the top of sts4 git repo on your machine
# - git clean -fxd (to avoid sending stuff that's not needed like locally built crap in maven target dirs)
# Caution! This c... | Add mvn package task. May be useful for local testing | Add mvn package task. May be useful for local testing | YAML | epl-1.0 | spring-projects/sts4,spring-projects/sts4,spring-projects/sts4,spring-projects/sts4,spring-projects/sts4,spring-projects/sts4 |
f2062e81a1f0073c6b2211f39082ac9f3b72c645 | job-node.yaml | job-node.yaml | apiVersion: batch/v1
kind: Job
metadata:
name: kube-bench-node
spec:
template:
spec:
hostPID: true
containers:
- name: kube-bench
image: aquasec/kube-bench:latest
command: ["kube-bench","node"]
volumeMounts:
- name: var-lib-kubelet
mountPath: /var/lib/... | apiVersion: batch/v1
kind: Job
metadata:
name: kube-bench-node
spec:
template:
spec:
hostPID: true
containers:
- name: kube-bench
image: aquasec/kube-bench:latest
command: ["kube-bench","node"]
volumeMounts:
- name: var-lib-kubelet
mountPath: /var/lib/... | Comment why /usr/bin is mounted | Comment why /usr/bin is mounted | YAML | apache-2.0 | aquasecurity/kube-bench,aquasecurity/kube-bench |
4d0be2d2d8a97586d71ac492ae89bb45b0a379f4 | kitchen.yml | kitchen.yml | driver:
name: vagrant
provisioner:
name: chef_zero
product_name: chef
enforce_idempotency: true
multiple_converge: 2
deprecations_as_errors: true
verifier:
name: inspec
platforms:
- name: centos-7
- name: centos-8
- name: debian-9
- name: debian-10
- name: fedora-29
- name: opensuse-leap-1... | driver:
name: vagrant
provisioner:
name: chef_zero
product_name: chef
enforce_idempotency: true
multiple_converge: 2
deprecations_as_errors: true
verifier:
name: inspec
platforms:
- name: centos-7
- name: centos-8
- name: debian-10
- name: debian-9
- name: fedora-latest
- name: opensuse-le... | Add other missing platforms and sort | Add other missing platforms and sort
Signed-off-by: Lance Albertson <3161cdc7bf197e4c3a35b9cbe358c79910f27e90@osuosl.org>
| YAML | apache-2.0 | opscode-cookbooks/maven,opscode-cookbooks/maven |
056b6867e988179d5ca5941b29db99b5cbf7b8ef | install.yml | install.yml | ---
# Here we describe every software we may want to install
- hosts: all
roles:
- role: osxc.packages
brew_taps:
- caskroom/fonts
- thoughtbot/formulae
brew_packages:
- git
- mercurial
- zsh
- lua
- luajit
- vim # --with-lua
- macvim # --with-cscope --with-lua --override... | ---
# Here we describe every software we may want to install
- hosts: all
roles:
- role: osxc.packages
brew_taps:
- caskroom/fonts
- thoughtbot/formulae
- gapple/services
brew_packages:
- git
- mercurial
- zsh
- lua
- luajit
- vim # --with-lua
- macvim # --with-cscope... | Add tap for service management | Add tap for service management
| YAML | mit | luishdez/osx-playbook,ansible-macos/macos-playbook,ansible-macos/macos-playbook |
0417574bfb5bb0602c385f4d533bf76ed9757632 | .github/workflows/gradle-build.yml | .github/workflows/gradle-build.yml | name: "Build Gradle project"
on: [push, workflow_dispatch]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java-version: [ 8, 11, 16, 17 ]
gradle-version: [ 6.9.3, 7.0.2, 7.2, 7.3.3, 7.5.1 ]
name: Test JVM/Gradle (${{ matrix.java-version }},... | name: "Build Gradle project"
on: [push, workflow_dispatch]
jobs:
build:
name: Test JVM/Gradle (${{ matrix.java-version }}, ${{ matrix.gradle-version }})
runs-on: ubuntu-latest
strategy:
matrix:
java-version: [ 8, 11, 16, 17 ]
gradle-version: [ 6.9... | Change order of config attributes | Change order of config attributes
| YAML | apache-2.0 | etiennestuder/gradle-credentials-plugin |
7e8c282acf6fc474921a9efba9527a929bdfc637 | .github/workflows/run-unit-tests.yml | .github/workflows/run-unit-tests.yml | name: Run Django Unit Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
run_tests:
name: Run Django Tests
runs-on: ubuntu-latest
steps:
- name: Checkout the branch
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-... | name: Run Django Unit Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
run_tests:
name: Run Django Tests
runs-on: ubuntu-latest
steps:
- name: Checkout the branch
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-... | Remove unit test caching, change testing command line | Remove unit test caching, change testing command line
| YAML | agpl-3.0 | codethesaurus/codethesaur.us,codethesaurus/codethesaur.us |
9e98e92ba452862d5c701f2a0cfa7b5cfb01996a | graphql_parser/pubspec.yaml | graphql_parser/pubspec.yaml | name: graphql_parser
version: 1.1.0
description: Parses GraphQL queries and schemas.
author: Tobe O <thosakwe@gmail.com>
homepage: https://github.com/thosakwe/graphql_parser
environment:
sdk: ">=1.8.0 <3.0.0"
dependencies:
charcode: ^1.0.0
source_span: ^1.0.0
string_scanner: ^1.0.0
dev_dependencies:
matcher: ... | name: graphql_parser
version: 1.1.0
description: Parses GraphQL queries and schemas.
author: Tobe O <thosakwe@gmail.com>
homepage: https://github.com/angel-dart/graphql
environment:
sdk: ">=1.8.0 <3.0.0"
dependencies:
charcode: ^1.0.0
source_span: ^1.0.0
string_scanner: ^1.0.0
dev_dependencies:
matcher: any
... | Change homepage in parser (for the future) | Change homepage in parser (for the future)
| YAML | mit | angel-dart/angel,angel-dart/angel,angel-dart/angel,angel-dart/angel,angel-dart/angel,angel-dart/angel,angel-dart/angel,angel-dart/angel |
71735b6fbfa7c92bc77dd5dd13555095f0fb6dfc | config/strano.example.yml | config/strano.example.yml | defaults: &defaults
# Strano's public SSH key with which it will attempt to clone Github repos via.
public_ssh_key: MYPUBLICKEY
# Strano's Github application client ID. See https://github.com/account/applications
github_key: github-application-client-id
# Strano's Github application secret. See https://git... | defaults: &defaults
# Strano's public SSH key with which it will attempt to clone Github repos via.
public_ssh_key: MYPUBLICKEY
# Strano's Github application client ID. See https://github.com/settings/applications
github_key: github-application-client-id
# Strano's Github application secret. See https://gi... | Fix 404 for github url | Fix 404 for github url | YAML | mit | xinghao/strano,99monkeys/deploybird,99monkeys/deploybird,joelmoss/strano,joelmoss/strano,express42/strano,99monkeys/deploybird,diginside/strano,joelmoss/strano,xinghao/strano,express42/strano,express42/strano,xinghao/strano,diginside/strano,xinghao/strano,diginside/strano,99monkeys/deploybird,express42/strano |
9b210dbbe62995812bd5c60b3e1a97a0c926f745 | project.yml | project.yml | name: dry-web-roda
codacy_id: aa0e136b8b6640439852099ca002e01b
gemspec:
authors: ["Piotr Solnica"]
email: ["piotr.solnica@gmail.com"]
summary: "Roda integration for dry-web apps"
executables:
- "dry-web-roda"
development_dependencies:
- aruba
- bundler
- rake
- rspec
- [capybara, "~> 2... | name: dry-web-roda
codacy_id: aa0e136b8b6640439852099ca002e01b
gemspec:
authors: ["Piotr Solnica"]
email: ["piotr.solnica@gmail.com"]
summary: "Roda integration for dry-web apps"
executables:
- "dry-web-roda"
runtime_dependencies:
- [dry-configurable, "~> 0.2"]
- [dry-inflector, "~> 0.2"]
- [r... | Remove dev deps from the gemspec config | Remove dev deps from the gemspec config
| YAML | mit | dry-rb/dry-web-roda,dry-rb/dry-web-roda,dry-rb/dry-web-roda |
140a8593be57d0c7bf7a383ef529bcde1cc2c8a5 | hieradata/bgo/roles/controller.yaml | hieradata/bgo/roles/controller.yaml | ---
himlar_bootstrap::virt_install:
'%{location}-admin-01':
domain: 'mgmt.iaas.intern'
libvirt_pool: 'dirpool'
libvirt_network: 'directnet'
install_ip: '172.16.0.11'
install_netmask: '255.255.248.0'
install_gateway: '172.16.0.10'
vm_vcpus: 2
vm_memory: 809... | ---
himlar_bootstrap::virt_install:
'%{location}-admin-01':
domain: 'mgmt.iaas.intern'
libvirt_pool: 'dirpool'
libvirt_network: 'directnet'
install_ip: '172.16.0.11'
install_netmask: '255.255.248.0'
install_gateway: '172.16.0.10'
vm_vcpus: 2
vm_memory: 809... | Use default console for bgo-admin-01 bootstrap | Use default console for bgo-admin-01 bootstrap
| YAML | apache-2.0 | tanzr/himlar,TorLdre/himlar,norcams/himlar,eckhart/himlar,tanzr/himlar,raykrist/himlar,norcams/himlar,raykrist/himlar,mikaeld66/himlar,tanzr/himlar,tanzr/himlar,raykrist/himlar,norcams/himlar,mikaeld66/himlar,TorLdre/himlar,mikaeld66/himlar,eckhart/himlar,norcams/himlar,TorLdre/himlar,TorLdre/himlar,mikaeld66/himlar,To... |
46d4653f5184f5cb6ef907741b966c7247e6dda3 | deployments/stat89a/config/common.yaml | deployments/stat89a/config/common.yaml | jupyterhub:
auth:
type: google
admin:
users:
# infrastructure
- rylo
- yuvipanda
- felder
# List of other admin users
# Professor
- mahoneymw
# GSIs
- krinsman
- theisen
# UGSI
- wqixu... | jupyterhub:
auth:
type: google
admin:
users:
# infrastructure
- rylo
- yuvipanda
- felder
# List of other admin users
# Professor
- mahoneymw
# GSIs
- krinsman
- theisen
# UGSI
- wqixu... | Revert "Delete lifecycle hook; it was a bad idea" | Revert "Delete lifecycle hook; it was a bad idea"
| YAML | bsd-3-clause | berkeley-dsep-infra/datahub,ryanlovett/datahub,ryanlovett/datahub,ryanlovett/datahub,berkeley-dsep-infra/datahub,berkeley-dsep-infra/datahub |
5819277f8bd72238e9dcf49109cc5d3be7581b13 | common/playbooks/ansible-install.yml | common/playbooks/ansible-install.yml | ---
# Complete the installation of Ansible by installing required software on the local computer
- hosts: localhost
become: yes
tasks:
# Install git-crypt
- name: Add PPA outsideopen/git-crypt for Ubuntu 14.04
apt_repository: repo='ppa:outsideopen/git-crypt'
when: >
(ansible_distribu... | ---
# Complete the installation of Ansible by installing required software on the local computer
- hosts: localhost
become: yes
tasks:
# Install git-crypt
- name: Add PPA ppa:avacariu/git-crypt for Ubuntu 14.04
apt_repository: repo='ppa:avacariu/git-crypt'
when: >
(ansible_distributi... | Change apt-get repository for git-crypt | Change apt-get repository for git-crypt
Use a repository that contains git-crypt for Ubuntu 14.04 and 15.04
| YAML | apache-2.0 | HBPMedical/mip-microservices-infrastructure,LREN-CHUV/mip-microservices-infrastructure,LREN-CHUV/mip-microservices-infrastructure,LREN-CHUV/dev-setup,HBPMedical/mip-microservices-infrastructure,LREN-CHUV/dev-setup |
7596f7c0b9abbf03217d076cb6efa86352745ae0 | data/transition-sites/directgov_terror.yml | data/transition-sites/directgov_terror.yml | ---
site: directgov_terror
whitehall_slug: home-office
title: Home Office
redirection_date: 1st April 2014
homepage: https://www.gov.uk/report-terrorism
tna_timestamp: 20121017175053
host: reporting.direct.gov.uk
furl: www.gov.uk/report-terrorism
global: =301 https://www.gov.uk/report-terrorism
| ---
site: directgov_terror
whitehall_slug: home-office
title: Home Office
redirection_date: 10th April 2014
homepage: https://www.gov.uk/report-terrorism
tna_timestamp: 20121017175053
host: reporting.direct.gov.uk
furl: www.gov.uk/report-terrorism
global: =301 https://www.gov.uk/report-terrorism
| Change of date for directgov terror domain | Change of date for directgov terror domain
| YAML | mit | alphagov/transition-config,alphagov/transition-config |
dc19a53d9dcbf80bdace3b7ae6f6d6e3d7853ded | app/config/config_test.yml | app/config/config_test.yml | imports:
- { resource: config_dev.yml }
framework:
test: ~
session:
storage_id: session.storage.mock_file
profiler:
collect: false
doctrine:
dbal:
default_connection: default
connections:
default:
driver: pdo_sqlite
path... | imports:
- { resource: config_dev.yml }
framework:
test: ~
session:
storage_id: session.storage.mock_file
profiler:
collect: false
doctrine:
dbal:
default_connection: default
connections:
default:
driver: pdo_sqlite
path... | Fix deprecated message for Symfony 3.1 | Fix deprecated message for Symfony 3.1
| YAML | mit | jlagneau/demo-rest-api,jlagneau/demo-rest-api |
23050eff6d1e5251ed9ce4df35c2592e8f36ec87 | packages/de/deterministic-game-engine.yaml | packages/de/deterministic-game-engine.yaml | homepage: https://github.com/TGOlson/deterministic-game-engine
changelog-type: ''
hash: 92159ebdd9fa3b4012227396f73174dc457c3e7bf1ec5988c85e55183cb65b0b
test-bench-deps:
deterministic-game-engine: ==0.3.1
base: <5.0
hspec: ! '>=2.1 && <2.2'
maintainer: tydotg@gmail.com
synopsis: Simple deterministic game engine
c... | homepage: https://github.com/TGOlson/deterministic-game-engine
changelog-type: ''
hash: 725102b3abfba33256da6283c0ef81ee4a7ef639316534b394699818035aa933
test-bench-deps:
deterministic-game-engine: ==0.4.0
base: <5.0
hspec: ! '>=2.1 && <2.2'
maintainer: tydotg@gmail.com
synopsis: Simple deterministic game engine
c... | Update from Hackage at 2015-08-02T01:18:48+0000 | Update from Hackage at 2015-08-02T01:18:48+0000
| YAML | mit | commercialhaskell/all-cabal-metadata |
c309fd3de517880eeda83e2c99ee8f25339eb743 | examples/basic-http.yaml | examples/basic-http.yaml | kind: GatewayClass
apiVersion: networking.x.k8s.io/v1alpha1
metadata:
name: acme-lb
controller: acme.io/gateway-controller
parameters:
apiGroup: networking.acme.io
kind: AcmeLBConfig
name: acme-lb-config
---
kind: Gateway
apiVersion: networking.x.k8s.io/v1alpha1
metadata:
name: my-gateway
namespace: default... | kind: GatewayClass
apiVersion: networking.x.k8s.io/v1alpha1
metadata:
name: acme-lb
controller: acme.io/gateway-controller
parameters:
apiGroup: networking.acme.io
kind: AcmeLBConfig
name: acme-lb-config
---
kind: Gateway
apiVersion: networking.x.k8s.io/v1alpha1
metadata:
name: my-gateway
namespace: default... | Fix route selectors for the basic example | Fix route selectors for the basic example
Change namespaceSelector to empty value, since empty string is not a valid key.
Add routeSelector with simple example of matchLabels.
Add same labels value to HTTPRoute in order to match gateway's routeSelector. | YAML | apache-2.0 | istio/gateway-api,istio/gateway-api,istio/gateway-api |
f9384e64cd7ca532126b18861a04f1ced90ca2a3 | db/seeds/prisons/WMI-wymott.yml | db/seeds/prisons/WMI-wymott.yml | ---
name: Wymott
nomis_id: WMI
address: |-
Ulnes Walton Lane
postcode: PR26 8LW
email_address: socialvisits.wymott@hmps.gsi.gov.uk
phone_no: 01772 442234
enabled: true
private: false
closed: false
recurring:
mon:
- 1415-1600
tue:
- 1415-1600
wed:
- 1415-1600
thu:
- 1415-1600
sat:
- 1415-1600
sun... | ---
name: Wymott
nomis_id: WMI
address: |-
Ulnes Walton Lane
postcode: PR26 8LW
email_address: socialvisits.wymott@hmps.gsi.gov.uk
phone_no: 01772 442234
enabled: true
private: false
closed: false
recurring:
mon:
- 1415-1600
tue:
- 1415-1600
wed:
- 1415-1600
thu:
- 1415-1600
sat:
- 1415-1600
sun... | Add more unbookable dates for Wymott | Add more unbookable dates for Wymott
https://ministryofjustice.zendesk.com/agent/tickets/197339 - tickets
include additional dates to block off
| YAML | mit | ministryofjustice/prison-visits-2,ministryofjustice/prison-visits-2,ministryofjustice/prison-visits-2,ministryofjustice/prison-visits-2 |
733e48c0e0cca21f3491976bd08185f6f6f9de6e | devtools/conda-recipe/meta.yaml | devtools/conda-recipe/meta.yaml | package:
name: perses-dev
version: !!str 0.0.0
source:
path: ../../
build:
preserve_egg_dir: True
number: 0
requirements:
build:
- python
- setuptools
- numpy
- scipy
- numexpr
- autograd
- pymbar
- cuda92
- openmm >=7.3.0
- parmed
- openmoltools
- alchemy ... | package:
name: perses-dev
version: !!str 0.0.0
source:
path: ../../
build:
preserve_egg_dir: True
number: 0
requirements:
build:
- python
- setuptools
- numpy
- scipy
- numexpr
- autograd
- pymbar
- cuda92
- openmm >=7.3.0
- parmed
- openmoltools
- openmmto... | Change dependencies to see if docker will build | Change dependencies to see if docker will build
| YAML | mit | choderalab/perses,choderalab/perses |
10d010ce1dc2c1bed790aa6b686393556c1d280a | .check-author.yml | .check-author.yml | exclude:
languages
copy-left:
"Gyula Sallai <salla016@gmail.com>": "src/ClassMapGenerator.php"
"Jordi Boggiano <j.boggiano@seld.be>": "src/ClassMapGenerator.php"
| exclude:
- languages
- tests/fixtures
copy-left:
"Gyula Sallai <salla016@gmail.com>": "src/ClassMapGenerator.php"
"Jordi Boggiano <j.boggiano@seld.be>": "src/ClassMapGenerator.php"
| Exclude fixtures from author check | Exclude fixtures from author check
| YAML | mit | phpcq/autoload-validation |
9634968b4bbf1e82bfb2064a26c42abc25139a8c | .circleci/config.yml | .circleci/config.yml | version: 2
workflows:
version: 2
test:
jobs:
- test-3.6
- test-3.5
- test-2.7
jobs:
test-3.6: &test-template
docker:
- image: circleci/python:3.6
working_directory: ~/repo
steps:
- checkout
- restore_cache:
keys:
- v1-dependencies-{{ checksum... | version: 2
workflows:
version: 2
test:
jobs:
- test-3.6
- test-3.5
- test-2.7
jobs:
test-3.6: &test-template
docker:
- image: circleci/python:3.6
working_directory: ~/repo
steps:
- checkout
- restore_cache:
keys:
- v1-dependencies-{{ checksum... | Use venv on py3 and preinstalled virtualenv on py2 | Use venv on py3 and preinstalled virtualenv on py2
| YAML | mit | adambrenecki/virtualfish,adambrenecki/virtualfish |
cfeac0138085232ec75be8f8275a3906b990d928 | .circleci/config.yml | .circleci/config.yml | version: 2
jobs:
build:
docker:
- image: circleci/node:4.8.2
steps:
- checkout
- run:
name: install
command: npm install
- run:
name: test
command: npm test
| ---
version: 2
buildSteps: &buildSteps
- checkout
- run:
name: install-npm
command: npm install
- run:
name: test
command: npm test
- persist_to_workspace:
# Persist all job output, so we can (potentially) use it for deploys
root: ../
paths:
- ./node-*
jobs:
... | Add circleci auto-deploy to npm | Add circleci auto-deploy to npm
Change-type: minor
Signed-off-by: Cameron Diver <1d572acbfa68c7c6e541c7b840d6b622e5c0dc91@resin.io>
| YAML | apache-2.0 | resin-io/resin-preload-image-script,resin-io/resin-preload-image-script |
ac4551620ef6829f4a36ad1e43227e3e27253cf7 | .circleci/config.yml | .circleci/config.yml | # Javascript Node CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-javascript/ for more details
#
version: 2
jobs:
build:
docker:
- image: circleci/node:14.1
working_directory: ~/repo
steps:
- checkout
- restore_cache:
keys:
- v1-depen... | # Javascript Node CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-javascript/ for more details
#
version: 2
jobs:
build:
docker:
- image: circleci/node:14.11
working_directory: ~/repo
steps:
- checkout
- restore_cache:
keys:
- v1-depe... | Update CircleCI Node version to 14.11 | Update CircleCI Node version to 14.11
| YAML | mit | nruotsal/node-iso11649 |
aeb638545d683e6eba72b6b2eeaec216904e71ff | .circleci/config.yml | .circleci/config.yml | version: 2.1
orbs:
ruby-orbs: sue445/ruby-orbs@1.6.2
jobs:
test:
macos:
xcode: 13.3.1
steps:
- checkout
- ruby-orbs/bundle-install:
bundle_clean: true
bundle_extra_args: ""
bundle_gemfile: Gemfile
bundle_jobs: 4
bundle_path: vendor/bundle... | version: 2.1
orbs:
ruby-orbs: sue445/ruby-orbs@1.6.2
carthage: ngs/carthage@0.0.3
jobs:
test:
macos:
xcode: 13.3.1
steps:
- checkout
- ruby-orbs/bundle-install:
bundle_clean: true
bundle_extra_args: ""
bundle_gemfile: Gemfile
bundle_jobs: 4
... | Add carthage to circleci workflow | Add carthage to circleci workflow
| YAML | mit | contentful/contentful.swift,contentful/contentful.swift,contentful/contentful.swift,contentful/contentful.swift |
c883c72f8675eb640afd1642e22eb4d3aefd751f | .circleci/config.yml | .circleci/config.yml | version: 2
jobs:
build:
docker:
# specify the version you desire here
- image: circleci/node:8.9.1
# Specify service dependencies here if necessary
# CircleCI maintains a library of pre-built images
# documented at https://circleci.com/docs/2.0/circleci-images/
# - image: circ... | version: 2
jobs:
build:
docker:
# specify the version you desire here
- image: circleci/node:8.9.1
# Specify service dependencies here if necessary
# CircleCI maintains a library of pre-built images
# documented at https://circleci.com/docs/2.0/circleci-images/
# - image: circ... | Update path and predo command | Update path and predo command
| YAML | mit | adaschevici/firebase-demo,adaschevici/firebase-demo,adaschevici/firebase-demo |
c907d7c2bdd673e590fd7ea41275c9dabe4f9527 | .circleci/config.yml | .circleci/config.yml | # Java Gradle CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-android/ for more details
#
version: 2
cache_key: &cache_key
key: jars-{{ checksum "build.gradle" }}-{{ checksum "app/build.gradle" }}
jobs:
build:
working_directory: ~/wp-display-android
docker:
- image... | # Java Gradle CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-android/ for more details
#
version: 2
cache_key: &cache_key
key: jars-{{ checksum "build.gradle" }}-{{ checksum "app/build.gradle" }}
jobs:
build:
working_directory: ~/wp-display-android
docker:
- image... | Use new, smaller Android image. | CI: Use new, smaller Android image.
| YAML | apache-2.0 | UweTrottmann/wp-display-android |
b3eefef33c480f9ebabf52969396498a639180f4 | .circleci/config.yml | .circleci/config.yml | version: 2
jobs:
build:
docker:
- image: golang:1.8.1
working_directory: /go/src/github.com/tisp-lang/tisp
steps:
- checkout
- run:
name: OS Setup
command: |
apt -y update --fix-missing
apt -y install rake
- run:
name: Install... | version: 2
jobs:
build:
docker:
- image: golang
working_directory: /go/src/github.com/tisp-lang/tisp
steps:
- checkout
- run:
name: OS Setup
command: |
apt -y update --fix-missing
apt -y install rake
- run:
name: Install depen... | Use latest version of go | Use latest version of go
| YAML | mit | raviqqe/tisp,raviqqe/tisp,tisp-lang/tisp,raviqqe/tisp,tisp-lang/tisp |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.