kickster 2.0.0 → 2.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1ccb57b7462de3a18ee009c3ba81a898e2983d19
4
- data.tar.gz: f4441e9b06e9efdf6e6048fcb8349fd9b384e864
3
+ metadata.gz: 9728ee6ba85127f5ad63a9a707585c0a084194df
4
+ data.tar.gz: 0b5a6c4aafd20938b92030b731ecaa495ee90d28
5
5
  SHA512:
6
- metadata.gz: c83d729620c1bc06965859b52672c44616acc6f5595149e1e3c32fb8481eaea460753a70a4b42d85d9e1200775883473e23c85c66fbde78bb510e311e531b184
7
- data.tar.gz: b72c3e632c000cd29dd0c000e78bd088f65cc52b8417b1a989bd0c3ce907a6099e4166f4b70126ef4136531a04ecbd54fbc4147e2e269498978678cf916b666a
6
+ metadata.gz: 93713011ec83088790e096d9d9f2d1febff46a9bad4208c554c8717cf7ac0ba148d749756889e2002deb87379c8337e64a8b55444fb8daac12db57d47a063634
7
+ data.tar.gz: 35dadce9b0db084d4375343c6d772739359a787284ac3b7568ea1fc50ad070b0aaadae17b82b5a8383e2c497f7d666b408da94ce3382741c04c13712c26e2882
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
@@ -1,6 +1,8 @@
1
1
  machine:
2
2
  ruby:
3
3
  version: 2.4.1
4
+ node:
5
+ version: 8.2.1
4
6
 
5
7
  dependencies:
6
8
  pre:
@@ -1,3 +1,3 @@
1
1
  module Kickster
2
- VERSION = "2.0.0"
2
+ VERSION = "2.1.0"
3
3
  end
@@ -18,7 +18,7 @@ fi
18
18
  git checkout -b gh-pages
19
19
 
20
20
  # Build site.
21
- bower install
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
- bower install
39
+ yarn install --modules-folder ./_assets/yarn
40
40
 
41
41
  echo "Deployed Successfully!"
42
42
 
@@ -3,7 +3,9 @@ machine:
3
3
  USER_NAME: <your-github-username>
4
4
  USER_EMAIL: <your-github-email>
5
5
  ruby:
6
- version: 2.4.0
6
+ version: 2.4.1
7
+ node:
8
+ version: 8.2.1
7
9
 
8
10
  dependencies:
9
11
  pre:
@@ -1,6 +1,6 @@
1
1
  language: ruby
2
2
  rvm:
3
- - 2.4.0
3
+ - 2.4.1
4
4
  install:
5
5
  - ./bin/setup
6
6
  script:
@@ -20,7 +20,7 @@ fi
20
20
  git checkout -b gh-pages
21
21
 
22
22
  # Build site.
23
- bower install
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
- bower install
41
+ yarn install --modules-folder ./_assets/yarn
42
42
 
43
43
  echo "Deployed Successfully!"
44
44
 
@@ -1,6 +1,14 @@
1
- !.keep
1
+ # Global
2
2
  *.DS_Store
3
+ Desktop.ini
4
+ Thumbs.db
5
+
6
+ # Project
7
+ !.keep
3
8
  *.sass-cache
4
- /.asset-cache/*
5
- /_assets/bower/*
6
- /_site/*
9
+ /_assets/yarn/
10
+ /_site/
11
+ /.asset-cache/
12
+ /node_modules/
13
+ Gemfile.lock
14
+ yarn.lock
@@ -1 +1 @@
1
- //= require jquery/dist/jquery
1
+ //= require jquery
@@ -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
- gems:
25
+ plugins:
27
26
  - jekyll-assets
28
27
  - jekyll-sitemap
29
28
 
@@ -25,7 +25,7 @@ fi
25
25
  git checkout -b gh-pages
26
26
 
27
27
  # Build site.
28
- bower install
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
- bower install
43
+ yarn install --modules-folder ./_assets/yarn
44
44
 
45
45
  echo "Deployed Successfully!"
46
46
 
@@ -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 Bower.
15
- bower --version > /dev/null || npm install -g bower
16
- bower install
14
+ # Set up JS dependencies via Yarn.
15
+ npm install -g yarn
16
+ yarn install --modules-folder ./_assets/yarn
@@ -1,6 +1,8 @@
1
1
  machine:
2
2
  ruby:
3
3
  version: 2.4.1
4
+ node:
5
+ version: 8.2.1
4
6
 
5
7
  dependencies:
6
8
  pre:
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "<%= snake_name %>",
3
3
  "dependencies": {
4
- "jquery": "~3.2.1"
4
+ "jquery": "^3.2.1"
5
5
  }
6
6
  }
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.0.0
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-25 00:00:00.000000000 Z
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.5.1
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.
@@ -1,3 +0,0 @@
1
- {
2
- "directory": "_assets/bower"
3
- }