kickster 2.0.0 → 2.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/{template/.ruby-version → .ruby-version} +0 -0
- data/README.md +11 -1
- data/circle.yml +2 -0
- data/lib/kickster/version.rb +1 -1
- data/snippets/circle/automated +2 -2
- data/snippets/circle/circle.yml +3 -1
- data/snippets/travis/.travis.yml +1 -1
- data/snippets/travis/automated +2 -2
- data/template/.gitignore +12 -4
- data/template/_assets/javascripts/vendor.js +1 -1
- data/template/_config.yml.tt +3 -4
- data/template/bin/deploy +2 -2
- data/template/bin/setup +3 -3
- data/template/circle.yml +2 -0
- data/template/{bower.json.tt → package.json.tt} +1 -1
- metadata +5 -6
- data/template/.bowerrc +0 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9728ee6ba85127f5ad63a9a707585c0a084194df
|
|
4
|
+
data.tar.gz: 0b5a6c4aafd20938b92030b731ecaa495ee90d28
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 93713011ec83088790e096d9d9f2d1febff46a9bad4208c554c8717cf7ac0ba148d749756889e2002deb87379c8337e64a8b55444fb8daac12db57d47a063634
|
|
7
|
+
data.tar.gz: 35dadce9b0db084d4375343c6d772739359a787284ac3b7568ea1fc50ad070b0aaadae17b82b5a8383e2c497f7d666b408da94ce3382741c04c13712c26e2882
|
|
File without changes
|
data/README.md
CHANGED
|
@@ -8,16 +8,26 @@ Kickster provides a basic Jekyll project setup packed with web best practises an
|
|
|
8
8
|
Used tools:
|
|
9
9
|
|
|
10
10
|
- [Autoprefixer](https://github.com/postcss/autoprefixer)
|
|
11
|
-
- [Bower](http://bower.io/)
|
|
12
11
|
- [Circle CI](https://circleci.com/)
|
|
13
12
|
- [Html-proofer](https://github.com/gjtorikian/html-proofer)
|
|
14
13
|
- [Jekyll](http://jekyllrb.com/)
|
|
15
14
|
- [Jekyll assets](https://github.com/jekyll/jekyll-assets)
|
|
16
15
|
- [Jekyll Sitemap](https://github.com/jekyll/jekyll-sitemap)
|
|
17
16
|
- [HTML5 Boilerplate](https://html5boilerplate.com/) (Influenced by)
|
|
17
|
+
- [Yarn](https://yarnpkg.com)
|
|
18
18
|
|
|
19
19
|
## Installation
|
|
20
20
|
|
|
21
|
+
If you haven't installed the following tools then go ahead and do so (make sure you have [Homebrew](https://brew.sh/) installed):
|
|
22
|
+
|
|
23
|
+
brew install ruby
|
|
24
|
+
brew install npm
|
|
25
|
+
|
|
26
|
+
On windows, install Ruby and Node with the installers found here:
|
|
27
|
+
|
|
28
|
+
- [Ruby](https://rubyinstaller.org/)
|
|
29
|
+
- [Node.js](https://nodejs.org/en/download/)
|
|
30
|
+
|
|
21
31
|
Install the gem:
|
|
22
32
|
|
|
23
33
|
gem install kickster
|
data/circle.yml
CHANGED
data/lib/kickster/version.rb
CHANGED
data/snippets/circle/automated
CHANGED
|
@@ -18,7 +18,7 @@ fi
|
|
|
18
18
|
git checkout -b gh-pages
|
|
19
19
|
|
|
20
20
|
# Build site.
|
|
21
|
-
|
|
21
|
+
yarn install --modules-folder ./_assets/yarn
|
|
22
22
|
bundle exec jekyll build
|
|
23
23
|
|
|
24
24
|
# Delete and move files.
|
|
@@ -36,7 +36,7 @@ git push -f $ORIGIN_URL gh-pages
|
|
|
36
36
|
|
|
37
37
|
# Move back to previous branch.
|
|
38
38
|
git checkout -
|
|
39
|
-
|
|
39
|
+
yarn install --modules-folder ./_assets/yarn
|
|
40
40
|
|
|
41
41
|
echo "Deployed Successfully!"
|
|
42
42
|
|
data/snippets/circle/circle.yml
CHANGED
data/snippets/travis/.travis.yml
CHANGED
data/snippets/travis/automated
CHANGED
|
@@ -20,7 +20,7 @@ fi
|
|
|
20
20
|
git checkout -b gh-pages
|
|
21
21
|
|
|
22
22
|
# Build site.
|
|
23
|
-
|
|
23
|
+
yarn install --modules-folder ./_assets/yarn
|
|
24
24
|
bundle exec jekyll build
|
|
25
25
|
|
|
26
26
|
# Delete and move files.
|
|
@@ -38,7 +38,7 @@ git push -f -q $ORIGIN_CREDENTIALS gh-pages
|
|
|
38
38
|
|
|
39
39
|
# Move back to previous branch.
|
|
40
40
|
git checkout -
|
|
41
|
-
|
|
41
|
+
yarn install --modules-folder ./_assets/yarn
|
|
42
42
|
|
|
43
43
|
echo "Deployed Successfully!"
|
|
44
44
|
|
data/template/.gitignore
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
//= require jquery
|
|
1
|
+
//= require jquery
|
data/template/_config.yml.tt
CHANGED
|
@@ -5,25 +5,24 @@ assets:
|
|
|
5
5
|
features:
|
|
6
6
|
automatic_img_size: false
|
|
7
7
|
sources:
|
|
8
|
-
- _assets/bower
|
|
9
8
|
- _assets/fonts
|
|
10
9
|
- _assets/images
|
|
11
10
|
- _assets/javascripts
|
|
12
11
|
- _assets/stylesheets
|
|
12
|
+
- _assets/yarn
|
|
13
13
|
|
|
14
14
|
exclude:
|
|
15
|
-
- .bowerrc
|
|
16
15
|
- .travis.yml
|
|
17
16
|
- bin/*
|
|
18
|
-
- bower.json
|
|
19
17
|
- circle.yml
|
|
20
18
|
- Gemfile
|
|
21
19
|
- Gemfile.lock
|
|
20
|
+
- package.json
|
|
22
21
|
- README.md
|
|
23
22
|
|
|
24
23
|
ga_analytics: # Add Google Analytics tracking code
|
|
25
24
|
|
|
26
|
-
|
|
25
|
+
plugins:
|
|
27
26
|
- jekyll-assets
|
|
28
27
|
- jekyll-sitemap
|
|
29
28
|
|
data/template/bin/deploy
CHANGED
|
@@ -25,7 +25,7 @@ fi
|
|
|
25
25
|
git checkout -b gh-pages
|
|
26
26
|
|
|
27
27
|
# Build site.
|
|
28
|
-
|
|
28
|
+
yarn install --modules-folder ./_assets/yarn
|
|
29
29
|
bundle exec jekyll build
|
|
30
30
|
|
|
31
31
|
# Delete and move files.
|
|
@@ -40,7 +40,7 @@ git push -f -q origin gh-pages
|
|
|
40
40
|
|
|
41
41
|
# Move back to previous branch.
|
|
42
42
|
git checkout -
|
|
43
|
-
|
|
43
|
+
yarn install --modules-folder ./_assets/yarn
|
|
44
44
|
|
|
45
45
|
echo "Deployed Successfully!"
|
|
46
46
|
|
data/template/bin/setup
CHANGED
|
@@ -11,6 +11,6 @@ gem install bundler --conservative
|
|
|
11
11
|
bundle check || bundle install
|
|
12
12
|
bundle update
|
|
13
13
|
|
|
14
|
-
# Set up JS dependencies via
|
|
15
|
-
|
|
16
|
-
|
|
14
|
+
# Set up JS dependencies via Yarn.
|
|
15
|
+
npm install -g yarn
|
|
16
|
+
yarn install --modules-folder ./_assets/yarn
|
data/template/circle.yml
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: kickster
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.
|
|
4
|
+
version: 2.1.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Nielsen Ramon
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-04
|
|
11
|
+
date: 2017-08-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: thor
|
|
@@ -63,6 +63,7 @@ extra_rdoc_files: []
|
|
|
63
63
|
files:
|
|
64
64
|
- ".gitignore"
|
|
65
65
|
- ".hound.yml"
|
|
66
|
+
- ".ruby-version"
|
|
66
67
|
- Gemfile
|
|
67
68
|
- README.md
|
|
68
69
|
- Rakefile
|
|
@@ -81,9 +82,7 @@ files:
|
|
|
81
82
|
- snippets/travis/.travis.yml
|
|
82
83
|
- snippets/travis/README.md
|
|
83
84
|
- snippets/travis/automated
|
|
84
|
-
- template/.bowerrc
|
|
85
85
|
- template/.gitignore
|
|
86
|
-
- template/.ruby-version
|
|
87
86
|
- template/404.html
|
|
88
87
|
- template/Gemfile
|
|
89
88
|
- template/README.md.tt
|
|
@@ -100,10 +99,10 @@ files:
|
|
|
100
99
|
- template/_layouts/default.html
|
|
101
100
|
- template/bin/deploy
|
|
102
101
|
- template/bin/setup
|
|
103
|
-
- template/bower.json.tt
|
|
104
102
|
- template/circle.yml
|
|
105
103
|
- template/favicon.ico
|
|
106
104
|
- template/index.html
|
|
105
|
+
- template/package.json.tt
|
|
107
106
|
- template/robots.txt
|
|
108
107
|
homepage: http://kickster.nielsenramon.com/
|
|
109
108
|
licenses:
|
|
@@ -125,7 +124,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
125
124
|
version: '0'
|
|
126
125
|
requirements: []
|
|
127
126
|
rubyforge_project:
|
|
128
|
-
rubygems_version: 2.
|
|
127
|
+
rubygems_version: 2.6.11
|
|
129
128
|
signing_key:
|
|
130
129
|
specification_version: 4
|
|
131
130
|
summary: Worry-free deploying to GitHub Pages using Jekyll.
|
data/template/.bowerrc
DELETED