Skip to content

Commit dcf2cda

Browse files
authored
Merge for production (TheThingsNetwork#106)
1 parent bf3d58d commit dcf2cda

File tree

348 files changed

+27005
-7708
lines changed

Some content is hidden

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

348 files changed

+27005
-7708
lines changed

.eslintrc.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
"browser": true,
44
"commonjs": true,
55
"es6": true,
6-
"node": true
6+
"node": true,
7+
"jquery": true
78
},
89
"parserOptions": {
910
"ecmaFeatures": {

.gitignore

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Generated site
2-
_site
3-
_test
2+
/_site
3+
/_test
4+
/_scp
45

56
# Logs
67
logs
@@ -13,7 +14,6 @@ npm-debug.log*
1314
# Do include Sass since GitHub Pages needs it to build the Jekyll site
1415
!/node_modules/font-awesome
1516
!/node_modules/stylebook
16-
!/node_modules/smooth-scroll
1717

1818
# Cache
1919
.npm
@@ -25,4 +25,4 @@ npm-debug.log*
2525

2626
# Private
2727
/.env
28-
/_local
28+
/_local

.spelling

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

.travis.yml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,19 @@
1+
branches:
2+
only: master
13
language: ruby
24
rvm: 2.2.0
3-
sudo: false
5+
sudo: false # speeds up builds by using the container-based infrastructure
46
env:
57
global:
6-
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true
7-
- TRAVIS_NODE_VERSION="4"
8-
- SOURCE_BRANCH="master"
9-
- secure: YLSAvt/O0rqAyTIYo4Rc2xJzq/IsI1oujhBajR/KAxjNvd9L7An2Qv66SS2v6VzQ2KqTua/ZdWWO0lLnVgchADN9dUDlHgGK8ZAyu/eEd5/9zId7CNntg3CwrWVLUyAxWQqOo4hvo5BZpkn5QCKsvoIA9Kvb9FvXc8ipZ/9nCgThAY2xiJuO/69RphGc+10DBRekkZSrGdH7T/0b25gDiNDvvwEU1XVVnV3HSBAONYlDgPzUMK6lfSsflNL3NKDfBtcnPXTPn/FOVSJGGOBkMlRpuNasS2tT7wrsYCprpSIe4OK0CsFrl+MkcaifhVVfXYhmqy7k0KjBoIEJueNdoSM1yc9rglpUCIXWTE4hG+BfC3fLkNEZB/gDkLV6uOifu2aNjZQ19WpcG+Q8WSjnBXId7sREUU3sJ1HS9UuPDLd7l+fh2zS/ti9KQDYLf/h2s0MRgO8zYoqRteutqqU2dyk34ih41rpx1cTp0RmT+nsy6ppqAPZmZrc+YkA8WitVILWykeP5vw/242PU6nbg5pcpJ9eg2EvwZ8yqLuKxBYCek5khr/PjaYM/Uz82HXy4vAy2RGQSxsDrIyN4dx0VkIghpuLmDq/d16MPbdpeYkRg7rhf1BZ/qZPRg5AavtxN1Q0X5MqNxzLkiXNHe+QdsjvNechosB2M9un7wcTUJM0=
8+
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true # speeds up installation of html-proofer
9+
- TRAVIS_NODE_VERSION="6"
10+
- SOURCE_BRANCH="master" # only deploy from master
11+
- secure: PiWLpQoluWMoZHM+lWXgHKUs9ez3o07xiUKEohppGWhlC1k0y2qHu9C906r5YWGESZ2Okr22n1G+ToisW+CJ5Dd7CHzaDrJBt3SY9ZTfUxrg9pleAZF5EM/9DfhS7i4YnunYrrUooCYdT6UNvLS5FlWutNKueEeC9ACAXSgFG8IdN8WrEv3nUi+l10ORZEMlCQrndorxq2JvqBsZjdjVQciDzUv4SQ0AVUQT0d9JCT4OP/+TvcAwhcmAkAaM2NanAikdFq//7wccuAY+77S+lnm2m2NDNvbeHp4/mManBP+gtUQgk+GoWOmY8GOTyz8qUZuFzKDC0RI4XrHFgrcGmBq0dHXIpbbihTksJQowP6SC8qz4RBI1IWR4/yUzrOaIVyJpT49SHShLpx8inmb0cDt5c0pWpwY0JOIAHPWddfu74Uzi82RI4Ff1jVCcCHWKckdM6YJlB8YMimBslmKKYDNNwhWY+03n77nZihWx5uXjF8t8GW2YPl1jTDxtACTEzrUwgOaYxd6qrk6t6bSVFOMQC1b6RklvYYjWuAcr6C/4N1MUf2jTjRS63CTq3nDTd3/z19mv1gXTXjMOChCdebSEgxE1sF9tVZuhZsA2d0QcwSE0rHEzPZgflpYMrNxmWq5eTtFXQf3U0QG8fzKbn/LIz968bsW2gR4HvVIx4Fg=
1012
install:
1113
- bundle install
1214
- rm -rf ~/.nvm && git clone https://github.com/creationix/nvm.git ~/.nvm && (cd ~/.nvm
1315
&& git checkout `git describe --abbrev=0 --tags`) && source ~/.nvm/nvm.sh && nvm
1416
install $TRAVIS_NODE_VERSION
1517
- npm install
16-
script: npm test && bundle exec rake deploy
18+
# disabling tests until production is up: npm test && bundle exec rake deploy
19+
script: bundle exec rake deploy

Gemfile

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
source 'https://rubygems.org'
22

3-
gem 'github-pages', '104', group: :jekyll_plugins
3+
gem 'jekyll'
4+
5+
group :jekyll_plugins do
6+
gem 'jekyll-seo-tag'
7+
gem 'jekyll-sitemap'
8+
gem 'jekyll-redirect-from'
9+
gem 'jemoji'
10+
end
11+
412
gem 'html-proofer'
13+
514
gem 'rake'
615
gem 'rake-jekyll'

Gemfile.lock

Lines changed: 22 additions & 84 deletions
Original file line numberDiff line numberDiff line change
@@ -1,61 +1,25 @@
11
GEM
22
remote: https://rubygems.org/
33
specs:
4-
activesupport (4.2.7)
4+
activesupport (4.2.7.1)
55
i18n (~> 0.7)
66
json (~> 1.7, >= 1.7.7)
77
minitest (~> 5.1)
88
thread_safe (~> 0.3, >= 0.3.4)
99
tzinfo (~> 1.1)
10-
addressable (2.4.0)
11-
coffee-script (2.4.1)
12-
coffee-script-source
13-
execjs
14-
coffee-script-source (1.11.1)
10+
addressable (2.5.0)
11+
public_suffix (~> 2.0, >= 2.0.2)
1512
colorator (1.1.0)
1613
colored (1.2)
17-
ethon (0.9.0)
14+
ethon (0.10.1)
1815
ffi (>= 1.3.0)
19-
execjs (2.7.0)
20-
faraday (0.10.0)
21-
multipart-post (>= 1.2, < 3)
2216
ffi (1.9.14)
2317
forwardable-extended (2.6.0)
2418
gemoji (2.1.0)
25-
github-pages (104)
26-
activesupport (= 4.2.7)
27-
github-pages-health-check (= 1.2.0)
28-
jekyll (= 3.3.0)
29-
jekyll-avatar (= 0.4.2)
30-
jekyll-coffeescript (= 1.0.1)
31-
jekyll-feed (= 0.8.0)
32-
jekyll-gist (= 1.4.0)
33-
jekyll-github-metadata (= 2.2.0)
34-
jekyll-mentions (= 1.2.0)
35-
jekyll-paginate (= 1.1.0)
36-
jekyll-redirect-from (= 0.11.0)
37-
jekyll-sass-converter (= 1.3.0)
38-
jekyll-seo-tag (= 2.1.0)
39-
jekyll-sitemap (= 0.12.0)
40-
jekyll-swiss (= 0.4.0)
41-
jemoji (= 0.7.0)
42-
kramdown (= 1.11.1)
43-
liquid (= 3.0.6)
44-
listen (= 3.0.6)
45-
mercenary (~> 0.3)
46-
minima (= 2.0.0)
47-
rouge (= 1.11.1)
48-
terminal-table (~> 1.4)
49-
github-pages-health-check (1.2.0)
50-
addressable (~> 2.3)
51-
net-dns (~> 0.8)
52-
octokit (~> 4.0)
53-
public_suffix (~> 1.4)
54-
typhoeus (~> 0.7)
5519
html-pipeline (2.4.2)
5620
activesupport (>= 2)
5721
nokogiri (>= 1.4)
58-
html-proofer (3.1.0)
22+
html-proofer (3.3.1)
5923
activesupport (>= 4.2, < 6.0)
6024
addressable (~> 2.3)
6125
colored (~> 1.2)
@@ -65,7 +29,7 @@ GEM
6529
typhoeus (~> 0.7)
6630
yell (~> 2.0)
6731
i18n (0.7.0)
68-
jekyll (3.3.0)
32+
jekyll (3.3.1)
6933
addressable (~> 2.4)
7034
colorator (~> 1.0)
7135
jekyll-sass-converter (~> 1.0)
@@ -76,31 +40,14 @@ GEM
7640
pathutil (~> 0.9)
7741
rouge (~> 1.7)
7842
safe_yaml (~> 1.0)
79-
jekyll-avatar (0.4.2)
80-
jekyll (~> 3.0)
81-
jekyll-coffeescript (1.0.1)
82-
coffee-script (~> 2.2)
83-
jekyll-feed (0.8.0)
84-
jekyll (~> 3.3)
85-
jekyll-gist (1.4.0)
86-
octokit (~> 4.2)
87-
jekyll-github-metadata (2.2.0)
88-
jekyll (~> 3.1)
89-
octokit (~> 4.0, != 4.4.0)
90-
jekyll-mentions (1.2.0)
91-
activesupport (~> 4.0)
92-
html-pipeline (~> 2.3)
93-
jekyll (~> 3.0)
94-
jekyll-paginate (1.1.0)
9543
jekyll-redirect-from (0.11.0)
9644
jekyll (>= 2.0)
97-
jekyll-sass-converter (1.3.0)
98-
sass (~> 3.2)
45+
jekyll-sass-converter (1.5.0)
46+
sass (~> 3.4)
9947
jekyll-seo-tag (2.1.0)
10048
jekyll (~> 3.3)
10149
jekyll-sitemap (0.12.0)
10250
jekyll (~> 3.3)
103-
jekyll-swiss (0.4.0)
10451
jekyll-watch (1.5.0)
10552
listen (~> 3.0, < 3.1)
10653
jemoji (0.7.0)
@@ -109,27 +56,20 @@ GEM
10956
html-pipeline (~> 2.2)
11057
jekyll (>= 3.0)
11158
json (1.8.3)
112-
kramdown (1.11.1)
59+
kramdown (1.13.1)
11360
liquid (3.0.6)
114-
listen (3.0.6)
115-
rb-fsevent (>= 0.9.3)
116-
rb-inotify (>= 0.9.7)
61+
listen (3.0.8)
62+
rb-fsevent (~> 0.9, >= 0.9.4)
63+
rb-inotify (~> 0.9, >= 0.9.7)
11764
mercenary (0.3.6)
11865
mini_portile2 (2.1.0)
119-
minima (2.0.0)
120-
minitest (5.9.0)
121-
multipart-post (2.0.0)
122-
net-dns (0.8.0)
123-
nokogiri (1.6.8)
66+
minitest (5.10.1)
67+
nokogiri (1.6.8.1)
12468
mini_portile2 (~> 2.1.0)
125-
pkg-config (~> 1.1.7)
126-
octokit (4.6.2)
127-
sawyer (~> 0.8.0, >= 0.5.3)
128-
parallel (1.9.0)
69+
parallel (1.10.0)
12970
pathutil (0.14.0)
13071
forwardable-extended (~> 2.6)
131-
pkg-config (1.1.7)
132-
public_suffix (1.5.3)
72+
public_suffix (2.0.4)
13373
rake (10.5.0)
13474
rake-jekyll (1.1.0)
13575
rake (~> 10.0)
@@ -139,25 +79,23 @@ GEM
13979
rouge (1.11.1)
14080
safe_yaml (1.0.4)
14181
sass (3.4.22)
142-
sawyer (0.8.1)
143-
addressable (>= 2.3.5, < 2.6)
144-
faraday (~> 0.8, < 1.0)
145-
terminal-table (1.7.3)
146-
unicode-display_width (~> 1.1.1)
14782
thread_safe (0.3.5)
14883
typhoeus (0.8.0)
14984
ethon (>= 0.8.0)
15085
tzinfo (1.2.2)
15186
thread_safe (~> 0.1)
152-
unicode-display_width (1.1.1)
153-
yell (2.0.6)
87+
yell (2.0.7)
15488

15589
PLATFORMS
15690
ruby
15791

15892
DEPENDENCIES
159-
github-pages (= 104)
16093
html-proofer
94+
jekyll
95+
jekyll-redirect-from
96+
jekyll-seo-tag
97+
jekyll-sitemap
98+
jemoji
16199
rake
162100
rake-jekyll
163101

0 commit comments

Comments
 (0)