octopress-ink 1.0.0.rc.63 → 1.0.0.rc.64
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/octopress-ink/commands/helpers.rb +8 -9
- data/lib/octopress-ink/commands/new.rb +4 -3
- data/lib/octopress-ink/plugins.rb +0 -1
- data/lib/octopress-ink/version.rb +1 -1
- data/lib/octopress-ink.rb +0 -4
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 93a3f6f855a23b9c4099964745280119b1ee4156
|
4
|
+
data.tar.gz: 9f4cae531d3031f96eee5dcae8b4316de3ef3718
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a266441f0d498495fcfff12088759b07b897a2fdaf1f1b0960cc8749634767245671cb1fac78e2c73d4b580fb60268153fa9284636541e4f91463e2a598a4b73
|
7
|
+
data.tar.gz: d1373d2f316560872e6acde44cc909f1a066d395044ff07a24fa3a941a72bbec76aeb3fc783d8cc42d8b215159b1fbdb03db2223d8c298f55e3640e0b251b220
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,9 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 1.0.0 RC64 - 2015-04-28
|
4
|
+
- Minor: Improved bundler integration
|
5
|
+
- Minor: Added short flags for ink list and ink copy subcommands.
|
6
|
+
|
3
7
|
### 1.0.0 RC63 - 2015-04-26
|
4
8
|
- New: Pages and Sass assets can read plugin config at {{ plugin.config_label }} instead of {{ plugins.plugin-name.config_label }}.
|
5
9
|
|
@@ -3,21 +3,20 @@ module Octopress
|
|
3
3
|
module Commands
|
4
4
|
module CommandHelpers
|
5
5
|
def self.add_asset_options(c, action)
|
6
|
-
c.option "config-file", "--config
|
7
|
-
c.option "layouts", "--layouts", "#{action} only layouts"
|
8
|
-
c.option "includes", "--includes", "#{action} only includes"
|
9
|
-
c.option "pages", "--pages", "#{action} only pages"
|
10
|
-
c.option "templates", "--templates", "#{action} only pages"
|
11
|
-
c.option "stylesheets", "--stylesheets", "#{action} only Stylesheets (.css, .scss, .sass)"
|
6
|
+
c.option "config-file", "-c", "--config", "#{action} plugin's config file"
|
7
|
+
c.option "layouts", "-l", "--layouts", "#{action} only layouts"
|
8
|
+
c.option "includes", "-i", "--includes", "#{action} only includes"
|
9
|
+
c.option "pages", "-p", "--pages", "#{action} only pages"
|
10
|
+
c.option "templates", "-t", "--templates", "#{action} only pages"
|
11
|
+
c.option "stylesheets", "-s", "--stylesheets", "#{action} only Stylesheets (.css, .scss, .sass)"
|
12
12
|
c.option "css", "--css", "#{action} only CSS files (.css)"
|
13
13
|
c.option "sass", "--sass", "#{action} only Sass files (.scss, .sass)"
|
14
|
-
c.option "javascripts", "--javascripts", "#{action} only Javascripts (.js and .coffee)"
|
14
|
+
c.option "javascripts", "-j", "--javascripts", "#{action} only Javascripts (.js and .coffee)"
|
15
15
|
c.option "js", "--js", "#{action} only Javascript files (.js)"
|
16
16
|
c.option "coffee", "--coffee", "#{action} only Coffeescript files (.coffee)"
|
17
|
-
c.option "images", "--images", "#{action} only images"
|
17
|
+
c.option "images", "-img", "--images", "#{action} only images"
|
18
18
|
c.option "fonts", "--fonts", "#{action} only fonts"
|
19
19
|
c.option "files", "--files", "#{action} only files"
|
20
|
-
c.option "config", "--config", "#{action} only configuration file."
|
21
20
|
end
|
22
21
|
end
|
23
22
|
end
|
@@ -107,13 +107,14 @@ _site
|
|
107
107
|
#
|
108
108
|
def self.create_gem(name)
|
109
109
|
begin
|
110
|
+
require 'bundler'
|
110
111
|
require 'bundler/cli'
|
111
|
-
|
112
|
+
Bundler::CLI.start(['gem', name])
|
113
|
+
|
112
114
|
rescue LoadError
|
113
|
-
raise "To use this
|
115
|
+
raise "To use this feature you'll need to install the bundler gem with `gem install bundler`."
|
114
116
|
end
|
115
117
|
|
116
|
-
bundler.gem(name)
|
117
118
|
end
|
118
119
|
|
119
120
|
# Add Octopress Ink dependency to Gemspec
|
data/lib/octopress-ink.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: octopress-ink
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.0.rc.
|
4
|
+
version: 1.0.0.rc.64
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Brandon Mathis
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-04-
|
11
|
+
date: 2015-04-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -284,7 +284,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
284
284
|
version: 1.3.1
|
285
285
|
requirements: []
|
286
286
|
rubyforge_project:
|
287
|
-
rubygems_version: 2.
|
287
|
+
rubygems_version: 2.4.6
|
288
288
|
signing_key:
|
289
289
|
specification_version: 4
|
290
290
|
summary: A framework creating Jekyll/Octopress themes and plugins
|