commit
stringlengths 40
40
| old_file
stringlengths 4
237
| new_file
stringlengths 4
237
| old_contents
stringlengths 1
4.24k
| new_contents
stringlengths 1
4.87k
| subject
stringlengths 15
778
| message
stringlengths 15
8.75k
| lang
stringclasses 266
values | license
stringclasses 13
values | repos
stringlengths 5
127k
|
---|---|---|---|---|---|---|---|---|---|
b50a77e86b1098735b593f5dee02efd7f51c11ee
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 2.1
script: bundle exec rake
before_install:
- gem update --system
services:
- redis-server
|
language: ruby
rvm:
- 2.1
services:
- redis-server
sudo: false
cache: bundler
|
Update Travis to use containers
|
Update Travis to use containers
|
YAML
|
mit
|
esigler/lita-jira
|
8b934f7ada86bdbbc8df6753d649359860c498d8
|
.travis.yml
|
.travis.yml
|
sudo: false
language: node_js
node_js:
- "8.0"
- "10.0"
- "node"
addons:
hosts:
- nic.localhost
- tim.localhost
- nicola.localhost
before_install:
- npm install -g npm@latest
install:
- npm ci
script:
# Test the code
- npm run standard
- npm run nyc
# Test global install of the package
- npm pack .
- npm install -g solid-server-*.tgz
after_success:
- snyk monitor
notifications:
email:
- [email protected]
- [email protected]
|
sudo: false
language: node_js
node_js:
- "8.0"
- "10.0"
- "node"
addons:
hosts:
- nic.localhost
- tim.localhost
- nicola.localhost
before_install:
- echo "No GitHub dependencies allowed" &&
! grep '"github:' package-lock.json
- npm install -g npm@latest
install:
- npm ci
script:
# Test the code
- npm run standard
- npm run nyc
# Test global install of the package
- npm pack .
- npm install -g solid-server-*.tgz
after_success:
- snyk monitor
notifications:
email:
- [email protected]
- [email protected]
|
Check for GitHub dependencies on Travis.
|
Check for GitHub dependencies on Travis.
|
YAML
|
mit
|
linkeddata/ldnode,linkeddata/ldnode
|
9d3523c513de9d4a9f6aa5a1f1c0dd49c23983c3
|
.travis.yml
|
.travis.yml
|
os:
- linux
language: bash
addons:
apt:
sources:
- debian-sid
packages:
- shellcheck
before_script:
- chmod +x ./hack/make.sh
script:
- ./hack/make.sh test
|
os:
- linux
language: bash
addons:
apt:
sources:
- debian-sid
packages:
- shellcheck
before_script:
- chmod +x ./hack/make.sh
script:
- ./hack/make.sh test
notifications:
email:
on_success: never
|
Remove email notifications on success
|
Remove email notifications on success
|
YAML
|
mit
|
jasperes/personal-distro-configurator,personal-distro-configurator/personal-distro-configurator
|
5d3472e9933f88f9e6db9bc7b9490913b5580f1a
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "2.7"
virtualenv:
system_site_packages: true
# command to prepare the system to install prerequisites or dependencies
before_install:
- pip install -U pip
- sudo add-apt-repository -y ppa:donk/gstreamer
- sudo apt-get -qq update
- sudo apt-get install python-setuptools
- sudo apt-get install -qq python-numpy python-scipy python-matplotlib python-networkx
- sudo apt-get install -qq libhdf5-serial-dev python-h5py python-tables
- sudo apt-get install -qq python-gst0.10 gstreamer0.10-plugins-good gstreamer0.10-gnonlin gstreamer0.10-plugins-ugly gstreamer0.10-plugins-bad
# command to install dependencies
install:
# - "pip install -r requirements.txt --use-mirrors"
- python setup.py install
# command to run tests
before_script:
- pip install -U coverage
- pip install coveralls
script:
- coverage run --source=timeside --omit=timeside/analyzer/aubio/aubio_*.py,timeside/analyzer/yaafe.py,timeside/analyzer/limsi_sad.py,timeside/analyzer/vamp_plugin.py setup.py test
after_success:
- coveralls
|
language: python
python:
- "2.7"
virtualenv:
system_site_packages: true
# command to prepare the system to install prerequisites or dependencies
before_install:
- pip install -U pip
- pip install -U setuptools
- sudo add-apt-repository -y ppa:donk/gstreamer
- sudo apt-get -qq update
- sudo apt-get install -qq python-numpy python-scipy python-matplotlib python-networkx
- sudo apt-get install -qq libhdf5-serial-dev python-h5py python-tables
- sudo apt-get install -qq python-gst0.10 gstreamer0.10-plugins-good gstreamer0.10-gnonlin gstreamer0.10-plugins-ugly gstreamer0.10-plugins-bad
# command to install dependencies
install:
# - "pip install -r requirements.txt --use-mirrors"
- python setup.py install
# command to run tests
before_script:
- pip install -U coverage
- pip install coveralls
script:
- coverage run --source=timeside --omit=timeside/analyzer/aubio/aubio_*.py,timeside/analyzer/yaafe.py,timeside/analyzer/limsi_sad.py,timeside/analyzer/vamp_plugin.py setup.py test
after_success:
- coveralls
|
Update setuptools via pip in Travis-CI
|
Update setuptools via pip in Travis-CI
|
YAML
|
agpl-3.0
|
Parisson/TimeSide,Parisson/TimeSide,Parisson/TimeSide,Parisson/TimeSide,Parisson/TimeSide
|
ffc1b6cc5876af89d1c77d96011b9701176523fc
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 2.3.3
env:
# NOTE: Ancient versions of Elasticsearch have different download URLs
- ES_VERSION=2.3.5 ES_DOWNLOAD_URL=https://download.elastic.co/elasticsearch/release/org/elasticsearch/distribution/tar/elasticsearch/${ES_VERSION}/elasticsearch-${ES_VERSION}.tar.gz
- ES_VERSION=5.6.4 ES_DOWNLOAD_URL=https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-${ES_VERSION}.tar.gz
matrix:
allow_failures:
- env: ES_VERSION=5.6.4 ES_DOWNLOAD_URL=https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-${ES_VERSION}.tar.gz
# Configure a specific version of Elasticsearch
# See: https://docs.travis-ci.com/user/database-setup/#Installing-ElasticSearch-on-trusty-container-based-infrastructure
install:
- wget ${ES_DOWNLOAD_URL}
- tar -xzf elasticsearch-${ES_VERSION}.tar.gz
- ./elasticsearch-${ES_VERSION}/bin/elasticsearch &
- bundle install
- wget --quiet --waitretry=1 --retry-connrefused --timeout=10 --output-document=- http://127.0.0.1:9200
script: bundle exec rake test
notifications:
email: false
sudo: false
|
language: ruby
rvm:
- 2.3.3
env:
# NOTE: Ancient versions of Elasticsearch have different download URLs
- ES_VERSION=2.3.5 ES_DOWNLOAD_URL=https://download.elastic.co/elasticsearch/release/org/elasticsearch/distribution/tar/elasticsearch/${ES_VERSION}/elasticsearch-${ES_VERSION}.tar.gz
- ES_VERSION=5.6.4 ES_DOWNLOAD_URL=https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-${ES_VERSION}.tar.gz
# Configure a specific version of Elasticsearch
# See: https://docs.travis-ci.com/user/database-setup/#Installing-ElasticSearch-on-trusty-container-based-infrastructure
install:
- wget ${ES_DOWNLOAD_URL}
- tar -xzf elasticsearch-${ES_VERSION}.tar.gz
- ./elasticsearch-${ES_VERSION}/bin/elasticsearch &
- bundle install
- wget --quiet --waitretry=1 --retry-connrefused --timeout=10 --output-document=- http://127.0.0.1:9200
script: bundle exec rake test
notifications:
email: false
sudo: false
|
Remove allowed failures from ES 5.X Travis CI builds
|
Remove allowed failures from ES 5.X Travis CI builds
|
YAML
|
mit
|
github/elastomer-client,github/elastomer-client
|
8602c647378178849f3ff3ea81acf749f3e3b109
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- 0.4
- 0.6
- 0.8
|
language: node_js
node_js:
- "0.4"
- "0.6"
- "0.8"
- "0.10"
- "0.11"
|
Add Travis-ci integration for Node.js v0.10 and v0.11
|
Add Travis-ci integration for Node.js v0.10 and v0.11
|
YAML
|
mit
|
Submersible/self
|
26c6a4395afbb1cd8d515021256e526cae18f394
|
.travis.yml
|
.travis.yml
|
language: rust
script: make travis
rust:
- stable
- beta
- nightly
matrix:
allow_failures:
- rust: nightly
addons:
apt:
packages:
- kcov
deploy:
provider: releases
api_key: '$GITHUB_API_KEY'
file: 'target/release/request_log_analyzer'
skip_cleanup: true
on:
tags: true
rust: stable
all_branches: true
|
language: rust
script: make travis
rust:
- stable
- beta
- nightly
matrix:
allow_failures:
- rust: nightly
deploy:
provider: releases
api_key: '$GITHUB_API_KEY'
file: 'target/release/request_log_analyzer'
skip_cleanup: true
on:
tags: true
rust: stable
all_branches: true
|
Revert "kcov is required for code coverage"
|
Revert "kcov is required for code coverage"
This reverts commit 9162d7b4fa7627c714a4904db31e79cc0462595c.
|
YAML
|
mit
|
pixelistik/request_log_analyzer,pixelistik/request_log_analyzer,pixelistik/request_log_analyzer
|
825452f12d279b51eb12013069dbe153e4782227
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "2.7"
sudo: required
services:
- docker
env:
global:
- DOCKER_VERSION=1.12.0-0~trusty
- DOCKER_COMPOSE_VERSION=1.6.2
before_install:
- apt-cache madison docker-engine
- sudo apt-get -o Dpkg::Options::="--force-confnew" install -y docker-engine=${DOCKER_VERSION}
- sudo rm -f /usr/local/bin/docker-compose
- curl -L https://github.com/docker/compose/releases/download/${DOCKER_COMPOSE_VERSION}/docker-compose-`uname -s`-`uname -m` > docker-compose
- chmod +x docker-compose
- sudo mv docker-compose /usr/local/bin
install:
- pip install python-coveralls
cache:
directories:
- $HOME/.cache/pip
- /var/lib/docker
before_script:
- docker-compose up -d db
- docker-compose run documentregister setuplocaldb
script:
- docker-compose run documentregister test_coverage
after_success:
# Should I lose sleep over this hack?
- sed -i -e 's/\/code\//g' .coverage
- coveralls --config_file=.coveragerc --data_file=.coverage
|
language: python
python:
- "2.7"
sudo: required
services:
- docker
env:
global:
- DOCKER_VERSION=1.12.0-0~trusty
- DOCKER_COMPOSE_VERSION=1.6.2
before_install:
- apt-cache madison docker-engine
- sudo apt-get -o Dpkg::Options::="--force-confnew" install -y docker-engine=${DOCKER_VERSION}
- sudo rm -f /usr/local/bin/docker-compose
- curl -L https://github.com/docker/compose/releases/download/${DOCKER_COMPOSE_VERSION}/docker-compose-`uname -s`-`uname -m` > docker-compose
- chmod +x docker-compose
- sudo mv docker-compose /usr/local/bin
install:
- pip install python-coveralls
cache:
directories:
- $HOME/.cache/pip
- /var/lib/docker
before_script:
- docker-compose up -d db
- docker-compose run documentregister setuplocaldb
script:
- docker-compose run documentregister test_coverage
after_success:
# Should I lose sleep over this hack?
- sed -i -e 's/\/code\///g' .coverage
- coveralls --config_file=.coveragerc --data_file=.coverage
|
Add missing / in sed statement
|
Add missing / in sed statement
|
YAML
|
mit
|
nkhumphreys/django-documentregister,nkhumphreys/django-documentregister,nkhumphreys/django-documentregister
|
31c28aaac2112bf464259a92f66314104a64edb1
|
.travis.yml
|
.travis.yml
|
language: java
sudo: false
notifications:
hipchat:
rooms:
secure: OlIO4DA0xfqdHqS2ytSfDucjIoncHBgLDFjDi1u+qsLOPBeYpYuNJOZkW531yKPFS/na8BjS5WzjrdZW1Wa2I41X2KdNEqOBPxCNsDlvRzEsMUXGCekTEkIaVKgyD8LsAqku+I0CFRsYCQCxRz6yufEenDf7VwdhbM/345mopkI=
deploy:
provider: releases
api_key:
secure: aoVXZyLOBmB4Q2lLKLaqEN8zcqN3K3/3agRBA1znM1PLeqXSE3CwQe6sHkX6BrfMoDDtjqeepDMgJ9TsqJFq+lPY+HuVFzOqGlrWlIZHBUKI3hmfjgM/61CkdK2eBO42Ym4tqCQ4L1Tp42fcrB6M/a/0TGI5ENW2bJk8+ofRT8M=
file_glob: true
file: build/libs/*
skip_cleanup: true
on:
all_branches: true
tags: true
repo: xebialabs-community/xlr-xldeploy-plugin
|
language: java
sudo: false
notifications:
hipchat:
rooms:
secure: OlIO4DA0xfqdHqS2ytSfDucjIoncHBgLDFjDi1u+qsLOPBeYpYuNJOZkW531yKPFS/na8BjS5WzjrdZW1Wa2I41X2KdNEqOBPxCNsDlvRzEsMUXGCekTEkIaVKgyD8LsAqku+I0CFRsYCQCxRz6yufEenDf7VwdhbM/345mopkI=
deploy:
provider: releases
api_key:
secure: dOR1qtgrZag95Ah3wbTgs1KZmBKb6RZx/qmnqbqB5gVsMLfssaVX3wYjoyKdi/WA6gHEZUnh6vWlF9O0xNJHukW5EACkWauYDNXTLv+6ZggkQrrvf27a2UfF9p2GDbptFXgYTsKsD/zYccXxRxP1C+ciEsr0tZ6dMnRfUs03ACM=
file_glob: true
file: build/libs/*
skip_cleanup: true
on:
all_branches: true
tags: true
repo: xebialabs-community/xlr-xldeploy-plugin
|
Update CI build system credentials
|
Update CI build system credentials
|
YAML
|
mit
|
xebialabs-community/xlr-xldeploy-plugin,xebialabs-community/xlr-xldeploy-plugin,xebialabs-community/xlr-xldeploy-plugin,xebialabs-community/xlr-xldeploy-plugin
|
64d78b8eb5d5afffa7b47e172f5e24cad86bc393
|
.travis.yml
|
.travis.yml
|
language: ruby
sudo: false
cache: bundler
script: "bundle exec rake"
rvm:
- 2.2.6
- 2.3.3
- 2.4.0
gemfile:
- gemfiles/4.2.gemfile
- gemfiles/5.0.gemfile
|
language: ruby
sudo: false
cache: bundler
script: "bundle exec rake"
rvm:
- 2.2.6
- 2.3.3
- 2.4.0
- 2.5.1
gemfile:
- gemfiles/4.2.gemfile
- gemfiles/5.0.gemfile
|
Test against Ruby 2.5.1 on CI.
|
Test against Ruby 2.5.1 on CI.
|
YAML
|
mit
|
thoughtbot/shoulda,thoughtbot/shoulda
|
514bc130ff1c232cb5ab75942a5f57653739b36f
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- "2.2.3"
- "2.1.7"
- "2.0"
|
language: ruby
rvm:
- "2.3.1"
- "2.2.5"
|
Update rubies to test under Travis
|
Update rubies to test under Travis
Remove old rubies (incompatible with Rails 5) and add 2.3.
|
YAML
|
mit
|
cdinger/activerecord-peoplesoft_models,cdinger/activerecord-peoplesoft_models
|
89367e7b8c97ffef808456cf9322904a66668ef3
|
.travis.yml
|
.travis.yml
|
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- jruby-18mode
- jruby-19mode
- rbx-18mode
- rbx-19mode
- ruby-head
matrix:
allow_failures:
- rvm: ruby-head
|
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- jruby-18mode
- jruby-19mode
- rbx-18mode
- rbx-19mode
- ruby-head
matrix:
allow_failures:
- rvm: rbx-18mode
- rvm: rbx-19mode
- rvm: ruby-head
|
Allow Rubinius to fail for now
|
Allow Rubinius to fail for now
|
YAML
|
bsd-3-clause
|
koraktor/rbzip2,koraktor/rbzip2
|
0a42999d4ed744b506487bb5e6f39ea6f406ef8d
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "0.12"
- "4"
- "5"
- "6"
- "7"
|
language: node_js
node_js:
- "4"
- "6"
- "8"
- "10"
|
Change test matrix to current stable Node.js versions
|
Change test matrix to current stable Node.js versions
|
YAML
|
mit
|
bripkens/proxrox,bripkens/proxrox
|
c23d2d4d5e969007e5b7c1e962ae810fd0b97ff8
|
.travis.yml
|
.travis.yml
|
language: java
branches:
only:
- master
jdk:
- oraclejdk8
before_install: "git clone -b travis `git config --get remote.origin.url` target/travis"
script: "mvn deploy --settings target/travis/settings.xml -Dsettings.security=target/travis/settings-security.xml"
after_success:
- mvn cobertura:cobertura coveralls:cobertura
|
language: java
branches:
only:
- master
jdk:
- oraclejdk8
before_install: "git clone -b travis `git config --get remote.origin.url` target/travis"
script: "mvn deploy --settings target/travis/settings.xml -Dsettings.security=target/travis/settings-security.xml -Dmaven.javadoc.skip=true"
after_success:
- mvn cobertura:cobertura coveralls:cobertura
|
Update Travis settings to avoid jdoc issues.
|
Update Travis settings to avoid jdoc issues.
|
YAML
|
apache-2.0
|
meincs/cron-utils,jmrozanec/cron-utils
|
22fbf91da4620b08e9ec6836586613c56a753bf7
|
.travis.yml
|
.travis.yml
|
language: d
d:
- dmd-2.067.0
# - ldc-0.15.1
install:
- sudo apt-get update -qq
- sudo apt-get install -qq fglrx=2:8.960-0ubuntu1 opencl-headers
script:
- dub run --build=release --compiler=${DC} :algebra -- 32
- dub run --build=release --compiler=${DC} :bp -- 32
- dub run --build=release --compiler=${DC} :nw -- 32 10
- dub build --build=release --compiler=${DC} :coverall
# Local Variables:
# compile-command: "dub --build=verbose :nw -- 32 10"
# End:
|
language: d
d:
- dmd-2.067.0
# - ldc-0.15.1
install:
- sudo apt-get update -qq
- sudo apt-get install -qq fglrx=2:8.960-0ubuntu1 opencl-headers
script:
- dub run --build=profile --compiler=${DC} :algebra -- 32
- dub run --build=profile --compiler=${DC} :bp -- 32
- dub run --build=profile --compiler=${DC} :nw -- 32 10
- dub build --build=release --compiler=${DC} :coverall
- bin/clop_coverall
# Local Variables:
# compile-command: "dub --build=verbose :nw -- 32 10"
# End:
|
Build with code coverage enabled and postprocess with coverall.
|
Build with code coverage enabled and postprocess with coverall.
|
YAML
|
mit
|
dmakarov/clop
|
292f0debfc5cba9b53f2ac34ca36bcc3478bf412
|
.travis.yml
|
.travis.yml
|
---
language: ruby
sudo: false
before_install: gem update --system && gem install bundler
branches:
only:
- master
bundler_args: --without development system_tests
rvm:
- 1.8.7
- 1.9.3
- 2.0.0
- 2.1.9
- 2.3.1
- 2.4.0
matrix:
allow_failures:
- rvm: 1.8.7
|
---
language: ruby
sudo: false
before_install: gem update --system && gem install bundler
branches:
only:
- master
bundler_args: --without development system_tests
rvm:
- 1.9.3
- 2.0.0
- 2.1.9
- 2.3.1
- 2.4.0
|
Stop testing against Ruby 1.8.7
|
Stop testing against Ruby 1.8.7
|
YAML
|
mit
|
rodjek/puppet-lint
|
0e7ed257edc4e58a0a90e9194696adfe15ff5520
|
.travis.yml
|
.travis.yml
|
language: rust
rust:
- stable
- beta
- nightly
matrix:
allow_failures:
- rust: nightly
env:
global:
secure: m/9uIj9YUvDtVj4qelwVCYzXbaJ3M+zqeazDXDrvClIB6CSt1PaPxcKSdcUPm74+9CBKBX6XRxjz8M1Dgtu1nHPfP8BzcyAgXcpGYpBkIW1cjcwi6p9LRQS7Dg3VWZlAgSvEqEDSOLjCxtmtQ2Spea4CrLfq2nsO2O86hbSsi6M=
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq libmagic1 libmagic-dev
script:
- cargo build --verbose
- cargo test --verbose
- cargo doc --verbose
after_success: |
[ $TRAVIS_BRANCH = master ] &&
[ $TRAVIS_PULL_REQUEST = false ] &&
echo '<meta http-equiv=refresh content=0;url=magic_sys/index.html>' > target/doc/index.html &&
sudo pip install ghp-import &&
ghp-import -n target/doc &&
git push -fq https://${GH_TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git gh-pages
|
sudo: false
language: rust
cache: cargo
rust:
- stable
- beta
- nightly
matrix:
allow_failures:
- rust: nightly
env:
global:
secure: m/9uIj9YUvDtVj4qelwVCYzXbaJ3M+zqeazDXDrvClIB6CSt1PaPxcKSdcUPm74+9CBKBX6XRxjz8M1Dgtu1nHPfP8BzcyAgXcpGYpBkIW1cjcwi6p9LRQS7Dg3VWZlAgSvEqEDSOLjCxtmtQ2Spea4CrLfq2nsO2O86hbSsi6M=
addons:
apt:
packages:
- libmagic-dev
script:
- cargo build --verbose
- cargo test --verbose
- cargo doc --verbose
after_success: |
[ $TRAVIS_BRANCH = master ] &&
[ $TRAVIS_PULL_REQUEST = false ] &&
echo '<meta http-equiv=refresh content=0;url=magic_sys/index.html>' > target/doc/index.html &&
sudo pip install ghp-import &&
ghp-import -n target/doc &&
git push -fq https://${GH_TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git gh-pages
|
Use container-based infrastructure and caching on Travis
|
Use container-based infrastructure and caching on Travis
|
YAML
|
apache-2.0
|
robo9k/rust-magic-sys
|
8694639c03dfa0b92da837ac8acd59c0091075f8
|
.travis.yml
|
.travis.yml
|
language: java
# Enable container-based infrastructure
# see http://docs.travis-ci.com/user/workers/container-based-infrastructure/
sudo: false
jdk:
- openjdk7
cache:
directories:
- $HOME/.m2/repository
script:
- mvn -Prun-its clean install || tail -n 100 srcdeps-maven-plugin/target/it/simple-it/build.log && exit 1
|
language: java
# Enable container-based infrastructure
# see http://docs.travis-ci.com/user/workers/container-based-infrastructure/
sudo: false
jdk:
- oraclejdk8
cache:
directories:
- $HOME/.m2/repository
script:
- mvn -Prun-its clean install || tail -n 100 srcdeps-maven-plugin/target/it/simple-it/build.log && exit 1
|
Make Travis use Java 8 for now
|
Make Travis use Java 8 for now
|
YAML
|
apache-2.0
|
l2x6/srcdeps-maven-plugin,srcdeps/srcdeps-maven,jpkrohling/srcdeps-maven-plugin,l2x6/srcdeps,l2x6/srcdeps,srcdeps/srcdeps-core
|
62d2ea9b8ea829dbae37e4851dae97507a35cf6f
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- ree
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- rbx-18mode
- rbx-19mode
- jruby-18mode
- jruby-19mode
script: "bundle exec rake test"
|
language: ruby
rvm:
- ree
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- rbx-18mode
- rbx-19mode
- jruby-18mode
- jruby-19mode
script: "bundle exec rake test"
matrix:
# https://github.com/jruby/jruby/issues/573
allow_failures:
- rvm: jruby-18mode
- rvm: jruby-19mode
|
Allow failures on jRuby for now
|
Allow failures on jRuby for now
|
YAML
|
mit
|
transloadit/rails-sdk
|
25f40e62fdcf06ece6585d23efd451d038fe03a8
|
.travis.yml
|
.travis.yml
|
language: go
go:
- 1.6.2
sudo: false
install:
- go get -d -v ./...
- go get github.com/mattn/goveralls
script:
- GOOS=darwin go build
- GOOS=windows go build
- GOOS=linux go build
- $HOME/gopath/bin/goveralls -service=travis-ci
|
language: go
go:
- 1.8
sudo: false
install:
- go get -d -v ./...
- go get github.com/mattn/goveralls
script:
- GOOS=darwin go build
- GOOS=windows go build
- GOOS=linux go build
- $HOME/gopath/bin/goveralls -service=travis-ci
|
Bump Go version to 1.8.0.
|
Bump Go version to 1.8.0.
Brings support for sub-tests.
|
YAML
|
mit
|
containous/flaeg
|
59acde50db280bba3ad3837db9964c11b7457395
|
.travis.yml
|
.travis.yml
|
language: objective-c
os: osx
osx_image: xcode7
env:
matrix:
- NAME='iPhone 6' OS=8.1
- NAME='iPhone 6' OS=8.2
- NAME='iPhone 6' OS=8.3
- NAME='iPhone 6' OS=8.4
- NAME='iPhone 4S' OS=9.0
- NAME='iPhone 5S' OS=9.0
- NAME='iPhone 6' OS=9.0
- NAME='iPhone 6 Plus' OS=9.0
- NAME='iPad 2' OS=9.0
- NAME='iPad Air' OS=9.0
script:
- xcodebuild -project RMActionController-Demo.xcodeproj -scheme RMActionController-Demo -sdk iphonesimulator9.0 ONLY_ACTIVE_ARCH=NO
- xcodebuild test -project RMActionController-Demo.xcodeproj -scheme RMActionController-Demo -destination "platform=iOS Simulator,name=$NAME,OS=$OS"
|
language: objective-c
os: osx
osx_image: xcode7
env:
matrix:
- NAME='iPhone 6' OS=8.1
- NAME='iPhone 6' OS=8.2
- NAME='iPhone 6' OS=8.3
- NAME='iPhone 6' OS=8.4
- NAME='iPhone 4S' OS=9.0
- NAME='iPhone 5S' OS=9.0
- NAME='iPhone 6' OS=9.0
- NAME='iPhone 6 Plus' OS=9.0
- NAME='iPad 2' OS=9.0
- NAME='iPad Air' OS=9.0
script:
- xcodebuild -workspace RMActionController-Demo.xcworkspace -scheme RMActionController-Demo -sdk iphonesimulator9.0 ONLY_ACTIVE_ARCH=NO
- xcodebuild test -workspace RMActionController-Demo.xcworkspace -scheme RMActionController-Demo -destination "platform=iOS Simulator,name=$NAME,OS=$OS"
|
Use the workspace and not the project
|
Use the workspace and not the project
|
YAML
|
mit
|
CooperRS/RMActionController,CooperRS/RMActionController,Rash-ML/RMActionController,Rash-ML/RMActionController
|
0b86b48bf9659bd9cdf8c3eabfaf2e7788973bd6
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 1.9.3
- "2.0"
- "2.1"
- jruby-19mode
- rbx-2
env:
- ACTIVE_RECORD_BRANCH="master"
- ACTIVE_RECORD_VERSION="~> 4.2.0.beta1"
- ACTIVE_RECORD_VERSION="~> 4.1.0"
- ACTIVE_RECORD_VERSION="~> 4.0.0"
- ACTIVE_RECORD_VERSION="~> 3.2.0"
- ACTIVE_RECORD_VERSION="~> 3.1.0"
- ACTIVE_RECORD_VERSION="~> 3.0.0"
matrix:
allow_failures:
- env: ACTIVE_RECORD_BRANCH="master"
- env: ACTIVE_RECORD_VERSION="~> 4.2.0.beta1"
|
language: ruby
rvm:
- 1.9.3
- "2.0"
- "2.1"
- jruby-19mode
- rbx-2
install:
- bundle install --retry=3
env:
- ACTIVE_RECORD_BRANCH="master"
- ACTIVE_RECORD_VERSION="~> 4.2.0.beta1"
- ACTIVE_RECORD_VERSION="~> 4.1.0"
- ACTIVE_RECORD_VERSION="~> 4.0.0"
- ACTIVE_RECORD_VERSION="~> 3.2.0"
- ACTIVE_RECORD_VERSION="~> 3.1.0"
- ACTIVE_RECORD_VERSION="~> 3.0.0"
matrix:
allow_failures:
- env: ACTIVE_RECORD_BRANCH="master"
- env: ACTIVE_RECORD_VERSION="~> 4.2.0.beta1"
|
Fix rbx builds on Travis
|
Fix rbx builds on Travis
See travis-ci/travis-ci#2821.
|
YAML
|
mit
|
Casecommons/with_model
|
75b14f6e6ee090fb96adb6e80ebd63d3b56a3490
|
.travis.yml
|
.travis.yml
|
language: go
go:
- 1.2
- 1.3.3
- 1.4.2
- 1.5
- tip
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq iptables ipset
script:
- go test -v ./...
|
language: go
go:
- 1.4.2
- 1.5
- tip
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq iptables ipset
script:
- go test -v ./...
|
Remove legacy versions from CI.
|
Remove legacy versions from CI.
|
YAML
|
mit
|
gmccue/go-ipset
|
3e4c9a101cfdcf80198c7ed37f1ba982ebdd5739
|
.travis.yml
|
.travis.yml
|
language: ruby
sudo: false
services:
- redis-server
cache: bundler
before_install:
- gem update --system
- gem --version
- gem install bundler
- bundle --version
# Install pahantomjs
- mkdir travis-phantomjs
- wget https://s3.amazonaws.com/travis-phantomjs/phantomjs-2.0.0-ubuntu-12.04.tar.bz2 -O $PWD/travis-phantomjs/phantomjs-2.0.0-ubuntu-12.04.tar.bz2
- tar -xvf $PWD/travis-phantomjs/phantomjs-2.0.0-ubuntu-12.04.tar.bz2 -C $PWD/travis-phantomjs
- export PATH=$PWD/travis-phantomjs:$PATH
install: bundle install --without development
rvm:
- 2.4
- 2.5
- 2.6
matrix:
fast_finish: true
include:
-
rvm: 2.4
env: SUITE="rubocop"
gemfile: Gemfile
gemfile:
- gemfiles/sidekiq_5.0.gemfile
- gemfiles/sidekiq_5.1.gemfile
- gemfiles/sidekiq_5.2.gemfile
- gemfiles/sidekiq_6.0.gemfile
|
language: ruby
services:
- redis-server
cache: bundler
before_install:
- gem update --system
- gem --version
- gem install bundler
- bundle --version
# Install pahantomjs
- mkdir travis-phantomjs
- wget https://s3.amazonaws.com/travis-phantomjs/phantomjs-2.0.0-ubuntu-12.04.tar.bz2 -O $PWD/travis-phantomjs/phantomjs-2.0.0-ubuntu-12.04.tar.bz2
- tar -xvf $PWD/travis-phantomjs/phantomjs-2.0.0-ubuntu-12.04.tar.bz2 -C $PWD/travis-phantomjs
- export PATH=$PWD/travis-phantomjs:$PATH
install: bundle install --without development
rvm:
- 2.4
- 2.5
- 2.6
matrix:
fast_finish: true
include:
-
rvm: 2.4
env: SUITE="rubocop"
gemfile: Gemfile
gemfile:
- gemfiles/sidekiq_5.0.gemfile
- gemfiles/sidekiq_5.1.gemfile
- gemfiles/sidekiq_5.2.gemfile
- gemfiles/sidekiq_6.0.gemfile
|
Drop unused sudo: false Travis directive
|
CI: Drop unused sudo: false Travis directive
|
YAML
|
mit
|
sensortower/sidekiq-throttled,sensortower/sidekiq-throttled,sensortower/sidekiq-throttled
|
b9309bc7b1aef651631a58b3bdaaa0e44ef154a9
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 7.0
- 7.1
cache:
directories:
- vendor
- $HOME/.composer/cache
install:
- if [[ "$(php -v | grep 'PHP 7')" ]]; then phpenv config-rm xdebug.ini; fi
- rm composer.lock
- composer update --no-scripts
- cp .env.testing .env
- php artisan clear-compiled
- php artisan optimize
- php artisan env
- cp .env.testing .env
- mv storage/database/databasecopy.sqlite storage/database/database.sqlite
script:
- phpunit
|
language: php
php:
- 7.0
- 7.1
cache:
directories:
- vendor
- $HOME/.composer/cache
install:
- if [[ "$(php -v | grep 'PHP 7')" ]]; then phpenv config-rm xdebug.ini; fi
- rm composer.lock
- composer update --no-scripts
- cp .env.testing .env
- php artisan clear-compiled
- php artisan optimize
- php artisan env
- cp .env.testing .env
- mv storage/database/databasecopy.sqlite storage/database/database.sqlite
script:
- phpunit
# safelist
branches:
only:
- develop
- master
|
Stop Travis from building weird branches.
|
Stop Travis from building weird branches.
|
YAML
|
agpl-3.0
|
firefly-iii/firefly-iii,firefly-iii/firefly-iii,JC5/firefly-iii,JC5/firefly-iii,firefly-iii/firefly-iii,firefly-iii/firefly-iii
|
46b754b42ec658c2c56af82b260e66c27bd91071
|
.travis.yml
|
.travis.yml
|
language: php
php:
- "5.5"
- "5.6"
- "7.0"
- "hhvm"
install:
- composer install
- composer dumpautoload
before_script:
- curl http://cs.sensiolabs.org/get/php-cs-fixer.phar -o php-cs-fixer.phar
script:
- output=$(php -n php-cs-fixer.phar fix -v --dry-run --level=psr2 src); if [[ $output ]]; then while read -r line; do echo -e "\e[00;31m$line\e[00m"; done <<< "$output"; false; fi;
|
language: php
php:
- "5.6"
- "7.0"
install:
- composer install
- composer dumpautoload
before_script:
- curl -L https://github.com/FriendsOfPHP/PHP-CS-Fixer/releases/download/v1.12.4/php-cs-fixer.phar -o php-cs-fixer
script:
- output=$(php -n php-cs-fixer fix -v --dry-run --level=psr2 src); if [[ $output ]]; then while read -r line; do echo -e "\e[00;31m$line\e[00m"; done <<< "$output"; false; fi;
|
Test only on php5.6+ (as per Laravel 5.3 requirements).
|
Test only on php5.6+ (as per Laravel 5.3 requirements).
|
YAML
|
mit
|
taskforcedev/crud-api,taskforcedev/crud-api
|
952bbe1f6ab426eefc78f5ba01c9c56ed5f1c69f
|
.travis.yml
|
.travis.yml
|
sudo: false
language: go
go:
- tip
before_install:
- go get -v github.com/mitchellh/gox
- go get -v github.com/tcnksm/ghr
after_success:
# Cross compile go project
- gox -os="linux darwin windows" -arch="386 amd64" -output "pkg/{{.Dir}}_{{.OS}}_{{.Arch}}" -ldflags="-X main.Version=`git describe --tags --match 'v*'`"
# Verify compiled binaries
- ./pkg/nv_linux_amd64 version
# Create pre releases for every commits
- ghr --username uetchy --replace --prerelease pre-release pkg/
deploy: # Deploy stable version if commmits have a tag such as 'v2.0.0'
provider: releases
api_key: $GITHUB_TOKEN
file: "pkg/*"
skip_cleanup: true
on:
tags: true
|
sudo: false
language: go
go:
- tip
before_install:
- go get -v github.com/mitchellh/gox
- go get -v github.com/tcnksm/ghr
after_success:
# Cross compile go project
- gox -os="linux darwin windows" -arch="386 amd64" -output "pkg/{{.Dir}}_{{.OS}}_{{.Arch}}" -ldflags="-X main.Version=`git describe --tags --match 'v*'`"
# Verify compiled binaries
- ./pkg/nv_linux_amd64 --version
# Create pre releases for every commits
- ghr --username uetchy --replace --prerelease pre-release pkg/
deploy: # Deploy stable version if commmits have a tag such as 'v2.0.0'
provider: releases
api_key: $GITHUB_TOKEN
file: "pkg/*"
skip_cleanup: true
on:
tags: true
|
Use --version instead of version
|
Use --version instead of version
|
YAML
|
mit
|
uetchy/nv
|
c14ca9a1a994fe5786907943bbb86c1210c257de
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "5.1"
sudo: required
services:
- docker
script:
- npm test
- npm test:integration
|
language: node_js
node_js:
- "5.1"
sudo: required
services:
- docker
script:
- npm test
- npm run test:integration
|
Fix NPM script execution of integration testing via Travis
|
Fix NPM script execution of integration testing via Travis
|
YAML
|
mit
|
saguijs/sagui,saguijs/sagui
|
3b0bb30aa2a69c09bb44308d20591bd20bca7f26
|
.travis.yml
|
.travis.yml
|
language: java
script: mvn package
jdk:
- oraclejdk8
- oraclejdk9
- openjdk8
|
language: java
script: mvn clean package
jdk:
- oraclejdk8
- oraclejdk9
- openjdk8
|
Clean working directory before building
|
Travis: Clean working directory before building
|
YAML
|
apache-2.0
|
SchunterKino/kinoapi
|
acb7c92d279ee69ac2dcc51f264a0f5c77128115
|
.travis.yml
|
.travis.yml
|
language: ruby
sudo: false
cache: bundler
rvm:
- 2.4.0
- 2.3.3
- 2.2.6
- jruby-9.1.5.0
env:
global:
- JRUBY_OPTS="--debug"
after_success:
- bundle exec codeclimate-test-reporter
|
language: ruby
sudo: false
cache: bundler
rvm:
- 2.4.1
- 2.3.3
- 2.2.6
- jruby-9.1.5.0
env:
global:
- JRUBY_OPTS="--debug"
after_success:
- bundle exec codeclimate-test-reporter
|
Test with latest Ruby version
|
Test with latest Ruby version
|
YAML
|
mit
|
pitluga/keepassx
|
43c50ef43d811bc9ff67a77fc1a2452ec6a97089
|
.travis.yml
|
.travis.yml
|
language: go
go:
- 1.2.2
- 1.3.3
- 1.4.2
- 1.5.1
before_install:
- go get github.com/axw/gocov/gocov
- go get github.com/mattn/goveralls
- go get golang.org/x/tools/cmd/cover
install:
- go get github.com/stretchr/testify/assert
- go get github.com/edsrzf/mmap-go
script:
- $HOME/gopath/bin/goveralls -service=travis-ci -repotoken $COVERALLS_TOKEN
|
language: go
go:
- 1.2.2
- 1.3.3
- 1.4.2
- 1.5.1
before_install:
- go get github.com/axw/gocov/gocov
- go get github.com/mattn/goveralls
- go get golang.org/x/tools/cmd/cover
install:
- go get github.com/stretchr/testify/assert
- go get github.com/edsrzf/mmap-go
script:
- $HOME/gopath/bin/goveralls -repotoken $COVERALLS_TOKEN
|
Remove service arg for goveralls
|
Remove service arg for goveralls
|
YAML
|
apache-2.0
|
blacklabeldata/m3
|
771081dc70b514da4884936aceb1a4de0f3a1768
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "2.7"
install: "python setup.py install"
script:
- "nosetests --with-coverage --cover-package=phreeqpython"
|
language: python
python:
- "2.7"
- "3.5"
install: "python setup.py install"
script:
- "nosetests --with-coverage --cover-package=phreeqpython"
|
Add python 3 to unit testing
|
Add python 3 to unit testing
|
YAML
|
apache-2.0
|
VitensTC/phreeqpython
|
300fb559f77b6631714178179685cdb2a77926fa
|
.travis.yml
|
.travis.yml
|
---
language: java
install: true
script: $TARGET
jdk:
- openjdk7
- oraclejdk7
- oraclejdk8
env:
matrix:
- TARGET='mvn test'
- TARGET='./gradlew test -s'
notifications:
email:
- [email protected]
- [email protected]
|
---
language: java
install: true
script: $TARGET
jdk:
- openjdk7
- oraclejdk7
- oraclejdk8
env:
matrix:
- TARGET='mvn test'
- TARGET='./gradlew test -s'
notifications:
email:
- [email protected]
- [email protected]
cache:
directories:
- $HOME/.m2/repository
|
Add Maven repository to the Travis cache
|
Add Maven repository to the Travis cache
This speeds up Travis because dependencies can be cached between builds.
|
YAML
|
apache-2.0
|
flapdoodle-oss/de.flapdoodle.embed.mongo,flapdoodle-oss/de.flapdoodle.embed.mongo
|
ff7946d57fc9d323cc7587bfd15adfbd637f53a9
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "0.10"
before_script:
- npm install -g grunt-cli
script:
- npm install
- grunt
|
language: node_js
node_js:
- "0.10"
before_install:
- npm install -g grunt-cli
script:
- grunt
|
Modify Flow of CI Script
|
Modify Flow of CI Script
|
YAML
|
apache-2.0
|
Workiva/wf-grunt
|
48b114a5fdb07695be65d6dfb4a237e277422629
|
.travis.yml
|
.travis.yml
|
language: go
go:
- 1.6
- tip
before_install:
- go get github.com/mattn/goveralls
- go get golang.org/x/tools/cmd/cover
script:
- go test -v ./...
- $HOME/gopath/bin/goveralls -service=travis-ci
|
language: go
go:
- 1.6
- tip
before_install:
- go get github.com/mattn/goveralls
- go get golang.org/x/tools/cmd/cover
- go get github.com/lawrencewoodman/roveralls
script:
- go test -v ./...
- $HOME/gopath/bin/roveralls
- $HOME/gopath/bin/goveralls -coverprofile=roveralls.coverprofile -service=travis-ci
|
Use roveralls to get coverage
|
Use roveralls to get coverage
|
YAML
|
mit
|
vlifesystems/rhkit
|
195ddc4fbbdc2dc37d1fa74ac8885cb86060bb92
|
.travis.yml
|
.travis.yml
|
language: java
jdk:
- oraclejdk7
# - openjdk7
# - openjdk6
env:
global:
- secure: "pmNBqCAW1rc4WKHEmnroZNwAMus18K1VWhRYwt+CN0acH8griJp612tjwWcI\n9XkZcSPR0CJx1TZqGDZZTFH44Pkm6ELU1kc54xtJR6WMXnubEVoEom0tcv/1\nNyzxv9UFJfaNgaTESww+OXSlO9wQre5ZS0/wn2xrz0+twtOPYDU="
- secure: "CZ9mejMLJdrh+a5TFXsNSiYyK9K/zNYOtubv2sPq1OEGhuohdUfLtdsk7bK9\nQcIlhZjrE5Q/wVgjZcFsnVpKhnUSRLC7sTOh6tu08EwpNtnNLl5AeUztOMCs\nxhG5H7jDu9uEH81WDZnIuK4Zq4qxXx523rnqQfk4DsTCKLVh9jI="
before_install:
- git submodule update --init --recursive
before_script:
- python etc/travis-sonatype.py
script: python etc/travis-build.py --settings ~/.m2/sonatype.xml
after_success:
- mvn clean cobertura:cobertura org.eluder.coveralls:coveralls-maven-plugin:cobertura
|
language: java
jdk:
- oraclejdk7
# - openjdk7
# - openjdk6
env:
global:
- secure: "pmNBqCAW1rc4WKHEmnroZNwAMus18K1VWhRYwt+CN0acH8griJp612tjwWcI\n9XkZcSPR0CJx1TZqGDZZTFH44Pkm6ELU1kc54xtJR6WMXnubEVoEom0tcv/1\nNyzxv9UFJfaNgaTESww+OXSlO9wQre5ZS0/wn2xrz0+twtOPYDU="
- secure: "CZ9mejMLJdrh+a5TFXsNSiYyK9K/zNYOtubv2sPq1OEGhuohdUfLtdsk7bK9\nQcIlhZjrE5Q/wVgjZcFsnVpKhnUSRLC7sTOh6tu08EwpNtnNLl5AeUztOMCs\nxhG5H7jDu9uEH81WDZnIuK4Zq4qxXx523rnqQfk4DsTCKLVh9jI="
before_install:
- git submodule update --init --recursive
before_script:
- python etc/travis-sonatype.py
script: python etc/travis-build.py --settings ~/.m2/sonatype.xml
after_success:
- mvn clean cobertura:cobertura org.eluder.coveralls:coveralls-maven-plugin:report
|
Use report goal instead of cobertura.
|
Use report goal instead of cobertura.
|
YAML
|
mit
|
psiniemi/coveralls-maven-plugin,trautonen/coveralls-maven-plugin,psiniemi/coveralls-maven-plugin,velo/coveralls-maven-plugin,andrioli/coveralls-maven-plugin,psiniemi/coveralls-maven-plugin,velo/coveralls-maven-plugin,manish-hike/coveralls-maven-plugin,manish-hike/coveralls-maven-plugin,andrioli/coveralls-maven-plugin,trautonen/coveralls-maven-plugin,velo/coveralls-maven-plugin,manish-hike/coveralls-maven-plugin,trautonen/coveralls-maven-plugin,andrioli/coveralls-maven-plugin
|
ec02fc328950f80099a77d0c8025f91b316d2dfd
|
.travis.yml
|
.travis.yml
|
language: ruby
cache: bundler
sudo: false
rvm:
- 2.2
matrix:
include:
- rvm: 2.1
env: "RAILS_VERSION=4.2.1"
env:
global:
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true
matrix:
- "RAILS_VERSION=4.1.10"
- "RAILS_VERSION=4.2.1"
notifications:
email:
recipients:
- "[email protected]"
on_success: "change"
on_failure: "always"
irc:
channels:
- "irc.freenode.org#scholarsphere"
- "irc.freenode.org#projecthydra"
template:
- "%{repository}//%{branch}@%{commit} by %{author}: %{message} - %{build_url}"
services:
- redis-server
before_script:
- jdk_switcher use oraclejdk8
|
language: ruby
cache: bundler
sudo: false
rvm:
- 2.2
env:
global:
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true
matrix:
- "RAILS_VERSION=4.2.3"
notifications:
email:
recipients:
- "[email protected]"
on_success: "change"
on_failure: "always"
irc:
channels:
- "irc.freenode.org#scholarsphere"
- "irc.freenode.org#projecthydra"
template:
- "%{repository}//%{branch}@%{commit} by %{author}: %{message} - %{build_url}"
services:
- redis-server
before_script:
- jdk_switcher use oraclejdk8
|
Test on a single version of ruby/rails to speed up tests
|
Test on a single version of ruby/rails to speed up tests
|
YAML
|
apache-2.0
|
samvera/hyrax,samvera/hyrax,samvera/hyrax,samvera/hyrax
|
2307bb75625706a37427fa101a7e77af43342e2f
|
.travis.yml
|
.travis.yml
|
language: cpp
compiler:
- gcc
- clang
before_install:
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
- sudo apt-get update -qq
- sudo apt-get install -qq g++-4.8 cmake libboost1.48-all-dev libxi-dev libxmu-dev freeglut3-dev
- git clone https://github.com/nigels-com/glew.git glew
- cd glew
- make -j5
- sudo make install
- cd $HOME
- if [ "$CXX" = "g++" ]; then export CXX="g++-4.8" CC="gcc-4.8"; fi
script:
- printf "set(GLEW_INCLUDE_DIR \"/usr/include\")\n" > cmake/FindGLEW.cmake
- printf "set(GLEW_LIBRARY \"/usr/lib/libGLEW.a\")\n" >> cmake/FindGLEW.cmake
- printf "set(GLEW_FOUND TRUE)\n" >> cmake/FindGLEW.cmake
- mkdir -p build
- cd build
- cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_FLAGS="-std=c++11 -msse4.1"
- make -j5
- sudo make install
|
language: cpp
compiler:
- gcc
- clang
before_install:
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
- sudo apt-get update -qq
- sudo apt-get install -qq g++-4.8 cmake libboost1.48-all-dev libglew-dev libxi-dev libxmu-dev freeglut3-dev
- if [ "$CXX" = "g++" ]; then export CXX="g++-4.8" CC="gcc-4.8"; fi
script:
- printf "set(GLEW_INCLUDE_DIR \"/usr/include\")\n" > cmake/FindGLEW.cmake
- printf "set(GLEW_LIBRARY \"/usr/lib/x86_64-linux-gnu/libGLEW.so\")\n" >> cmake/FindGLEW.cmake
- printf "set(GLEW_FOUND TRUE)\n" >> cmake/FindGLEW.cmake
- mkdir -p build
- cd build
- cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_FLAGS="-std=c++11 -msse4.1"
- make -j5
- sudo make install
|
Revert "Build glew from source for Travis-CI"
|
Revert "Build glew from source for Travis-CI"
This reverts commit 742f759a249a65ff5a69251670fb69e7d134f01d.
Not a good idea, perhaps the GLEW guys should consider automated build tests, too...
|
YAML
|
mit
|
ukoeln-vis/ctpperf,szellmann/visionaray,tu500/visionaray,tu500/visionaray,ukoeln-vis/ctpperf,szellmann/visionaray
|
f00863e21e832adeed73d836ba4e29bbe94dd8b7
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "2.7"
- "3.3"
git:
submodules: false
sudo: false # Enables running on faster infrastructure.
install:
- pip install -r dev-requirements.txt
- pip install coveralls
- pip install pep8
script:
- ./checkstyle.sh
- coverage run --source willie -m py.test .
- coverage report --show-missing
|
language: python
python:
- "2.7"
- "3.3"
git:
submodules: false
sudo: false # Enables running on faster infrastructure.
cache:
directories:
- $HOME/.cache/pip
install:
- pip install -r dev-requirements.txt
- pip install coveralls
- pip install pep8
script:
- ./checkstyle.sh
- coverage run --source willie -m py.test .
- coverage report --show-missing
|
Enable pip caching for CI tests.
|
Enable pip caching for CI tests.
|
YAML
|
mit
|
Uname-a/knife_scraper,Uname-a/knife_scraper,Uname-a/knife_scraper
|
f68049d757e4ebc1a804f62b086358766fde0f05
|
.travis.yml
|
.travis.yml
|
script: "script/test_all"
bundler_args: "--standalone --binstubs --without documentation"
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- jruby-18mode
- jruby-19mode
- ree
- rbx-18mode
- rbx-19mode
- 2.0.0
|
script: "script/test_all"
bundler_args: "--standalone --binstubs --without documentation"
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- jruby-18mode
- jruby-19mode
- ree
- rbx-18mode
- rbx-19mode
- 2.0.0
matrix:
allow_failures:
- rvm: rbx-19mode
- rvm: rbx-18mode
|
Revert "rbx build is green; let us try to keep it that way"
|
Revert "rbx build is green; let us try to keep it that way"
This reverts commit aa473cdf4651f7530f44ea0e905e8e230f4e0e35.
|
YAML
|
mit
|
danielfone/rspec-expectations,yaoshipu/rspec-expectations,AEgan/rspec-expectations,bjpcjp/rspec-expectations,sferik/rspec-expectations,rspec/rspec-expectations,alexaltair/rspec-expectations,danielfone/rspec-expectations,jdax/rspec-expectations,unmanbearpig/rspec-expectations,chrisarcand/rspec-expectations,unmanbearpig/rspec-expectations,maclover7/rspec-expectations,h4ck3rm1k3/rspec-expectations,zsyed91/rspec-expectations,dg-ratiodata/rspec-expectations,rspec/rspec-expectations,h4ck3rm1k3/rspec-expectations,emilyforst/rspec-expectations,edwardpark/rspec-expectations,jamelablack/rspec-expectations,chrisarcand/rspec-expectations,alexaltair/rspec-expectations,jdax/rspec-expectations,zsyed91/rspec-expectations,yaoshipu/rspec-expectations,jasonkarns/rspec-expectations,AEgan/rspec-expectations,jamelablack/rspec-expectations,sferik/rspec-expectations,bjpcjp/rspec-expectations,emilyforst/rspec-expectations,maclover7/rspec-expectations,dg-ratiodata/rspec-expectations,edwardpark/rspec-expectations,jasonkarns/rspec-expectations
|
5e81d2098e91c8bfc2106d7facf7e8da480acdd3
|
.travis.yml
|
.travis.yml
|
sudo: required
language: node_js
cache:
yarn: true
directories:
- node_modules
install:
- yarn
jobs:
include:
- stage: Build
script:
- yarn lint
- yarn build
node_js: "8"
- script:
- yarn lint
- yarn build
node_js: "10"
- stage: Tests
script: yarn test:unit
name: "Unit Tests NodeJS 8"
node_js: "8"
- script: yarn test:unit
name: "Unit Tests NodeJS 10"
node_js: "10"
- script: yarn installer:ci
name: "E2E Tests"
if: branch IN (master, develop)
node_js: "8"
addons:
chrome: stable
|
sudo: required
language: node_js
cache:
yarn: true
directories:
- node_modules
install:
- yarn
jobs:
include:
- &build
- stage: Build
script:
- yarn lint
- yarn build
node_js: "10"
- <<: *build
node_js: '8'
- &unit
- stage: Tests
script: yarn test:unit
name: "Unit Tests"
node_js: "10"
- <<: *unit
node_js: "8"
- &installer
- script: yarn installer:ci
name: "Installer test"
if: branch IN (master, develop)
node_js: "10"
addons:
chrome: stable
- <<: *installer
node_js: "8"
|
Remove duplication from Travis config
|
Remove duplication from Travis config
|
YAML
|
mit
|
pkarw/vue-storefront,pkarw/vue-storefront,DivanteLtd/vue-storefront,DivanteLtd/vue-storefront,DivanteLtd/vue-storefront,pkarw/vue-storefront,DivanteLtd/vue-storefront,pkarw/vue-storefront
|
35d754633d76d0d309cac69d5790189e58c92ba7
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- 0.12.10
- 4.3.0
- 5.7.0
|
language: node_js
node_js:
- 0.12.18
- 4.7.2
- 5.12.0
- 6.9.4
- 7.4.0
|
Test on all the major node versions
|
Test on all the major node versions
|
YAML
|
mit
|
EventSource/eventsource,aslakhellesoy/eventsource,aslakhellesoy/eventsource-node,EventSource/eventsource,aslakhellesoy/eventsource,aslakhellesoy/eventsource-node
|
f77d187f1322acf801b004a72e51fefddfbb30bb
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "0.10"
- "0.12"
- "4"
- "6"
- "7"
env:
global:
- COVERALLS_REPO_TOKEN=sqDxXMd01aMtd3rb6tzOL8BsrsUOV4I66
cache:
directories:
- node_modules
after_script:
- npm run coveralls
sudo: false
|
language: node_js
node_js:
- "0.10"
- "0.12"
- "4"
- "6"
- "8"
env:
global:
- COVERALLS_REPO_TOKEN=sqDxXMd01aMtd3rb6tzOL8BsrsUOV4I66
cache:
directories:
- node_modules
after_script:
- npm run coveralls
sudo: false
|
Add Node.js 8 to Travis
|
Add Node.js 8 to Travis
|
YAML
|
mit
|
tarunc/gulp-jsbeautifier
|
048900e05204a015f1c965d50e90ded797ef771b
|
.travis.yml
|
.travis.yml
|
language: ruby
dist: focal
matrix:
include:
- name: "RuboCop lint on pre-installed Ruby version"
rvm: 2.7.1 # Pre-installed Ruby version
before_install:
- gem install bundler
script: bundle exec rake rubocop # ONLY lint once, first
- rvm: 2.6.7
before_script:
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
- chmod +x ./cc-test-reporter
- ./cc-test-reporter before-build
after_script:
- ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT
- rvm: 2.7.3
- rvm: 3.0.1
- rvm: jruby-9.2.17.0
env:
- JRUBY_OPTS="--debug"
- rvm: truffleruby-head
allow_failures:
- rvm: truffleruby-head
|
language: ruby
dist: focal
matrix:
include:
- name: "RuboCop lint on pre-installed Ruby version"
rvm: 2.7.1 # Pre-installed Ruby version
before_install:
- gem install bundler
script: bundle exec rake rubocop # ONLY lint once, first
- rvm: 2.6.7
before_script:
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
- chmod +x ./cc-test-reporter
- ./cc-test-reporter before-build
after_script:
- ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT
- rvm: 2.7.3
- rvm: 3.0.1
- rvm: 3.1.0
- rvm: jruby-9.2.17.0
env:
- JRUBY_OPTS="--debug"
- rvm: truffleruby-head
allow_failures:
- rvm: truffleruby-head
|
Add Ruby 3.1 to Travis
|
Add Ruby 3.1 to Travis
|
YAML
|
mit
|
elabs/pundit
|
5f019e7808fe355f53e9e8815d50b6f941bdfd76
|
.travis.yml
|
.travis.yml
|
sudo: false
language: python
python:
- "3.3"
- "3.4"
- "3.5"
- "3.6"
before_script:
- pip install -r build/build_requirements.txt
install:
- pip install .
script:
- coverage run --source="." trumpatron.py -c conf/ro.cfg -k
- coverage run --source="." trumpatron.py -c conf/ro.cfg -t
- coverage run --source="." trumpatron.py -c conf/ro.cfg -t -n 3
- coverage run --source="." trumpatron.py -c conf/non_existent.cfg -t
- coverage run --source="." trumpatron.py -c conf/main.cfg -t
- build/build.sh
after_success:
- coveralls
|
sudo: false
language: python
python:
- "3.3"
- "3.4"
- "3.5"
- "3.6"
before_script:
- pip install -r build/build_requirements.txt
install:
- pip install .
script:
- coverage run --source="." trumpatron.py -c conf/ro.cfg -k
- coverage run --source="." trumpatron.py -c conf/ro.cfg -t
- coverage run --source="." trumpatron.py -c conf/ro.cfg -t -n 3
- coverage run --source="." trumpatron.py -c conf/non_existent.cfg -t || exit 0
- coverage run --source="." trumpatron.py -c conf/main.cfg -t || exit 0
- build/build.sh
after_success:
- coveralls
|
Add Fix For Error-Testing Code Coverage Tests on Travis CI
|
Add Fix For Error-Testing Code Coverage Tests on Travis CI
|
YAML
|
mit
|
magneticstain/TrumpaTron,magneticstain/TrumpaTron
|
4c6fcdd655ec4f02e94cfcbadd3ae9a4a1ac91ca
|
.travis.yml
|
.travis.yml
|
os:
- linux
language: cpp
dist: trusty
sudo: required
matrix:
include:
- compiler: gcc
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-4.9
- g++-4.9
artifacts: true
env:
- MATRIX_EVAL="CC=gcc-4.9 && CXX=g++-4.9"
- compiler: gcc
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-5
- g++-5
artifacts: true
env:
- MATRIX_EVAL="CC=gcc-5 && CXX=g++-5"
- compiler: gcc
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-6
- g++-6
artifacts: true
env:
- MATRIX_EVAL="CC=gcc-6 && CXX=g++-6"
before_install:
- eval "${MATRIX_EVAL}"
- . scripts/travis-$TRAVIS_OS_NAME.sh
script:
- ./bootstrap.sh -a
- ./configure
- make
- make test
|
os:
- linux
language: cpp
dist: trusty
sudo: required
matrix:
include:
- compiler: gcc
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-4.9
- g++-4.9
artifacts: true
env:
- MATRIX_EVAL="CC=gcc-4.9 && CXX=g++-4.9"
- compiler: gcc
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-5
- g++-5
artifacts: true
env:
- MATRIX_EVAL="CC=gcc-5 && CXX=g++-5"
- compiler: gcc
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-6
- g++-6
artifacts: true
env:
- MATRIX_EVAL="CC=gcc-6 && CXX=g++-6"
- compiler: gcc
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-7
- g++-7
artifacts: true
env:
- MATRIX_EVAL="CC=gcc-7 && CXX=g++-7"
before_install:
- eval "${MATRIX_EVAL}"
- . scripts/travis-$TRAVIS_OS_NAME.sh
script:
- ./bootstrap.sh -a
- ./configure
- make
- make test
|
Test GCC 7 with Travis
|
Test GCC 7 with Travis
|
YAML
|
bsd-3-clause
|
dm/gearmand,dm/gearmand,dm/gearmand,dm/gearmand
|
1f4125e420e9c6bace5e3ffda69e70fcabcf0d82
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 5.5
- 5.6
- 7.0
- 7.1
- hhvm
script:
- php bread register
- php bread test
- php bread test tests/testcases
notifications:
on_success: always
on_failure: always
|
language: php
php:
- 5.6
- 7.0
- 7.1
- hhvm
script:
- php bread register
- php bread test
- php bread test tests/testcases
notifications:
on_success: always
on_failure: always
|
Write test for MakeResource class
|
feat(package): Write test for MakeResource class
Write test for MakeResource class
see #21
|
YAML
|
mit
|
huytbt/laravel-bread
|
cadbd07536968c1f872187b994e8f28f3ecef7d9
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 2.1.0
- 2.0.0
- 1.9.3
- ree
- jruby-head
- jruby-19mode
- rbx
|
language: ruby
rvm:
- 2.1.0
- 2.0.0
- 1.9.3
- jruby-head
- jruby-19mode
- rbx
|
Remove one more ruby from CI for the same reasons as previous commit.
|
Remove one more ruby from CI for the same reasons as previous commit.
|
YAML
|
mit
|
eirc/spells
|
331b06eafc8d5b6ed690ba337c1edc837121ea3c
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 1.9.3
- 2.0.0
- jruby-19mode
|
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.2.2
- jruby-19mode
|
Add ruby 2.2.2 to the build matrix
|
Add ruby 2.2.2 to the build matrix
|
YAML
|
apache-2.0
|
prometheus/client_ruby,crewton/client_ruby
|
a6e85b8a4fc4ba3fcddf4e20cec8ff5ca9d422d7
|
.travis.yml
|
.travis.yml
|
language: java
jdk:
- openjdk6
- openjdk7
- oraclejdk7
- oraclejdk8
install: mvn install -DskipTests=true -Dgpg.skip=true
after_script: mvn cobertura:cobertura coveralls:cobertura
notifications:
email:
recipients:
- [email protected]
on_success: change
on_failure: always
sudo: false
env:
global:
- secure: "NZPWyoQ7lDzSMf6zAUxXNRgwPIWGAIN6eDgTD/vnFxOPYTJX8HEvIAEuoKAqajmJMqRwUl4D1s/cANBY8+IV//KDNiOZY1Hr070Wf2FIrAyxZ13sR3YVHzK6isKF6ISgVub2qyr028Wu1y1Qv2ggx6pRvRfCIBpth3r4l4sKeQU="
addons:
coverity_scan:
project:
name: "maxmind/GeoIP2-java"
description: "Build submitted via Travis CI"
notification_email: [email protected]
build_command_prepend: "mvn clean"
build_command: "mvn -DskipTests=true compile"
branch_pattern: .*coverity.*
|
language: java
jdk:
- openjdk6
- openjdk7
- oraclejdk7
- oraclejdk8
install: mvn install -DskipTests=true -Dgpg.skip=true
after_script: mvn cobertura:cobertura coveralls:cobertura
notifications:
email:
recipients:
- [email protected]
on_success: change
on_failure: always
sudo: false
env:
global:
- secure: "NZPWyoQ7lDzSMf6zAUxXNRgwPIWGAIN6eDgTD/vnFxOPYTJX8HEvIAEuoKAqajmJMqRwUl4D1s/cANBY8+IV//KDNiOZY1Hr070Wf2FIrAyxZ13sR3YVHzK6isKF6ISgVub2qyr028Wu1y1Qv2ggx6pRvRfCIBpth3r4l4sKeQU="
addons:
coverity_scan:
project:
name: "maxmind/GeoIP2-java"
description: "Build submitted via Travis CI"
notification_email: [email protected]
build_command_prepend: "mvn clean"
build_command: "mvn -DskipTests=true compile"
branch_pattern: .*coverity.*
|
Send all emails to dev-ci@mm
|
Send all emails to dev-ci@mm
|
YAML
|
apache-2.0
|
maxmind/GeoIP2-java,maxmind/GeoIP2-java
|
3254ccbfc8cbb744ffe149a37dbc1e6e9d8aa716
|
.travis.yml
|
.travis.yml
|
---
language: ruby
rvm:
- 2.0.0
script:
- bundle exec rspec --no-drb --format progress
|
---
language: ruby
rvm:
- 2.1.2
script:
- bundle exec rspec --no-drb --format progress
|
Update Ruby version used on Travis
|
Update Ruby version used on Travis
|
YAML
|
mit
|
paulfioravanti/toy_robot
|
baa60ba7fa91b7fc54812b6a5985e375fca5ef82
|
.travis.yml
|
.travis.yml
|
language: php
sudo: false
php:
- 5.6
- 7.0
- hhvm
env:
global:
- setup=basic
- coverage=no
before_script:
- travis_retry composer self-update
- composer config discard-changes true
- if [[ $setup = 'basic' ]]; then travis_retry composer install --prefer-dist --no-interaction; fi
- if [[ $setup = 'stable' ]]; then travis_retry composer update --prefer-dist --no-interaction --prefer-stable; fi
- if [[ $setup = 'lowest' ]]; then travis_retry composer update --prefer-dist --no-interaction --prefer-lowest --prefer-stable; fi
- if [[ $setup = 'coveralls' ]]; then travis_retry composer require "satooshi/php-coveralls=~0.7" --prefer-dist --no-interaction --dev; fi
script:
- if [[ $coverage = 'yes' ]]; then phpunit -c phpunit.xml --coverage-clover build/logs/clover.xml; fi
- if [[ $coverage = 'no' ]]; then phpunit -c phpunit.xml; fi
after_script:
- if [[ $setup = 'coveralls' ]]; then php vendor/bin/coveralls -v; fi
matrix:
include:
- php: 5.6
env: setup=lowest
- php: 5.6
env: setup=stable
- php: 5.6
env: setup=coveralls coverage=yes
allow_failures:
- env: setup=stable
- env: setup=coveralls coverage=yes
fast_finish: true
|
language: php
sudo: false
php:
- 5.6
- 7.0
- 7.1
env:
global:
- setup=basic
- coverage=no
before_script:
- travis_retry composer self-update
- composer config discard-changes true
- if [[ $setup = 'basic' ]]; then travis_retry composer install --prefer-dist --no-interaction; fi
- if [[ $setup = 'stable' ]]; then travis_retry composer update --prefer-dist --no-interaction --prefer-stable; fi
- if [[ $setup = 'lowest' ]]; then travis_retry composer update --prefer-dist --no-interaction --prefer-lowest --prefer-stable; fi
- if [[ $setup = 'coveralls' ]]; then travis_retry composer require "satooshi/php-coveralls=~0.7" --prefer-dist --no-interaction --dev; fi
script:
- if [[ $coverage = 'yes' ]]; then phpunit -c phpunit.xml --coverage-clover build/logs/clover.xml; fi
- if [[ $coverage = 'no' ]]; then phpunit -c phpunit.xml; fi
after_script:
- if [[ $setup = 'coveralls' ]]; then php vendor/bin/coveralls -v; fi
matrix:
include:
- php: 5.6
env: setup=lowest
- php: 5.6
env: setup=stable
- php: 5.6
env: setup=coveralls coverage=yes
allow_failures:
- env: setup=stable
- env: setup=coveralls coverage=yes
fast_finish: true
|
Remove hhvm and add 7.1
|
Remove hhvm and add 7.1
Signed-off-by: crynobone <[email protected]>
|
YAML
|
mit
|
orchestral/memory
|
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 'if [ "$TRAVIS_PHP_VERSION" == "hhvm" ]; then vendor/bin/codecept run unit; fi;'
after_script:
- bash -c 'if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then php ocular.phar code-coverage:upload --format=php-clover tests/_output/coverage.xml; fi;'
|
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 --coverage-xml; fi;'
- bash -c 'if [ "$TRAVIS_PHP_VERSION" == "hhvm" ]; then vendor/bin/codecept run unit; fi;'
after_script:
- bash -c 'if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then php ocular.phar code-coverage:upload --format=php-clover tests/_output/coverage.xml; fi;'
|
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:
email: false
|
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/Blender2Babylon-5.0.zip
- blender --background --python-expr 'import bpy; import os; bpy.ops.wm.addon_install(filepath=os.path.abspath("Blender2Babylon-5.0.zip")); bpy.ops.wm.addon_enable(module="babylon-js")'
|
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/Blender2Babylon-5.0.zip
- blender --background --python-expr 'import bpy; import os; bpy.ops.wm.addon_install(filepath=os.path.abspath("Blender2Babylon-5.0.zip")); bpy.ops.wm.addon_enable(module="babylon-js")'
|
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:
- phpunit --coverage-clover build/logs/clover.xml
after_script:
- if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then php vendor/bin/coveralls -v; fi;
- if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then wget https://scrutinizer-ci.com/ocular.phar -t 3; fi;
- if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then php ocular.phar code-coverage:upload --format=php-clover build/logs/clover.xml; fi;
|
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/logs
script:
- phpunit --coverage-clover build/logs/clover.xml
after_script:
- if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then php vendor/bin/coveralls -v; fi;
- if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then wget https://scrutinizer-ci.com/ocular.phar -t 3; fi;
- if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then php ocular.phar code-coverage:upload --format=php-clover build/logs/clover.xml; fi;
|
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
- php: hhvm
before_install:
- if [[ $EXECUTE_TEST_COVERALLS != 'true' ]]; then phpenv config-rm xdebug.ini || return 0 ; fi
- composer self-update
- if [[ $EXECUTE_TEST_COVERALLS == 'true' ]]; then composer require --dev --no-update satooshi/php-coveralls:dev-master ; fi
install:
- travis_retry composer install --no-interaction
- composer info -i
script:
- if [[ $EXECUTE_TEST_COVERALLS == 'true' ]]; then composer test-coverage ; fi
- if [[ $EXECUTE_TEST_COVERALLS != 'true' ]]; then composer test ; fi
- if [[ $EXECUTE_CS_CHECK == 'true' ]]; then composer cs ; fi
after_script:
- if [[ $EXECUTE_TEST_COVERALLS == 'true' ]]; then composer coveralls ; fi
notifications:
email: true
|
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
- php: hhvm
before_install:
- if [[ $EXECUTE_TEST_COVERALLS != 'true' ]]; then phpenv config-rm xdebug.ini || return 0 ; fi
- composer self-update
- if [[ $EXECUTE_TEST_COVERALLS == 'true' ]]; then composer require --dev satooshi/php-coveralls:dev-master:^1.0 ; fi
install:
- travis_retry composer install --no-interaction
- composer info -i
script:
- if [[ $EXECUTE_TEST_COVERALLS == 'true' ]]; then composer test-coverage ; fi
- if [[ $EXECUTE_TEST_COVERALLS != 'true' ]]; then composer test ; fi
- if [[ $EXECUTE_CS_CHECK == 'true' ]]; then composer cs ; fi
after_script:
- if [[ $EXECUTE_TEST_COVERALLS == 'true' ]]; then composer coveralls ; fi
notifications:
email: true
|
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 server process.
# Site settings
title: Helmet
short_description: Express.js security with HTTP headers
description: Helmet helps you secure your Express.js apps by setting various HTTP headers. It's not a silver bullet, but it can help!
helmet_version: "4.4.0"
baseurl: ""
url: "https://helmetjs.github.io" # the base hostname & protocol for your site
# Build settings
markdown: CommonMarkGhPages
|
# 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 server process.
# Site settings
title: Helmet
short_description: Express.js security with HTTP headers
description: Helmet helps you secure your Express.js apps by setting various HTTP headers. It's not a silver bullet, but it can help!
helmet_version: "4.4.1"
baseurl: ""
url: "https://helmetjs.github.io" # the base hostname & protocol for your site
# Build settings
markdown: CommonMarkGhPages
|
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: [email protected]
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 hostname & protocol for your site
twitter_username:
github_username: autolab
exclude:
- README.md
- LICENSE
- Gemfile.lock
- Gemfile
# Build settings
markdown: kramdown
kramdown:
parse_block_html: true
sass:
sass_dir: _sass
#style: compressed
|
# Site settings
title: Autolab Project Blog
email: [email protected]
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 hostname & protocol for your site
twitter_username:
github_username: autolab
exclude:
- README.md
- LICENSE
- Gemfile.lock
- Gemfile
# Build settings
markdown: kramdown
kramdown:
parse_block_html: true
sass:
sass_dir: _sass
style: compressed
|
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: [email protected]
twitter: davejachimiak
github: davejachimiak
location: "Cambridge, MA"
# Plug in your disqus shortname!
# Links to include in top navigation
# For external links add external: true
links:
- title: About
url: /about
- title: Github
url: https://github.com/davejachimiak
external: true
# http://en.wikipedia.org/wiki/List_of_tz_database_time_zones
timezone: America/New_York
future: true
sass:
style: :compressed
permalink: /:year/:month/:title.html
include: [".htaccess"]
exclude: ["lib", "config.rb", "Capfile", "config", "log", "Rakefile", "Rakefile.rb", "tmp"]
|
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: [email protected]
twitter: davejachimiak
github: davejachimiak
location: "Cambridge, MA"
# Plug in your disqus shortname!
# Links to include in top navigation
# For external links add external: true
links:
- title: About
url: /about
- title: Github
url: https://github.com/davejachimiak
external: true
# http://en.wikipedia.org/wiki/List_of_tz_database_time_zones
timezone: America/New_York
future: true
sass:
style: :compressed
permalink: /:year/:month/:title.html
include: [".htaccess"]
exclude: ["lib", "config.rb", "Capfile", "config", "log", "Rakefile", "Rakefile.rb", "tmp"]
|
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 links shown are based on what AddThis assess to be the most
# likely for a particulr user to set
share_count: 6
addthis_username:
# turn on and off tag display at the bottom of a post
show_tags: true
# how many (if any) related entries to show at bottom of post
related_count: 3
# turn on and off elsewhere links in header
elsewhere_email: contact <strong>at</strong> your_site.com
elsewhere_dribbble: http://www.dribbble.com
elsewhere_github: https://github.com/bytes42/timber
elsewhere_linkedin:
elsewhere_meetup: http://www.meetup.com
elsewhere_spotify: http://www.spotify.com
elsewhere_twitter: http://www.twitter.com
elsewhere_rss: http://www.feedburner.com
# standard Jekyll options
baseurl: /timber
exclude: ["README.md", "Rakefile", "404.haml", "index.haml", "tags.haml"]
permalink: pretty
pygments: true
safe: false
|
# 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 links shown are based on what AddThis assess to be the most
# likely for a particulr user to set
share_count: 6
addthis_username:
# turn on and off tag display at the bottom of a post
show_tags: true
# how many (if any) related entries to show at bottom of post
related_count: 3
# turn on and off elsewhere links in header
elsewhere_email: contact <strong>at</strong> your_site.com
elsewhere_dribbble: http://www.dribbble.com
elsewhere_github: https://github.com/bytes42/timber
elsewhere_linkedin:
elsewhere_meetup: http://www.meetup.com
elsewhere_spotify: http://www.spotify.com
elsewhere_twitter: http://www.twitter.com
elsewhere_rss: http://www.feedburner.com
# standard Jekyll options
baseurl: /timber
exclude: ["README.md", "Rakefile", "404.haml", "index.haml", "tags.haml", "css/stylesheet.sass", "css/override.sass"]
permalink: pretty
pygments: true
safe: false
|
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.html
- title: About
url: /about
- title: Contact
url: /contact
- title: Learn
url: /learn
- title: Get Involved
url: /get-involved
social:
github: localpreservation
twitter: localpast
email: [email protected]
google_analytics: "UA-69200926-1"
|
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: /index.html
- title: About
url: /about
- title: Contact
url: /contact
- title: Learn
url: /learn
- title: Get Involved
url: /get-involved
social:
github: localpreservation
twitter: localpast
email: [email protected]
google_analytics: "UA-69200926-1"
|
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.github.io/jekyll-blog
copyright: Yan-Yi Li
author:
name: name
bio: A short paragraph about you. Lorem ipsum dolor sit amet, consectetur adipiscing elit.
avatar: avatar.jpg
email: [email protected]
github: username
twitter: username
disqus: disqus-shortname
carousel_slides: 4
words_per_minute: 200
# Build settings
sass:
style: compressed
include: ["_pages", "_data"]
gems: [jekyll-paginate]
permalink: pretty
paginate: 5
paginate_path: "/blog/page:num/"
defaults:
-
scope:
path: ""
values:
layout: "default"
-
scope:
path: ""
type: "posts"
values:
layout: "post"
comments: true
-
scope:
path: ""
type: "pages"
values:
layout: "page"
|
# 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.github.io/jekyll-blog
copyright: Yan-Yi Li
author:
name: name
bio: A short paragraph about you. Lorem ipsum dolor sit amet, consectetur adipiscing elit.
avatar: avatar.jpg
email: [email protected]
github: username
twitter: username
disqus: disqus-shortname
carousel_slides: 4
words_per_minute: 200
# Build settings
sass:
style: compressed
include: [_pages, _data]
exclude: [Gemfile, Gemfile.lock, LICENSE, Rakefile]
gems: [jekyll-paginate]
permalink: pretty
paginate: 5
paginate_path: "/blog/page:num/"
defaults:
-
scope:
path: ""
values:
layout: "default"
-
scope:
path: ""
type: "posts"
values:
layout: "post"
comments: true
-
scope:
path: ""
type: "pages"
values:
layout: "page"
|
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", "package.json"]
paginate: 9
paginate_path: "/page/:num/"
excerpt_separator: <!--more-->
twitter_username: lmgonzalves
permalink: /:year/:month/:day/:title/
|
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"]
paginate: 9
paginate_path: "/page/:num/"
excerpt_separator: <!--more-->
twitter_username: lmgonzalves
permalink: /:year/:month/:day/:title/
|
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
- superscript
- strikethrough
paginate: 6
paginate_path: "blog/page:num"
paginate_category: "blog"
exclude:
- "*.branches"
- "*.kml"
- "*.log"
- "*.nb"
- "*.trees"
- "*.cpp"
- "*.h"
- "*.hh"
- "*.java"
- "*.jar"
- "*.csv"
- "*.tsv"
- "*.txt"
- "*.rb"
- "*.py"
- "*.class"
- "*.tips"
- "*.fasta"
- "*.nex"
- "Gemfile"
- "Gemfile.lock"
projects:
- trvrb/coaltrace
- trvrb/stem
- trvrb/PACT
- trvrb/dynamics-practical
- trvrb/antigen
- trvrb/haplotypes
- trvrb/divergence
- trvrb/ancestry
- trvrb/medium-data
- blab/nextflu
|
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
- superscript
- strikethrough
paginate: 6
paginate_path: "blog/page:num"
paginate_category: "blog"
exclude:
- "*.branches"
- "*.kml"
- "*.log"
- "*.nb"
- "*.trees"
- "*.cpp"
- "*.h"
- "*.hh"
- "*.java"
- "*.jar"
- "*.csv"
- "*.tsv"
- "*.txt"
- "*.rb"
- "*.py"
- "*.class"
- "*.tips"
- "*.fasta"
- "*.nex"
- "Gemfile"
- "Gemfile.lock"
- "projects/nextflu/auspice/css/*"
projects:
- trvrb/coaltrace
- trvrb/stem
- trvrb/PACT
- trvrb/dynamics-practical
- trvrb/antigen
- trvrb/haplotypes
- trvrb/divergence
- trvrb/ancestry
- trvrb/medium-data
- blab/nextflu
|
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 Bhandari'
url: http://pbhandari.ca
github: http://github.com/pbhandari
twitter: https://twitter.com/prajjwal_b
key:
paginate: 5
# Custom vars
version: 2
|
# 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 Bhandari'
url: http://pbhandari.ca
email: [email protected]
github: http://github.com/pbhandari
twitter: https://twitter.com/prajjwal_b
key: https://pgp.mit.edu/pks/lookup?op=vindex&search=0x438F5F1D67D55E74
paginate: 5
# Custom vars
|
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: [email protected]
description: >
Yair is a Genius Front End Architect and a JavaScript Rockstar, designing
systems to people can communicate with machines.
baseurl: ""
url: "yairodriguez.github.io"
twitter_username: imyairodriguez
github_username: yairodriguez
# Build settings
markdown: kramdown
theme: minima
|
title: Yair, JavaScript Rockstar
author: Yair Rodriguez
keywords: Yair, Frontend, Architect, Design, JavaScript, Rockstar
email: [email protected]
description: >
Yair is a Genius Front End Architect and a JavaScript Rockstar, designing
systems to people can communicate with machines.
baseurl: ""
url: "https://yairodriguez.github.io"
twitter_username: imyairodriguez
github_username: yairodriguez
# Build settings
markdown: kramdown
theme: minima
|
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'
# disqus_shortname: 'your-disqus-name'
author:
name: 'Thomas Maroulis'
# email: ''
twitter_username: 'Dalamar42'
github_username: 'dalamar42'
linkedin_username: 'thomas-maroulis-77201489'
defaults:
-
scope:
path: ''
type: 'posts'
values:
layout: 'post'
# Build settings
destination: _site
paginate: 10
permalink: /:year/:title/
markdown: kramdown
highlighter: rouge
kramdown:
# use Github Flavored Markdown
input: GFM
# do not replace newlines by <br>s
hard_wrap: false
gems: ['jekyll-paginate']
exclude: ['README.md', 'Gemfile', 'Gemfile.lock']
|
# 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: 'your-disqus-name'
author:
name: 'Thomas Maroulis'
# email: ''
twitter_username: 'Dalamar42'
github_username: 'dalamar42'
linkedin_username: 'thomas-maroulis-77201489'
defaults:
-
scope:
path: ''
type: 'posts'
values:
layout: 'post'
# Build settings
destination: _site
paginate: 10
permalink: /:year/:title/
markdown: kramdown
highlighter: rouge
kramdown:
# use Github Flavored Markdown
input: GFM
# do not replace newlines by <br>s
hard_wrap: false
gems: ['jekyll-paginate']
exclude: ['README.md', 'Gemfile', 'Gemfile.lock']
|
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: ""
highlighter: pygments
relative_permalinks: false
twitter_username: piotr_murach
github_username: piotrmurach
gems:
- jekyll-assets
- bourbon
assets:
baseurl: ''
compress:
css: sass
js: uglifier
cachebust: hard
cache: false
gzip: [ text/css, application/javascript ]
exclude: [components, Rakefile, Gemfile, Gemfile.lock]
|
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: ""
highlighter: pygments
relative_permalinks: false
twitter_username: piotr_murach
github_username: piotrmurach
gems:
- jekyll-assets
- bourbon
assets:
baseurl: '.'
compress:
css: sass
js: uglifier
cachebust: hard
cache: false
gzip: [ text/css, application/javascript ]
exclude: [components, Rakefile, Gemfile, Gemfile.lock]
|
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
- Gemfile.lock
plugins:
- jekyll-feed
- jekyll-seo-tag
- jekyll-sitemap
twitter:
username: sorentwo
defaults:
-
values:
layout: default
theme: light
|
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
- Gemfile.lock
plugins:
- jekyll-feed
- jekyll-seo-tag
- jekyll-sitemap
twitter:
username: sorentwo
title: Soren Developer Blog
description: "Writings on web stability, performance and growth"
defaults:
-
values:
layout: default
theme: light
|
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: [email protected]
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: false
show_related_posts: false
# Disqus post comments
# (leave blank to disable Disqus)
# disqus_shortname: "molview"
# Google Plus comments
google_plus_comments: true
# Social icons
show_social_icons: true
github_username: molview
twitter_username: molview
facebook_username: molview
google_plus_id: +MolViewOrganization
# Build settings
markdown: redcarpet
redcarpet:
extensions: [smart, tables, with_toc_data]
permalink: pretty
paginate: 3
sass:
compressed: true
gems: [jekyll-paginate]
|
# Site settings
title: MolView
email: [email protected]
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: false
show_related_posts: false
# Disqus post comments
# (leave blank to disable Disqus)
# disqus_shortname: "molview"
# Google Plus comments
google_plus_comments: true
# Social icons
show_social_icons: true
github_username: molview
twitter_username: molview
facebook_username: molview
google_plus_id: +MolViewOrganization
# Build settings
markdown: kramdown
redcarpet:
extensions: [smart, tables, with_toc_data]
permalink: pretty
paginate: 3
sass:
compressed: true
gems: [jekyll-paginate]
|
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 information, see
https://help.github.com/articles/page-build-failed-config-file-error/#fixing-highlighting-errors.
|
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: [email protected]
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
domain: "citycampcha.com"
twitter_username: openchattanooga
github_username: openchattanooga
# Build settings
markdown: kramdown
sass:
style: :compressed
|
# Site settings
title: CityCampCHA
email: [email protected]
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 participants and coordinated by facilitators. Participants are expected to play active roles in sessions. This provides an excellent format for creative, open exchange geared toward action.
baseurl: "" # the subpath of your site, e.g. /blog/
url: "https://citycampcha.com" # the base hostname & protocol for your site
domain: "citycampcha.com"
twitter_username: openchattanooga
github_username: openchattanooga
# Build settings
markdown: kramdown
sass:
style: :compressed
|
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
kramdown:
auto_ids: true
footnote_nr: 1
entity_output: as_char
toc_levels: 1..6
use_coderay: false
include: [".htaccess"]
exclude: ["lib", "config.rb", "Capfile", "config", "log", "Rakefile", "Rakefile.rb", "tmp", "less", "*.sublime-project", "*.sublime-workspace", "test", "spec", "Gruntfile.js", "package.json", "node_modules", "Gemfile", "Gemfile.lock", "LICENSE", "README.md", "vendor"]
# Site owner
owner:
name: Your Name
avatar: bio-photo.jpg
email: [email protected]
disqus-shortname:
twitter:
facebook:
github:
stackexchange:
linkedin:
instagram:
flickr:
tumblr:
google:
plus:
analytics:
verify:
ad-client:
ad-slot:
bing-verify:
|
# 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
kramdown:
auto_ids: true
footnote_nr: 1
entity_output: as_char
toc_levels: 1..6
use_coderay: false
include: [".htaccess"]
exclude: ["lib", "config.rb", "Capfile", "config", "log", "Rakefile", "Rakefile.rb", "tmp", "less", "*.sublime-project", "*.sublime-workspace", "test", "spec", "Gruntfile.js", "package.json", "node_modules", "Gemfile", "Gemfile.lock", "LICENSE", "README.md", "vendor"]
# Site owner
owner:
name: Your Name
avatar: bio-photo.jpg
email: [email protected]
disqus-shortname:
twitter: #username
facebook: #username
github: #username
stackexchange: #http://stackoverflow.com/users/123456/username
linkedin: #username
instagram: #username
flickr: #username
tumblr: #username
google:
plus: #username
analytics:
verify:
ad-client:
ad-slot:
bing-verify:
|
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-raindrop.github.io,cbioley/cbioley.github.io,tcunnane/so-simple-theme,gitoneman/article,LernMoment/LernMoment.de,adulau/hack-lu-website,skhurram/skhurram.github.com,hashbox/hashbox.github.io,Faiz7412/so-simple-theme,cvandeplas/hack-lu-website,jchau623/jchau623.github.io,yansh/yansh.github.io,hashbox/hashbox.github.io,jalexvig/jalexvig.github.io,XciA/xcia.github.io,RicardoCoutinho/so-simple-theme,metrophp/metrophp.github.io,DonVato/life-blog,jainshubhi/jainshubhi.github.io,bettiblue/bettiblue.github.io,mukeshthawani/so-simple-theme,j-hayes/what-did-i-learn-today,mobeets/blog,steveacalabro/blog,kcmartin/ssim-theme,albhardy/bak.albhardy.github.io,utsw/so-simple-theme,Omega9/Omega9.github.io,ufvpsa/ufvpsa.github.io,cvandeplas/hack-lu-website,doegox/hack-lu-website,sevvie/sevvie.github.io,docalexh/docalexh.github.io,docalexh/docalexh.github.io,vlnvv/vlnvv.github.com,sandeep/sandeep.github.io,EssentialMusic/EssentialMusic,LesGeeksDuDimanche/Page-Fork,guylichtman/guylichtman.github.io,NicHub/anges.ch,lpantano/stimulus.cc,tobiaszwink/so-simple-theme,Rafiot/hack-lu-website,mmistakes/so-simple-theme,sbaldrich/sbaldrich.github.io,iglocska/hack-lu-website,Sundabao/so-simple-theme,georgeluong/georgeluong.github.io,snekyx/snekyx.github.io,dkambam/dkambam.github.io,sevvie/sevvie.github.io,matteopedani/pedani,jalexvig/jalexvig.github.io,ACCakut/so-simple-theme,binilj04/binilj04.github.io,baig/baig.github.io,dakoo/so-simple-theme,Rafiot/hack-lu-website,mmorse1217/mmorse1217.github.com,wcewlug/wcewlug.github.io,sheffield-bioinformatics-core/sheffield-bioinformatics-core.github.io,cvisger/Visger-Lab,xzuku/jelly-jekyll,AGodinez/mozillaSv.github.io,dillonforrest/startup,mpark/mpark.github.io,jchau623/jchau623.github.io,trishnaguha/so-simple-theme,NSIRLConnection/NSIRLConnection.github.io,LimingPrecisionFarming/soil-lovers,maestro4u/maestro4u.github.io,raoenhui/so-simple-theme,opensonic/opensonic.github.io,omareddash/omareddash.github.io,wecodeio/blog,JadeJaber/jadejaber.github.io,pennstategeog467/pennstategeog467.github.io,domofactor/domofactor,Faiz7412/so-simple-theme,fisherMartyn/fisherMartyn.github.io,modtoolz/modtoolz.github.io,MattTavares/Blog,agarwalayush/agarwalayush.github.io,mikechow1/mikechow-blog,DonVato/life-blog,sbaldrich/sbaldrich.github.io,indrekots/indrekots.github.io,detikpw/so-simple-theme,mukeshthawani/so-simple-theme,dchanman/dchanman.github.io,jvilk/site,glassdfir/so-simple-theme,lcallot/lcallot.github.io,dacamo76/dacamo76.github.io,BBischof/bbischof.github.io,montrealjug/montrealjug.github.io,ablarry91/portfolio,LesGeeksDuDimanche/Page-Fork,thebakeryio/blog,indrekots/indrekots.github.io,sachinruk/sachinruk.github.io,bettiblue/bettiblue.github.io,duttashi/duttashi.github.io,jramapuram/jramapuram.github.io,agostonlaszlo/agostonlaszlo.github.io,adriandgr/freelance,TaehyunHan/TaehyunHan.github.io,Rafiot/hack-lu-website,mmistakes/so-simple-theme,suchja/so-simple-theme,mukeshyadav-cdac/mukeshyadav-cdac.github.com,metrophp/metrophp.github.io,sandeep/sandeep.github.io,waterprint/waterprint.github.io,xtao/blog,goaheadalvin/goaheadalvin.github.io,mobeets/blog,annuyadav/annuyadav.github.io,josecastillo/joeycastillo.com,snekyx/snekyx.github.io,hunben/discursos,rougier/so-simple-theme,anthonydifuria/anthonydifuria.github.io,rafaelrosafu/geekoutfm,domofactor/domofactor,oglopss/tomato-ci-jekyll,binilj04/binilj04.github.io,iglocska/hack-lu-website,joukevandermaas/joukevandermaas.github.io,mozillaSv/mozillaSv.github.io,RicardoCoutinho/so-simple-theme,bendroid/so-simple-theme,Olegas/so-simple-theme,cworks/so-simple-theme,dlebauer/so-simple-theme,jeremymodell/jeremymodell.github.io,Allauzen/Allauzen.github.io,jramapuram/jramapuram.github.io,AakankshaBhardwaj/AakankshaBhardwaj.github.io,motoakim/motoakim.github.io,chipoglesby/chipoglesby.github.io,Thuruv/thuruv-old_gh,yansh/yansh.github.io,AakankshaBhardwaj/AakankshaBhardwaj.github.io,xzuku/jelly-jekyll,amonmoce/amonmoce.github.io,brianolive/brianolive.github.io,paparaeluiza/paparaeluiza.github.io,sayedatifali/sayedatifali.github.io,sheffield-bioinformatics-core/sheffield-bioinformatics-core.github.io,duetosymmetry/pcgm34-web-site,yosinkim/yosinkim.github.io,eubanksanator/so-simple-theme,13broderickj/13broderickj.github.io,dezon/so-simple-theme,sheffield-bioinformatics-core/sheffield-bioinformatics-core.github.io,juner417/juner417.github.com,etheleon/etheleon.github.io,agarwalayush/agarwalayush.github.io,montrealjug/montrealjug.github.io,LernMoment/LernMoment.de,modtoolz/modtoolz.github.io,ablarry91/portfolio,venuthatikonda/venuthatikonda.github.io,hopetambala/life-blog,Olegas/so-simple-theme,adotsenko3/mined-gatech.github.io,saikache/simple,grubdragon/erc-website-jekyll,jcastillo7/mined-gatech.github.io,glassdfir/so-simple-theme,mukeshyadav-cdac/mukeshyadav-cdac.github.com,sbaldrich/sbaldrich.github.io,avadhutp/avadhutp.github.io,grubdragon/erc-website-jekyll,drewmacneil/drewmacneil.github.io,grubdragon/erc-website-jekyll,horncologne/horncologne.github.io,joaonzangoII/joaonzangoii.github.com,gabr1e11/robcgabriell,rajam139/so-simple-theme,raoenhui/so-simple-theme,duttashi/duttashi.github.io,trishnaguha/so-simple-theme,LimingPrecisionFarming/soil-lovers,AGodinez/mozillaSv.github.io,EssentialMusic/EssentialMusic,juner417/juner417.github.com,yansh/yansh.github.io,toomanycats/toomanycats.github.io,calmapp/calmapp.github.io,hyungccho/so-simple-theme,igorilic/igorilic.github.io,matteopedani/pedani,B-Galati/b-galati.github.io,domofactor/SeishunSpirit,kks32/jekyll,MisterWTF/website,gabr1e11/robcgabriell,watsonjr/watsonjr.github.io,brierley/brierley.github.io,waterprint/waterprint.github.io,themattkellyshow/themattkellyshow.github.io,callmeskywalker/so-simple-theme,rajam139/so-simple-theme,damonbinder/damonbinder.github.io,sachinruk/sachinruk.github.io,igorbb/igorbb.github.io,baig/baig.github.io,themattkellyshow/themattkellyshow.github.io,opensonic/opensonic.github.io,truegilb/truegilb.github.io,cvisger/Visger-Lab,MattTavares/Blog,xtao/blog,dbarobin/dbarobin.github.io,cworks/so-simple-theme,iglocska/hack-lu-website,mmorse1217/mmorse1217.github.com,raoenhui/so-simple-theme,jcdavison/blog.antipattern.io,TrekkingTech/trekkingtech.github.io,dchanman/dchanman.github.io,calmapp/calmapp.github.io,mpark/mpark.github.io,evaldosantos/so-simple-theme,lyttonhao/Personal-site,brianolive/brianolive.github.io,Encanto/Encanto.github.io,acmorg/acmorg.github.io,davidbrough1/mined-gatech.github.io,miniatureweasle/miniatureweasle.github.io,lcallot/lcallot.github.io,NSIRLConnection/NSIRLConnection.github.io,bettiblue/bettiblue.github.io,annuyadav/annuyadav.github.io,acmorg/acmorg.github.io,dchanman/dchanman.github.io,wetty/wetty.github.io,MattTavares/Blog,lpantano/stimulus.cc,vaughanj10/vaughanj10.github.io,tmarlow/tmarlow.github.io,bsoman3/bsoman3.github.io,Thuruv/thuruv-old_gh,chipoglesby/chipoglesby.github.io,gitoneman/article,suchja/so-simple-theme,chungyushao/chungyushao.github.io,virtualdbgal/so-simple-theme,vaughanj10/vaughanj10.github.io,damonbinder/damonbinder.github.io,waratahroot/waratahroot.github.io,B-Galati/b-galati.github.io,docalexh/docalexh.github.io,thsousa/journal,Encanto/Encanto.github.io,venuthatikonda/venuthatikonda.github.io,decorumos/anarchic.media,Wenri/Wenri.github.io,motoakim/motoakim.github.io,JadeJaber/jadejaber.github.io,rafaelrosafu/geekoutfm,wakermahmud/so-simple-theme,furfmon/furfmon.github.io,davetank/davetank.github.io,TrekkingTech/trekkingtech.github.io,fabriciorissetto/fabriciorissetto.github.io,mpark/mpark.github.io,CorySimon/CorySimon.github.io,DonVato/life-blog,montrealjug/montrealjug.github.io,calmapp/calmapp.github.io,ufvpsa/ufvpsa.github.io,amonmoce/amonmoce.github.io,opensci/blog.opensci.info,dakoo/so-simple-theme,mukeshyadav-cdac/mukeshyadav-cdac.github.com,janiepittman/so-simple-theme,waratahroot/waratahroot.github.io,anthonydifuria/anthonydifuria.github.io,LimingPrecisionFarming/soil-lovers,chipoglesby/chipoglesby.github.io,detikpw/so-simple-theme,xzuku/jelly-jekyll,ckochx/neurorepository_so_simple,BBischof/bbischof.github.io,kperico/kperico.github.io,guylichtman/guylichtman.github.io,domhnallohanlon/htmaa,etheleon/etheleon.github.io,adriandgr/freelance,avadhutp/avadhutp.github.io,utsw/so-simple-theme,dezon/so-simple-theme,j-hayes/what-did-i-learn-today,cvisger/Visger-Lab,joukevandermaas/joukevandermaas.github.io,spsdnkarditsas/spsdnkarditsas.github.io,liuzxc/liuzxc.github.io,wakermahmud/so-simple-theme,brosbj/brosbj.github.io,Leaking/leaking.github.com,chungyushao/chungyushao.github.io,davekopecek/the-lazy-drupalist,NicHub/anges.ch,leoniralves/leoniralves.github.io,JadeJaber/jadejaber.github.io,omareddash/omareddash.github.io,sayedatifali/sayedatifali.github.io,domofactor/domofactor,isonic1/so-simple-theme,phwelo/NewHumanPress,vagusribaldi/vagusribaldi.github.io,tcunnane/so-simple-theme,ckochx/neurorepository_so_simple,chenye/so-simple-theme,indenizen/so-simple-theme,janiepittman/so-simple-theme,LernMoment/LernMoment.de,LeonTheGreat/momsite,toomanycats/toomanycats.github.io,matteopedani/pedani,binilj04/binilj04.github.io,wcewlug/wcewlug.github.io,LesGeeksDuDimanche/Page-Fork,spsdnkarditsas/spsdnkarditsas.github.io,MisterWTF/website,jchau623/jchau623.github.io,iRobie/simplicity-experiments,georgepearman/europe,hopetambala/life-blog,maestro4u/maestro4u.github.io,benhylau/ftloe,snekyx/snekyx.github.io,Rafiot/hack-lu-website,dbarobin/dbarobin.github.io,Preetwinder/preetwinder.github.io,vaughanj10/vaughanj10.github.io,sbaldrich/sbaldrich.github.io,gabr1e11/robcgabriell,bendroid/so-simple-theme,fisherMartyn/fisherMartyn.github.io,NicoSa/nicosa.github.io,saikache/simple,13broderickj/13broderickj.github.io,oglopss/tomato-ci-jekyll,isonic1/so-simple-theme,thebakeryio/blog,brierley/brierley.github.io,goaheadalvin/goaheadalvin.github.io,duetosymmetry/pcgm34-web-site,vchintal/vchintal.github.io,doegox/hack-lu-website,NicHub/anges.ch,Sundabao/so-simple-theme,jeldino/jeldino.github.com,kks32/jekyll,brosbj/brosbj.github.io,spsdnkarditsas/spsdnkarditsas.github.io,volontarian/rubyherzlein.github.io,miniatureweasle/miniatureweasle.github.io,pennstategeog467/pennstategeog467.github.io,Desno365/so-simple-theme,acmorg/acmorg.github.io,chungyushao/chungyushao.github.io,ufvpsa/ufvpsa.github.io,hashbox/hashbox.github.io,damonbinder/damonbinder.github.io,georgepearman/europe,indrekots/indrekots.github.io,leoniralves/leoniralves.github.io,ablarry91/portfolio,kenneth-lau/tech-writing-blog,dacamo76/dacamo76.github.io,horncologne/horncologne.github.io,KappaDesign/kappadesign.github.io,grubdragon/erc-website-jekyll,iRobie/simplicity-experiments,decorumos/anarchic.media,etheleon/etheleon.github.io,furfmon/furfmon.github.io,ufvpsa/ufvpsa.github.io,RMHogervorst/cleancode,davidbrough1/mined-gatech.github.io,dkambam/dkambam.github.io,duetosymmetry/pcgm34-web-site,mister-raindrop/mister-raindrop.github.io,steveacalabro/blog,agostonlaszlo/agostonlaszlo.github.io,watsonjr/watsonjr.github.io,mobeets/blog,osmlab/basket,Aljendro/aljendro.github.io,adulau/hack-lu-website,AakankshaBhardwaj/AakankshaBhardwaj.github.io,avadhutp/avadhutp.github.io,XciA/xcia.github.io,juner417/juner417.github.com,KappaDesign/kappadesign.github.io,chungyushao/chungyushao.github.io,phwelo/NewHumanPress,isonic1/so-simple-theme,drewmacneil/drewmacneil.github.io,tmarlow/tmarlow.github.io,QuinAsura/quinasura.github.io,yarfrontend/yarfrontend.github.io,skhurram/skhurram.github.com,duyn/duyn.github.io,wcewlug/wcewlug.github.io,kperico/kperico.github.io,domofactor/SeishunSpirit,CorySimon/CorySimon.github.io,adotsenko3/mined-gatech.github.io,wetty/wetty.github.io,gmaclenn/gmaclenn.github.io,LernMoment/LernMoment.de,mtpatter/lone-reads,iRobie/simplicity-experiments,sachinruk/sachinruk.github.io,indenizen/so-simple-theme,jramapuram/jramapuram.github.io,yosinkim/yosinkim.github.io,Omega9/Omega9.github.io,jvilk/site,benhylau/ftloe,Candyroot/candyroot.github.io,mmorse1217/mmorse1217.github.com,XiaoruiZhu/xiaoruizhu.github.io,gmaclenn/gmaclenn.github.io,omareddash/omareddash.github.io,vagusribaldi/vagusribaldi.github.io,hyungccho/so-simple-theme,indenizen/so-simple-theme,venuthatikonda/venuthatikonda.github.io,XiaoruiZhu/xiaoruizhu.github.io,gitoneman/article,kenneth-lau/tech-writing-blog,vagusribaldi/vagusribaldi.github.io,dillonforrest/startup,MisterWTF/website,ACCakut/so-simple-theme,credmp/so-simple-theme,sayedatifali/sayedatifali.github.io,georgepearman/europe,opensci/blog.opensci.info,Allauzen/Allauzen.github.io,adulau/hack-lu-website,LeonTheGreat/momsite,kperico/kperico.github.io,dchambers/dchambers.github.io,Krettis/krettis-nl,opensonic/opensonic.github.io,Sundabao/so-simple-theme,dchambers/dchambers.github.io,Krettis/krettis-nl,XiaoruiZhu/xiaoruizhu.github.io,wecodeio/blog,bsoman3/bsoman3.github.io,thebakeryio/blog,rougier/so-simple-theme,doegox/hack-lu-website,duyn/duyn.github.io,mmorse1217/mmorse1217.github.com,QuinAsura/quinasura.github.io,mozillaSv/mozillaSv.github.io,eubanksanator/so-simple-theme,neonbadger/neonbadger.github.io,davekopecek/the-lazy-drupalist,hunben/discursos,cworks/so-simple-theme,tmarlow/tmarlow.github.io,callmeskywalker/so-simple-theme,credmp/so-simple-theme,domofactor/SeishunSpirit,fabriciorissetto/fabriciorissetto.github.io,waratahroot/waratahroot.github.io,tcunnane/so-simple-theme,doka/altest,volontarian/rubyherzlein.github.io,AGodinez/mozillaSv.github.io,mozillaSv/mozillaSv.github.io,CorySimon/CorySimon.github.io,dbarobin/dbarobin.github.io,themattkellyshow/themattkellyshow.github.io,adulau/hack-lu-website,Aljendro/aljendro.github.io,saikache/simple,dbarobin/dbarobin.github.io,waterprint/waterprint.github.io,toomanycats/toomanycats.github.io,cbioley/cbioley.github.io,davekopecek/the-lazy-drupalist,oglopss/tomato-ci-jekyll,Olegas/so-simple-theme,doka/altest,yarfrontend/yarfrontend.github.io,neonbadger/neonbadger.github.io,hopetambala/life-blog,Omega9/Omega9.github.io,parthsavi/thisandthat,evaldosantos/so-simple-theme,credmp/so-simple-theme,elykahn/so-simple-theme,parthsavi/thisandthat,uncultivated/personal-site,rajam139/so-simple-theme,goaheadalvin/goaheadalvin.github.io,Krettis/krettis-nl,igorilic/igorilic.github.io,Preetwinder/preetwinder.github.io,B-Galati/b-galati.github.io,vomvoru/vomvoru.github.io,joaonzangoII/joaonzangoii.github.com,truegilb/truegilb.github.io,agostonlaszlo/agostonlaszlo.github.io,janiepittman/so-simple-theme,truegilb/truegilb.github.io,davetank/davetank.github.io,igorbb/igorbb.github.io,mmistakes/so-simple-theme,benhylau/ftloe,josecastillo/joeycastillo.com,NSIRLConnection/NSIRLConnection.github.io,doka/altest,miniatureweasle/miniatureweasle.github.io,doegox/hack-lu-website,Relys/relys.github.io,fisherMartyn/fisherMartyn.github.io,Sundabao/so-simple-theme,bsoman3/bsoman3.github.io,nkarnik/nkarnik.github.io,Aljendro/aljendro.github.io,amonmoce/amonmoce.github.io,lcallot/lcallot.github.io,BBischof/bbischof.github.io,osmlab/basket,jvilk/site,dezon/so-simple-theme,glassdfir/so-simple-theme,sachinruk/sachinruk.github.io,TaehyunHan/TaehyunHan.github.io,foxsofter/foxsofter,liuzxc/liuzxc.github.io,yosinkim/yosinkim.github.io,brosbj/brosbj.github.io,cvandeplas/hack-lu-website,dlebauer/so-simple-theme,Krettis/krettis-nl,mtpatter/lone-reads,sheffield-bioinformatics-core/sheffield-bioinformatics-core.github.io,B-Galati/b-galati.github.io,yarfrontend/yarfrontend.github.io,Faiz7412/so-simple-theme,packsaddle/easy.packsaddle.org,heliotactic/heliotactic.github.io,virtualdbgal/so-simple-theme,mukeshthawani/so-simple-theme,agarwalayush/agarwalayush.github.io,dchambers/dchambers.github.io,dkambam/dkambam.github.io,hyungccho/so-simple-theme,mikechow1/mikechow-blog,Allauzen/Allauzen.github.io,opensci/blog.opensci.info,jcastillo7/mined-gatech.github.io,chenye/so-simple-theme,joaonzangoII/joaonzangoii.github.com,drewmacneil/drewmacneil.github.io,Desno365/so-simple-theme,foxsofter/foxsofter,KappaDesign/kappadesign.github.io,steveacalabro/blog,sevvie/sevvie.github.io,igorilic/igorilic.github.io,brianolive/brianolive.github.io,mobeets/blog,furfmon/furfmon.github.io,BBischof/bbischof.github.io,josecastillo/joeycastillo.com,mikechow1/mikechow-blog,igorbb/igorbb.github.io,kcmartin/ssim-theme,wakermahmud/so-simple-theme,mister-raindrop/mister-raindrop.github.io,annuyadav/annuyadav.github.io,Rafiot/hack-lu-website,suchja/so-simple-theme,RicardoCoutinho/so-simple-theme,rafaelrosafu/geekoutfm,Preetwinder/preetwinder.github.io,duttashi/duttashi.github.io,Leaking/leaking.github.com,uncultivated/personal-site,trishnaguha/so-simple-theme,decorumos/anarchic.media,QuinAsura/quinasura.github.io,Relys/relys.github.io,jcdavison/blog.antipattern.io,watsonjr/watsonjr.github.io,mtpatter/lone-reads,paparaeluiza/paparaeluiza.github.io,j-hayes/what-did-i-learn-today,adriandgr/freelance,sandeep/sandeep.github.io,Xalava/blogecan,chipoglesby/chipoglesby.github.io,tobiaszwink/so-simple-theme,LeonTheGreat/momsite,dillonforrest/startup,liuzxc/liuzxc.github.io,Xalava/blogecan,Omega9/Omega9.github.io,vomvoru/vomvoru.github.io,kcmartin/ssim-theme,Relys/relys.github.io,EssentialMusic/EssentialMusic,osmlab/basket,callmeskywalker/so-simple-theme,RMHogervorst/cleancode,albhardy/bak.albhardy.github.io,georgeluong/georgeluong.github.io,adulau/hack-lu-website,baig/baig.github.io,jalexvig/jalexvig.github.io,mobeets/blog,horncologne/horncologne.github.io,JadeJaber/jadejaber.github.io,Rogersunfly/so-simple-theme,jeremymodell/jeremymodell.github.io,Rogersunfly/so-simple-theme,Rogersunfly/so-simple-theme,gmaclenn/gmaclenn.github.io,rougier/so-simple-theme,uncultivated/personal-site,lyttonhao/Personal-site,credmp/so-simple-theme,guylichtman/guylichtman.github.io,davetank/davetank.github.io,eubanksanator/so-simple-theme,anthonydifuria/anthonydifuria.github.io,utsw/so-simple-theme,chenye/so-simple-theme,elykahn/so-simple-theme,kks32/jekyll,packsaddle/easy.packsaddle.org,TaehyunHan/TaehyunHan.github.io,jeldino/jeldino.github.com,lyttonhao/Personal-site,jainshubhi/jainshubhi.github.io,brierley/brierley.github.io,cvandeplas/hack-lu-website,georgeluong/georgeluong.github.io,parthsavi/thisandthat,CorySimon/CorySimon.github.io,jeremymodell/jeremymodell.github.io,RMHogervorst/cleancode,thsousa/journal,nkarnik/nkarnik.github.io,vomvoru/vomvoru.github.io,NicHub/anges.ch,TrekkingTech/trekkingtech.github.io,XciA/xcia.github.io,Thuruv/thuruv-old_gh,NicoSa/nicosa.github.io,tobiaszwink/so-simple-theme,jainshubhi/jainshubhi.github.io,domhnallohanlon/htmaa,gabr1e11/robcgabriell,fabriciorissetto/fabriciorissetto.github.io,josecastillo/joeycastillo.com,Candyroot/candyroot.github.io,virtualdbgal/so-simple-theme,Wenri/Wenri.github.io,albhardy/bak.albhardy.github.io,detikpw/so-simple-theme,Xalava/blogecan,iglocska/hack-lu-website,kenneth-lau/tech-writing-blog,Desno365/so-simple-theme,skhurram/skhurram.github.com,vchintal/vchintal.github.io,thsousa/journal,lpantano/stimulus.cc,motoakim/motoakim.github.io,leoniralves/leoniralves.github.io,nkarnik/nkarnik.github.io,Leaking/leaking.github.com,pennstategeog467/pennstategeog467.github.io,evaldosantos/so-simple-theme,vlnvv/vlnvv.github.com,xtao/blog,duetosymmetry/pcgm34-web-site,Wenri/Wenri.github.io,bendroid/so-simple-theme,Allauzen/Allauzen.github.io,duttashi/duttashi.github.io,vagusribaldi/vagusribaldi.github.io,hunben/discursos,elykahn/so-simple-theme,ACCakut/so-simple-theme,phwelo/NewHumanPress,neonbadger/neonbadger.github.io,maestro4u/maestro4u.github.io,volontarian/rubyherzlein.github.io,vaughanj10/vaughanj10.github.io
|
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: jekyll
# Build settings
markdown: kramdown
pygments: true
|
# 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
# Build settings
markdown: kramdown
pygments: true
|
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 server process.
# Site settings
title: Random Ramblings
email: [email protected]
description: > # this means to ignore newlines until "baseurl:"
Currently a place to jot notes from books I've read. It may expand to
ramblings of my other interests around IT, culture and general human
condition. Time to embark on a journey of a thousand steps!
baseurl: "" # the subpath of your site, e.g. /blog
url: "http://krutisfood.github.com" # the base hostname & protocol for your site
twitter_username: krutisfood
github_username: krutisfood
# Build settings
markdown: kramdown
|
# 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 server process.
# Site settings
title: Kurt Gardiner
email: [email protected]
description: > # this means to ignore newlines until "baseurl:"
Currently a place to jot notes from books I've read. It may expand to
ramblings of my other interests around IT, culture and general human
condition. Time to embark on a journey of a thousand steps!
baseurl: "" # the subpath of your site, e.g. /blog
url: "http://krutisfood.github.com" # the base hostname & protocol for your site
twitter_username: krutisfood
github_username: krutisfood
# Build settings
markdown: kramdown
|
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://builtwithember.io
|
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
author: Carlos Rojas
description: Personal blog and resume
avatar: profile.jpeg
email: [email protected]
github: sadhu89 # username
twitter: CarlosSadhu
linkedin: crojasn
stackoverflow: users/4808245/carlos-sadhu-rojas-Ñiquen #e.g: users/2735833/proton1h1
#Comment out if you don't want disqus
disqus: carlossadhu
google_analytics: UA-69391421-1
# needed for travis-ci build
exclude: [vendor]
|
# 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
author: Carlos Rojas
description: Personal blog and resume
avatar: profile.jpeg
email: [email protected]
github: sadhu89 # username
twitter: CarlosSadhu
linkedin: crojasn
stackoverflow: users/4808245/carlos-sadhu-rojas-Ñiquen
#Comment out if you don't want disqus
disqus: carlossadhu
google_analytics: UA-76952875-1
# needed for travis-ci build
exclude: [vendor]
|
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: [email protected]
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"
values:
layout: "post"
openQuote: "<div class='sab-quote'>"
closeQuote: "</div>"
# This is here so we can enable the same defaults for "drafts" as well
-
scope:
path: ""
type: "drafts"
values:
layout: "post"
openQuote: "<div class='sab-quote'>"
closeQuote: "</div>"
|
# Site settings
title: Shablog
email: [email protected]
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"
values:
layout: "post"
# This is here so we can enable the same defaults for "drafts" as well
-
scope:
path: ""
type: "drafts"
values:
layout: "post"
|
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"
- "Gemfile.lock"
- "/gulp/"
- "gulpfile.js"
- "LICENSE.md"
- "Makefile"
- "node_modules"
- "npm-debug.log"
- "package.json"
- "README.md"
- "rev-manifest.json"
# Plugins
gems: ["jekyll-sitemap", "jekyll-paginate"]
# Conversion
incremental: true
# Serving
# url: ""
# baseurl: "" # does not include hostname
# Outputting
permalink: "/blog/:year/:title/"
paginate_path: "/blog/page:num"
paginate: 5
|
# 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"
- "Gemfile.lock"
- "/gulp/"
- "gulpfile.js"
- "LICENSE.md"
- "Makefile"
- "node_modules"
- "npm-debug.log"
- "package.json"
- "README.md"
- "rev-manifest.json"
# Plugins
gems: ["jekyll-sitemap", "jekyll-paginate"]
# Conversion
incremental: true
# Serving
# url: ""
# baseurl: "" # does not include hostname
# Outputting
permalink: "/blog/:year/:title/"
paginate_path: "/blog/page:num"
paginate: 5
compress_html:
ignore:
envs: [development]
|
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/lifeflower,parsfibernet/fibernet-ir-official,parsfibernet/fibernet-ir-official
|
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_analytics: #Google Analytics Tracking Code
google_adsense_page_level_ads: #Google Adsense Page Level Ads Code
valine:
enable: #(true/false)
appID: #填写 Leancloud 的 appKey
appKey: #填写 Leancloud 的 appKey
notify: #回复提醒(true/false)
verify: #评论验证码(true/false)
placeholder: #评论框占位文本
|
# 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_analytics: #Google Analytics Tracking Code
google_adsense_page_level_ads: #Google Adsense Page Level Ads Code
valine:
enable: # set to true if you want to use it
appID: # Leancloud appID
appKey: # Leancloud appKey
notify: # notify when getting replies(true/false)
verify: # captcha when post a comment(true/false)
placeholder: # placeholder text
|
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_admins:
fb_app_id:
|
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-landscape,tommy351/hexo-theme-landscape,ideoplex/hexo-theme-landscape,1PxUp/Naji,cgmartin/hexo-theme-bootstrap-blog,hexojs/hexo-theme-landscape,JLHwung/hexo-theme-landscape
|
9131c7bb2e5d34c8e828e7cc62d8962213778618
|
_config.yml
|
_config.yml
|
# Site settings
title: Electron
email: [email protected]
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: [email protected]
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/electron.atom.io,atom/electron.atom.io,pmcalabrese/electron.atom.io,isathish/electron.atom.io,isathish/electron.atom.io,Kaizhi/electron.atom.io,dahmian/dahmian.github.io,atom/electron.atom.io,sabeehmurtaza9/electron.atom.io,RandScullard/electron.atom.io,electron/electron.atom.io,isathish/electron.atom.io,TianJinRong/electron.atom.io,Kaizhi/electron.atom.io,CONVIEUFO/convieufo.github.io,simurai/electron.atom.io,simurai/electron.atom.io,pmcalabrese/electron.atom.io,dahmian/dahmian.github.io,electron/electron.atom.io,isathish/electron.atom.io,TianJinRong/electron.atom.io,RandScullard/electron.atom.io,RandScullard/electron.atom.io,sabeehmurtaza9/electron.atom.io,atom/electron.atom.io,mnquintana/electron.atom.io,mnquintana/electron.atom.io,TianJinRong/electron.atom.io,electron/electron.atom.io,CONVIEUFO/convieufo.github.io,pmcalabrese/electron.atom.io,atom/electron.atom.io,CONVIEUFO/convieufo.github.io,CONVIEUFO/convieufo.github.io
|
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: [email protected]
synopsis: This package implments a parser for the CSS syntax
changelog: ''
basic-deps:
bytestring: -any
base: ! '>=4 && <5'
text: -any
attoparsec: ! '>=0.13'
scientific: -any
all-versions:
- '0.0.1'
- '0.0.2'
- '0.0.3'
- '0.0.4'
- '0.0.5'
- '0.0.7'
author: Tomas Carnecky
latest: '0.0.7'
description-type: haddock
description: See https://drafts.csswg.org/css-syntax/
license-name: MIT
|
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: [email protected]
synopsis: This package implments a parser for the CSS syntax
changelog: ''
basic-deps:
bytestring: -any
base: ! '>=4 && <5'
text: -any
attoparsec: ! '>=0.13'
scientific: -any
all-versions:
- '0.0.1'
- '0.0.2'
- '0.0.3'
- '0.0.4'
- '0.0.5'
- '0.0.7'
- '0.0.8'
author: Tomas Carnecky
latest: '0.0.8'
description-type: haddock
description: See https://drafts.csswg.org/css-syntax/
license-name: MIT
|
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 <[email protected]>
synopsis: Simple account manager
changelog: ''
basic-deps:
bytestring: -any
base: ! '>=4.8 && <5.0'
time: -any
persistent: -any
text: -any
glib: -any
persistent-template: -any
monad-control: -any
gtk3: -any
filepath: -any
containers: -any
lens: -any
binary: -any
mtl: -any
monad-logger: -any
transformers: -any
resourcet: -any
persistent-sqlite: -any
aeson: -any
directory: -any
all-versions:
- '1.0'
- '1.1'
- '1.1.1'
author: Piotr Borek <[email protected]>
latest: '1.1.1'
description-type: haddock
description: Simple account manager
license-name: GPL
|
homepage: https://bitbucket.org/borekpiotr/coin
changelog-type: ''
hash: d652c80be8aa6a05ab1cbe74feb91ed27dd34413272501a734c82cb486c41452
test-bench-deps: {}
maintainer: Piotr Borek <[email protected]>
synopsis: Simple account manager
changelog: ''
basic-deps:
bytestring: -any
base: ! '>=4.8 && <5.0'
time: -any
persistent: -any
text: -any
glib: -any
persistent-template: -any
monad-control: -any
gtk3: -any
filepath: -any
containers: -any
lens: -any
binary: -any
mtl: -any
monad-logger: -any
transformers: -any
resourcet: -any
persistent-sqlite: -any
aeson: -any
directory: -any
all-versions:
- '1.0'
- '1.1'
- '1.1.1'
- '1.2'
author: Piotr Borek <[email protected]>
latest: '1.2'
description-type: haddock
description: Simple account manager
license-name: GPL
|
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: [email protected]
synopsis: Bindings to mcl, a generic and fast pairing-based cryptography library
changelog: ''
basic-deps:
groups: -any
bytestring: -any
base: <5
integer-gmp: -any
binary: -any
ghc-prim: -any
deepseq: -any
primitive: -any
all-versions:
- '1.0.0'
author: Andrzej Rybczak
latest: '1.0.0'
description-type: haddock
description: ! 'Base library: https://github.com/herumi/mcl'
license-name: BSD3
|
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: [email protected]
synopsis: Bindings to mcl, a generic and fast pairing-based cryptography library
changelog: ''
basic-deps:
groups: -any
bytestring: -any
base: <5
integer-gmp: -any
binary: -any
ghc-prim: -any
deepseq: -any
primitive: -any
all-versions:
- '1.0.0'
- '1.0.1'
author: Andrzej Rybczak
latest: '1.0.1'
description-type: haddock
description: ! 'Base library: <https://github.com/herumi/mcl>'
license-name: BSD3
|
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 <[email protected]>
synopsis: Fast, scalable, mutable dynamic arrays, maps and hashes
changelog: ''
basic-deps:
bytestring: -any
base: <10
ghc-prim: -any
all-versions:
- '0.1'
- '0.1.0.1'
- '0.2'
- '0.2.1'
- '0.2.2'
- '0.2.3'
author: Don Stewart
latest: '0.2.3'
description-type: haddock
description: Fast, scalable, mutable dynamic arrays, maps and hashes
license-name: BSD3
|
homepage: http://github.com/mwotton/judy
changelog-type: ''
hash: 0d2a63ab67dbc8a2e7c85a8837b5de5874e2fec113928c6780f17bcfcd3c9356
test-bench-deps:
base: -any
hspec: -any
judy: -any
QuickCheck: -any
maintainer: Mark Wotton <[email protected]>
synopsis: Fast, scalable, mutable dynamic arrays, maps and hashes
changelog: ''
basic-deps:
bytestring: -any
base: <10
ghc-prim: -any
all-versions:
- '0.1'
- '0.1.0.1'
- '0.2'
- '0.2.1'
- '0.2.2'
- '0.2.3'
- '0.2.4'
author: Don Stewart
latest: '0.2.4'
description-type: haddock
description: Fast, scalable, mutable dynamic arrays, maps and hashes
license-name: BSD3
|
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
error:
logger: file
ansi_color:
- red
- on_black
security:
logger: file
ansi_color:
- magenta
- on_black
debug:
logger: file
ansi_color:
- bright_green
- on_black
query:
logger: file
ansi_color:
- blue
- on_black
trace:
logger: file
ansi_color:
- bright_magenta
- 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
max: 6
types:
info:
logger: log
ansi_color:
- green
- on_black
warning:
logger: log
ansi_color:
- yellow
- on_black
error:
logger: log
ansi_color:
- red
- on_black
security:
logger: log
ansi_color:
- magenta
- on_black
debug:
logger: log
ansi_color:
- bright_green
- on_black
query:
logger: query
ansi_color:
- blue
- on_black
trace:
logger: trace
ansi_color:
- bright_magenta
- on_black
|
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: [email protected]
synopsis: Optional function arguments
changelog: ''
basic-deps:
base: ! '>=4.5 && <5'
all-versions:
- '1.0.0'
author: Gabriel Gonzalez
latest: '1.0.0'
description-type: haddock
description: ! 'This library provides a type for specifying `Optional` function
arguments
Read the tutorial in "Data.Optional" to learn more'
license-name: BSD3
|
homepage: ''
changelog-type: ''
hash: 5bafb6a2a8c74ed72112750d07381f2ddc46f814eb9f157619ad286b3e55a244
test-bench-deps: {}
maintainer: [email protected]
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'
description-type: haddock
description: ! 'This library provides a type for specifying `Optional` function
arguments
Read the tutorial in "Data.Optional" to learn more'
license-name: BSD3
|
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: .breaker.json'
- description: Command format clusterssh type should display formatted hosts info
command: ../../../../../bin/breaker --type clusterssh format
exitcode: 0
output: 'clusters = all dev dev1 dev2 prod prod1'
- description: Command format ansible type should display formatted hosts info
command: ../../../../../bin/breaker --type ansible format
exitcode: 0
output: '\[all\]\ndev1.com\ndev2.net\nprod1.org\n'
- description: Command format sshconfig type should display formatted hosts info
command: ../../../../../bin/breaker --type sshconfig format
exitcode: 0
output: 'HostName dev1.com'
- description: Command ssh should fail due to invalid remote host
command: ../../../../../bin/breaker ssh "uname -a"
exitcode: 0
output: 'ssh -i path/to/key1 [email protected]:221 ''uname -a'''
|
- 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 Breaker hosts file: .breaker.json'
- description: Command format clusterssh type should display formatted hosts info
command: '{breaker} --type clusterssh format'
exitcode: 0
output: 'clusters = all dev dev1 dev2 prod prod1'
- description: Command format ansible type should display formatted hosts info
command: '{breaker} --type ansible format'
exitcode: 0
output: '\[all\]\ndev1.com\ndev2.net\nprod1.org\n'
- description: Command format sshconfig type should display formatted hosts info
command: '{breaker} --type sshconfig format'
exitcode: 0
output: 'HostName dev1.com'
- description: Command ssh should fail due to invalid remote host
command: '{breaker} ssh "uname -a"'
exitcode: 0
output: 'ssh -i path/to/key1 [email protected]:221 ''uname -a'''
|
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"]
paths:
include:
[
"azure-pipelines.web.yaml",
"src/FilterLists.Web/*",
".dockerignore",
"docker-compose.yml",
"docker-compose.prod.yml",
]
pool:
vmImage: "ubuntu-latest"
steps:
- task: Docker@2
displayName: build
inputs:
repository: "collinbarrett/filterlists/filterlists.web"
command: "build"
Dockerfile: "src/FilterLists.Web/Dockerfile"
buildContext: "."
tags: |
latest
$(Build.BuildId)
- task: Docker@2
displayName: login to github package registry
inputs:
containerRegistry: "GitHub Docker Package Registry - FilterLists"
command: "login"
condition: "and(succeeded(), eq(variables['Build.SourceBranch'], 'refs/heads/master'))"
- task: Docker@2
displayName: push
inputs:
containerRegistry: "GitHub Docker Package Registry - FilterLists"
repository: "collinbarrett/filterlists/filterlists.web"
command: "push"
condition: "and(succeeded(), eq(variables['Build.SourceBranch'], 'refs/heads/master'))"
tags: |
latest
$(Build.BuildId)
|
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"]
paths:
include:
[
"azure-pipelines.web.yaml",
"src/FilterLists.Web/*",
".dockerignore",
"docker-compose.yml",
"docker-compose.prod.yml",
]
pool:
vmImage: "ubuntu-latest"
steps:
- task: Docker@2
displayName: build
inputs:
containerRegistry: "GitHub Docker Package Registry - FilterLists"
repository: "collinbarrett/filterlists/filterlists.web"
command: "build"
Dockerfile: "src/FilterLists.Web/Dockerfile"
buildContext: "."
tags: |
latest
$(Build.BuildId)
- task: Docker@2
displayName: login to github package registry
inputs:
containerRegistry: "GitHub Docker Package Registry - FilterLists"
command: "login"
condition: "and(succeeded(), eq(variables['Build.SourceBranch'], 'refs/heads/master'))"
- task: Docker@2
displayName: push
inputs:
containerRegistry: "GitHub Docker Package Registry - FilterLists"
repository: "collinbarrett/filterlists/filterlists.web"
command: "push"
condition: "and(succeeded(), eq(variables['Build.SourceBranch'], 'refs/heads/master'))"
tags: |
latest
$(Build.BuildId)
|
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 that God has called all
Christians to proclaim the Gospel to the world, and as missionaries, we strive
to obey that call by introducing people to Jesus through the pages of
Scripture.
author: "Euro Team Outreach, Inc."
contact_email: "[email protected]"
steele_email: "[email protected]"
beal_email: "[email protected]"
denise_email: "[email protected]"
zhylavy_email: "[email protected]"
content_server_url: "https://d21yo20tm8bmc2.cloudfront.net"
mailchimp_url: "//euroteamoutreach.us6.list-manage.com/subscribe/post?u=672df31cd6d0e7132c9c4c7d1&id=d107e57061"
facebook_og_image_url: "https://d2otinza4e5x22.cloudfront.net/euroteamoutreach-fb.png"
|
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 that God has called all
Christians to proclaim the Gospel to the world, and as missionaries, we strive
to obey that call by introducing people to Jesus through the pages of
Scripture.
author: "Euro Team Outreach, Inc."
contact_email: "[email protected]"
steele_email: "[email protected]"
beal_email: "[email protected]"
denise_email: "[email protected]"
zhylavy_email: "[email protected]"
content_server_url: "https://d21yo20tm8bmc2.cloudfront.net"
mailchimp_url: "//euroteamoutreach.us6.list-manage.com/subscribe/post?u=672df31cd6d0e7132c9c4c7d1&id=d107e57061"
facebook_og_image_url: "https://d2otinza4e5x22.cloudfront.net/euroteamoutreach-fb.png"
|
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 <[email protected]>
synopsis: Run doctest's in a Cabal.Test.exitcode-stdio environment
changelog: ''
basic-deps:
base: '>=4.3 && <5'
semigroups: '>=0.18 && <0.20'
doctest-lib: '>=0.1 && <0.2'
transformers: '>=0.0 && <0.6'
QuickCheck: '>=2.12.5 && <3'
all-versions:
- '0.0'
author: Henning Thielemann <[email protected]>
latest: '0.0'
description-type: haddock
description: |-
Run doctest's in a Cabal.Test.exitcode-stdio environment.
For use with the @doctest-extract@ utility.
Normally, you should not need to import a module from this package,
only generated code will do this.
license-name: BSD-3-Clause
|
homepage: https://hub.darcs.net/thielema/doctest-exitcode-stdio/
changelog-type: ''
hash: a34619492781c17817f3af9f4f409335c7d0f8751b5ac4aaa1f01bc816d2c580
test-bench-deps: {}
maintainer: Henning Thielemann <[email protected]>
synopsis: Run doctest's in a Cabal.Test.exitcode-stdio environment
changelog: ''
basic-deps:
base: '>=4.3 && <5'
semigroups: '>=0.18 && <0.21'
doctest-lib: '>=0.1 && <0.2'
transformers: '>=0.0 && <0.6'
QuickCheck: '>=2.12.5 && <3'
all-versions:
- '0.0'
author: Henning Thielemann <[email protected]>
latest: '0.0'
description-type: haddock
description: |-
Run doctest's in a Cabal.Test.exitcode-stdio environment.
For use with the @doctest-extract@ utility.
Normally, you should not need to import a module from this package,
only generated code will do this.
license-name: BSD-3-Clause
|
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: [email protected]
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*
First version. Released on an unsuspecting world.\n\n## 0.2.0.0 -- 2022-01-18\n\n*
Second version. Removed the unneeded material because of the license non-compliance
with one of the tutorials used. \nSwitched to the author's css and html model.\n\n\n"
basic-deps:
lists-flines: '>=0.1.1 && <1'
base: '>=4.8 && <5'
cli-arguments: '>=0.6 && <1'
all-versions:
- 0.2.0.0
author: OleksandrZhabenko
latest: 0.2.0.0
description-type: haddock
description: The idea is to post some colored text on the background.
license-name: MIT
|
homepage: ''
changelog-type: markdown
hash: 44cf02cb47bd156bdbb04d177a1c530ee64a9ee1e48186570707f8b46ba4906f
test-bench-deps: {}
maintainer: [email protected]
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*
First version. Released on an unsuspecting world.\n\n## 0.2.0.0 -- 2022-01-18\n\n*
Second version. Removed the unneeded material because of the license non-compliance
with one of the tutorials used. \nSwitched to the author's css and html model.\n\n##
0.2.1.0 -- 2022-01-21\n\n* Second version revised A. Some code improvements. \n"
basic-deps:
lists-flines: '>=0.1.1 && <1'
base: '>=4.8 && <5'
cli-arguments: '>=0.6 && <1'
all-versions:
- 0.2.1.0
author: OleksandrZhabenko
latest: 0.2.1.0
description-type: haddock
description: The idea is to post some colored text on the background.
license-name: MIT
|
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 uzantılar: %{allowed_types}"
extension_blacklist_error: "%{extension} uzantılı dosyaları yükleme izniniz yok, izin verilmeyen uzantılar: %{prohibited_types}"
content_type_whitelist_error: "%{content_type} uzantılı dosyaları yükleme izniniz yok"
content_type_blacklist_error: "%{content_type} uzantılı dosyaları yükleme izniniz yok"
rmagick_processing_error: "Resim rmagick ile düzenlenemedi, belkide resim değildir? Orjinal Hata: %{e}"
mini_magick_processing_error: "Resim MiniMagick ile düzenlenemedi, belkide resim değildir? Orjinal Hata: %{e}"
min_size_error: "Dosya boyutu daha büyük olmalıdır %{min_size}"
max_size_error: "Dosya boyutu daha az olmalıdır %{max_size}"
|
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 uzantılar: %{allowed_types}"
extension_blacklist_error: "%{extension} uzantılı dosyaları yükleme izniniz yok, izin verilmeyen uzantılar: %{prohibited_types}"
content_type_whitelist_error: "%{content_type} uzantılı dosyaları yükleme izniniz yok"
content_type_blacklist_error: "%{content_type} uzantılı dosyaları yükleme izniniz yok"
rmagick_processing_error: "Resim rmagick ile düzenlenemedi, belki de resim değildir? Orjinal Hata: %{e}"
mini_magick_processing_error: "Resim MiniMagick ile düzenlenemedi, belki de resim değildir? Orjinal Hata: %{e}"
min_size_error: "Dosya boyutu daha büyük olmalıdır %{min_size}"
max_size_error: "Dosya boyutu daha az olmalıdır %{max_size}"
|
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 # [linux]
- zlib
- python
source:
fn: stringtie-1.3.3.tar.gz
sha256: c01b16a681dc55f114dbfc2fcd725f615b2d9a79058ff8c110047cfa9cbe2976
url: http://ccb.jhu.edu/software/stringtie/dl/stringtie-1.3.3.tar.gz
test:
commands:
- "stringtie 2>&1 | grep Assemble"
- prepDE.py --help
|
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:
- libgcc # [linux]
- zlib
- python
source:
fn: stringtie-1.3.3.tar.gz
sha256: c01b16a681dc55f114dbfc2fcd725f615b2d9a79058ff8c110047cfa9cbe2976
url: http://ccb.jhu.edu/software/stringtie/dl/stringtie-1.3.3.tar.gz
test:
commands:
- "stringtie 2>&1 | grep Assemble"
- prepDE.py --help
|
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-recipes,lpantano/recipes,JenCabral/bioconda-recipes,JenCabral/bioconda-recipes,abims-sbr/bioconda-recipes,joachimwolff/bioconda-recipes,blankenberg/bioconda-recipes,ostrokach/bioconda-recipes,zachcp/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,saketkc/bioconda-recipes,CGATOxford/bioconda-recipes,CGATOxford/bioconda-recipes,daler/bioconda-recipes,xguse/bioconda-recipes,lpantano/recipes,peterjc/bioconda-recipes,xguse/bioconda-recipes,rob-p/bioconda-recipes,chapmanb/bioconda-recipes,acaprez/recipes,BIMSBbioinfo/bioconda-recipes,xguse/bioconda-recipes,cokelaer/bioconda-recipes,rvalieris/bioconda-recipes,colinbrislawn/bioconda-recipes,CGATOxford/bioconda-recipes,rob-p/bioconda-recipes,dmaticzka/bioconda-recipes,jfallmann/bioconda-recipes,dmaticzka/bioconda-recipes,hardingnj/bioconda-recipes,martin-mann/bioconda-recipes,roryk/recipes,npavlovikj/bioconda-recipes,ostrokach/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,shenwei356/bioconda-recipes,CGATOxford/bioconda-recipes,bebatut/bioconda-recipes,mcornwell1957/bioconda-recipes,oena/bioconda-recipes,oena/bioconda-recipes,matthdsm/bioconda-recipes,Luobiny/bioconda-recipes,matthdsm/bioconda-recipes,omicsnut/bioconda-recipes,jasper1918/bioconda-recipes,HassanAmr/bioconda-recipes,colinbrislawn/bioconda-recipes,hardingnj/bioconda-recipes,omicsnut/bioconda-recipes,gvlproject/bioconda-recipes,dmaticzka/bioconda-recipes,gregvonkuster/bioconda-recipes,blankenberg/bioconda-recipes,shenwei356/bioconda-recipes,ostrokach/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,mcornwell1957/bioconda-recipes,peterjc/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,joachimwolff/bioconda-recipes,daler/bioconda-recipes,jfallmann/bioconda-recipes,joachimwolff/bioconda-recipes,acaprez/recipes,mdehollander/bioconda-recipes,gregvonkuster/bioconda-recipes,hardingnj/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,HassanAmr/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,mcornwell1957/bioconda-recipes,colinbrislawn/bioconda-recipes,HassanAmr/bioconda-recipes,jasper1918/bioconda-recipes,omicsnut/bioconda-recipes,mcornwell1957/bioconda-recipes,bow/bioconda-recipes,bebatut/bioconda-recipes,ivirshup/bioconda-recipes,roryk/recipes,cokelaer/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,omicsnut/bioconda-recipes,keuv-grvl/bioconda-recipes,bow/bioconda-recipes,acaprez/recipes,chapmanb/bioconda-recipes,abims-sbr/bioconda-recipes,daler/bioconda-recipes,joachimwolff/bioconda-recipes,dmaticzka/bioconda-recipes,rvalieris/bioconda-recipes,bioconda/bioconda-recipes,joachimwolff/bioconda-recipes,JenCabral/bioconda-recipes,gvlproject/bioconda-recipes,saketkc/bioconda-recipes,npavlovikj/bioconda-recipes,chapmanb/bioconda-recipes,keuv-grvl/bioconda-recipes,CGATOxford/bioconda-recipes,phac-nml/bioconda-recipes,Luobiny/bioconda-recipes,gregvonkuster/bioconda-recipes,bow/bioconda-recipes,bebatut/bioconda-recipes,martin-mann/bioconda-recipes,daler/bioconda-recipes,hardingnj/bioconda-recipes,keuv-grvl/bioconda-recipes,JenCabral/bioconda-recipes,acaprez/recipes,phac-nml/bioconda-recipes,matthdsm/bioconda-recipes,dmaticzka/bioconda-recipes,jasper1918/bioconda-recipes,mcornwell1957/bioconda-recipes,gregvonkuster/bioconda-recipes,bow/bioconda-recipes,jasper1918/bioconda-recipes,zachcp/bioconda-recipes,joachimwolff/bioconda-recipes,jfallmann/bioconda-recipes,mdehollander/bioconda-recipes,abims-sbr/bioconda-recipes,shenwei356/bioconda-recipes,HassanAmr/bioconda-recipes,dkoppstein/recipes,guowei-he/bioconda-recipes,rvalieris/bioconda-recipes,JenCabral/bioconda-recipes,ostrokach/bioconda-recipes,guowei-he/bioconda-recipes,rvalieris/bioconda-recipes,saketkc/bioconda-recipes,colinbrislawn/bioconda-recipes,martin-mann/bioconda-recipes,ivirshup/bioconda-recipes,colinbrislawn/bioconda-recipes,daler/bioconda-recipes,peterjc/bioconda-recipes,bioconda/bioconda-recipes,oena/bioconda-recipes,cokelaer/bioconda-recipes,bow/bioconda-recipes,ivirshup/bioconda-recipes,blankenberg/bioconda-recipes,bioconda/recipes,npavlovikj/bioconda-recipes,peterjc/bioconda-recipes,peterjc/bioconda-recipes,mdehollander/bioconda-recipes,ostrokach/bioconda-recipes,saketkc/bioconda-recipes,gvlproject/bioconda-recipes,Luobiny/bioconda-recipes,phac-nml/bioconda-recipes,gvlproject/bioconda-recipes,mdehollander/bioconda-recipes,hardingnj/bioconda-recipes,cokelaer/bioconda-recipes,oena/bioconda-recipes,HassanAmr/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,JenCabral/bioconda-recipes,martin-mann/bioconda-recipes,chapmanb/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,phac-nml/bioconda-recipes,phac-nml/bioconda-recipes,lpantano/recipes,colinbrislawn/bioconda-recipes,martin-mann/bioconda-recipes,ostrokach/bioconda-recipes,ivirshup/bioconda-recipes,dkoppstein/recipes,jfallmann/bioconda-recipes,xguse/bioconda-recipes,rvalieris/bioconda-recipes,rob-p/bioconda-recipes,roryk/recipes,CGATOxford/bioconda-recipes,saketkc/bioconda-recipes,bioconda/bioconda-recipes,ivirshup/bioconda-recipes,guowei-he/bioconda-recipes,lpantano/recipes,bioconda/bioconda-recipes,bow/bioconda-recipes,abims-sbr/bioconda-recipes,dkoppstein/recipes,blankenberg/bioconda-recipes,guowei-he/bioconda-recipes,saketkc/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,jasper1918/bioconda-recipes,npavlovikj/bioconda-recipes,shenwei356/bioconda-recipes,Luobiny/bioconda-recipes,gvlproject/bioconda-recipes,dmaticzka/bioconda-recipes,mdehollander/bioconda-recipes,keuv-grvl/bioconda-recipes,peterjc/bioconda-recipes,bebatut/bioconda-recipes,mdehollander/bioconda-recipes,oena/bioconda-recipes,gvlproject/bioconda-recipes,bioconda/recipes,chapmanb/bioconda-recipes,abims-sbr/bioconda-recipes,keuv-grvl/bioconda-recipes,guowei-he/bioconda-recipes,xguse/bioconda-recipes,matthdsm/bioconda-recipes
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.