Skip to content

Commit a686522

Browse files
Restructure to meet vale style guidelines
1 parent 366c925 commit a686522

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+150
-11
lines changed

.travis.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
language: python
2+
cache: bundler
3+
python:
4+
- "3.6"
5+
install:
6+
# Install the latest release of Vale:
7+
- wget https://github.com/errata-ai/vale/releases/download/v2.0.0-beta.2/vale_2.0.0-beta.2_Linux_64-bit.tar.gz
8+
- mkdir bin && tar -xvzf vale_2.0.0-beta.2_Linux_64-bit.tar.gz -C bin
9+
- export PATH=./bin:"$PATH"
10+
11+
- bundle install --jobs=3
12+
13+
- pip install yamllint
14+
- pip install markdata
15+
- pip install pyyaml
16+
before_script:
17+
- yamllint -c '.yamllint.yml' Openly
18+
script:
19+
- cucumber
20+
- zip -r Openly.zip Openly -x "*.DS_Store"
21+
deploy:
22+
provider: releases
23+
api_key: $GITHUB_TOKEN
24+
file: Openly.zip
25+
skip_cleanup: true
26+
on:
27+
tags: true

.yamllint.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
rules:
2+
# We only include a single document (without directives) in our rules, so
3+
# the extra markup is unnecessary.
4+
document-start: disable
5+
# Many rules include a `link` key that can be relatively long.
6+
#
7+
# TODO: Should we change this?
8+
line-length: disable

Ages.yml

Lines changed: 0 additions & 6 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 3 additions & 0 deletions

Gemfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
source 'https://rubygems.org'
2+
3+
gem 'aruba', '~> 0.14.3'
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)