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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 38cbab3ab928fb591f938e1c98cb078ab6ae8c51
4
- data.tar.gz: 88673f92bd520ed0959ebc513a8ba2f191690b6a
3
+ metadata.gz: 93a3f6f855a23b9c4099964745280119b1ee4156
4
+ data.tar.gz: 9f4cae531d3031f96eee5dcae8b4316de3ef3718
5
5
  SHA512:
6
- metadata.gz: e0d6ccfd49f34053b397b9f8941d5082ba23b52d60dea30038776c0fff98276450487473c71e7c7fe020936ff61b896f0ae2f0cf09ce8334b532f9342c254ca1
7
- data.tar.gz: ec2662de4ea0f38adfbde2ef333203a73f81ed0096b9e1484064cc7ebd44486f7f6f5df255e0bab143be79c5b3b1e30999b43568558c3a677ed4fa71a1ec53be
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-file", "#{action} plugin's default configuration"
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
- bundler = Bundler::CLI.new
112
+ Bundler::CLI.start(['gem', name])
113
+
112
114
  rescue LoadError
113
- raise "To use this feautre you'll need to install the bundler gem with `gem install bundler`."
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
@@ -56,7 +56,6 @@ module Octopress
56
56
  Bootstrap.reset
57
57
  PluginAssetPipeline.reset
58
58
 
59
- puts 'registering'
60
59
  plugins.each(&:register)
61
60
  end
62
61
  end
@@ -1,5 +1,5 @@
1
1
  module Octopress
2
2
  module Ink
3
- VERSION = "1.0.0.rc.63"
3
+ VERSION = "1.0.0.rc.64"
4
4
  end
5
5
  end
data/lib/octopress-ink.rb CHANGED
@@ -36,10 +36,6 @@ module Octopress
36
36
  require 'octopress-ink/commands'
37
37
  end
38
38
 
39
- if ENV['OCTODEV']
40
- require 'octopress-debugger'
41
- end
42
-
43
39
  @load_plugin_assets = true
44
40
 
45
41
  Plugins.reset
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.63
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-27 00:00:00.000000000 Z
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.2.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