kickster 0.1.0 → 0.1.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 63b682c091ffbaeb1a9263deac190ead1a412678
4
- data.tar.gz: 547f1b2c745254910a84c3577a0d78d030953e54
3
+ metadata.gz: 9944c0c127446e4d430a9864ac75f212deb5a06c
4
+ data.tar.gz: e8ab72b2f1774396b9e83b84f7527ec180f18252
5
5
  SHA512:
6
- metadata.gz: 32c58864a837c4b01cf30c123202d59365fd3aa2ee37850d141bba64806725995c0a40d893f4f7b9b9f473c8bc12d2dae7bdfd5f9c079d9fdc3892ccdc565433
7
- data.tar.gz: 3d66043894980061d5583c71da27146d7f373e0357f1f03a5f34e5a8f8508a9e3982907ae7cd7aef8736d9eb61ff25d987bcea477360ded94d58634c57162ce5
6
+ metadata.gz: 1b9665b374c8f9cb416de11dcfe8a2c6983ef5d82fe29eaaf05ac583970df734a6f5c670840bc168ca30f9da06265adf4dcbc011b45904ea912b6dd88e8e6853
7
+ data.tar.gz: f88f3c58c41f638236c44b5b1151f7015b0d41a8b634b8b14e606245cabdc7a2b46853f0cee1330cc8bcf45742a80dd743abca62fda7022be7c11fa5053c4876
data/.hound.yml ADDED
@@ -0,0 +1,2 @@
1
+ ruby:
2
+ enabled: true
data/.travis.yml CHANGED
@@ -1,3 +1,8 @@
1
+ branches:
2
+ except:
3
+ - gh-pages
4
+ - website
1
5
  language: ruby
2
- rvm:
3
- - 2.1.3
6
+ notifications:
7
+ email: false
8
+ rvm: 2.1.3
data/README.md CHANGED
@@ -49,7 +49,7 @@ You can find example project [here](https://github.com/nielsenramon/kickster/tre
49
49
 
50
50
  MIT License
51
51
 
52
- ## Contributing
52
+ ### Contributing
53
53
 
54
54
  1. Fork it ( https://github.com/[my-github-username]/kickster/fork )
55
55
  2. Create your feature branch (`git checkout -b my-new-feature`)
data/Rakefile CHANGED
@@ -1 +1,3 @@
1
+ # encoding: utf-8
2
+ require "rubygems"
1
3
  require "bundler/gem_tasks"
data/kickster.gemspec CHANGED
@@ -1,16 +1,15 @@
1
- $:.push File.expand_path("../lib", __FILE__)
2
1
  require 'kickster/version'
3
2
 
4
3
  Gem::Specification.new do |spec|
5
4
  spec.name = "kickster"
6
5
  spec.version = Kickster::VERSION
7
6
  spec.platform = Gem::Platform::RUBY
8
- spec.authors = "Nielsen Ramon"
7
+ spec.author = "Nielsen Ramon"
9
8
  spec.summary = "Hassle-free deploying to GitHub Pages with Jekyll."
10
9
  spec.description = "Jekyll starter template with GitHub Pages deploy to kickstart your project."
11
10
  spec.email = "nielsenramon1@gmail.com"
12
11
  spec.homepage = "http://nielsenramon.be/kickster"
13
- spec.licenses = "MIT"
12
+ spec.license = "MIT"
14
13
 
15
14
  spec.files = `git ls-files`.split("\n")
16
15
  spec.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
data/lib/kickster.rb CHANGED
@@ -1,8 +1,2 @@
1
- dir = File.dirname(__FILE__)
2
- $LOAD_PATH.unshift dir unless $LOAD_PATH.include?(dir)
3
-
4
1
  require "kickster/generator"
5
-
6
- module Kickster
7
- kickster_path = File.expand_path("./", __FILE__)
8
- end
2
+ require "kickster/version"
@@ -1,7 +1,7 @@
1
- require 'kickster/version'
2
1
  require "fileutils"
3
- require 'thor'
4
- require 'pathname'
2
+ require "kickster/version"
3
+ require "pathname"
4
+ require "thor"
5
5
 
6
6
  module Kickster
7
7
  class Generator < Thor
@@ -20,7 +20,7 @@ module Kickster
20
20
 
21
21
  desc 'version', 'Show Kickster version'
22
22
  def version
23
- say "Kickster #{Kickster::VERSION}"
23
+ say "kickster-#{Kickster::VERSION}"
24
24
  end
25
25
 
26
26
  private
@@ -1,3 +1,3 @@
1
1
  module Kickster
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kickster
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nielsen Ramon
@@ -60,6 +60,7 @@ extensions: []
60
60
  extra_rdoc_files: []
61
61
  files:
62
62
  - ".gitignore"
63
+ - ".hound.yml"
63
64
  - ".travis.yml"
64
65
  - Gemfile
65
66
  - README.md