octopress-deploy 1.0.0.rc.6 → 1.0.0.rc.7

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: 4c467df4b3e393b8f56f2416e57d0cdb38fe912f
4
- data.tar.gz: 318d2b394f037d4c8d22aff61e1eaa9a932e7b57
3
+ metadata.gz: 7c5c40fa03da556e7001d3927f2bdcf7d03e2513
4
+ data.tar.gz: a049b96f9d396cc4d77bc5fe09ebbaff61c5773c
5
5
  SHA512:
6
- metadata.gz: fdd39fed5216d0aa542719c5831e9954bc0b88c7b8af08476524470970055510472a53753021a36d34badf2ab8fdd79ff03d7ef2a71e670f46f5551e357ad184
7
- data.tar.gz: ea58b46c376c30140c713eea0e754adcdcc2d1e69976ee99df31af03d7b273a5a3bf1c9e866123c93caa10e08a8368f8229e78381873aed0ef81c7a7a13dee73
6
+ metadata.gz: bbb6faa73d8c27c83e174954458f28a2878f699af4744495032192dc2b730849ed3bf9a24f719e970b1650cd47edf92761c6e402b06d4fd639a2299823403c55
7
+ data.tar.gz: 905263c2650b45c5612916983af759729edc72215a58a0b276449589780bee2e88463659b914e984bdd0b16caa0528f43df230a1e8e3a0e0481fa70b39eda799
data/CHANGELOG.md CHANGED
@@ -1,7 +1,13 @@
1
1
  # Octopress Deploy Changelog
2
2
 
3
+
3
4
  ## Current version
4
5
 
6
+ ### 1.0.0 RC7 - 2014-05-02
7
+
8
+ - Fixed: `--version` flag.
9
+ - Fixed: Moved requiring `pry-debugger` to tests.
10
+
5
11
  ### 1.0.0 RC6 - 2014-04-17
6
12
 
7
13
  - Fixed: CLI options now override config file settings.
@@ -3,8 +3,14 @@ title: "Octopress Deploy Changelog"
3
3
  permalink: /changelog/
4
4
  ---
5
5
 
6
+
6
7
  ## Current version
7
8
 
9
+ ### 1.0.0 RC7 - 2014-05-02
10
+
11
+ - Fixed: `--version` flag.
12
+ - Fixed: Moved requiring `pry-debugger` to tests.
13
+
8
14
  ### 1.0.0 RC6 - 2014-04-17
9
15
 
10
16
  - Fixed: CLI options now override config file settings.
@@ -1,6 +1,5 @@
1
1
  $LOAD_PATH.unshift File.expand_path("../", __FILE__)
2
2
  #
3
- require 'pry-debugger'
4
3
 
5
4
  require 'colorator'
6
5
  require 'yaml'
@@ -4,6 +4,7 @@ module Octopress
4
4
  def self.init_with_program(p)
5
5
  p.command(:deploy) do |c|
6
6
  c.syntax "deploy [options]"
7
+ c.version Deploy::VERSION
7
8
  c.description "Deploy your Octopress site."
8
9
  c.option "config_file", "--config FILE", "The path to your config file (default: _deploy.yml)"
9
10
 
@@ -1,5 +1,5 @@
1
1
  module Octopress
2
2
  module Deploy
3
- VERSION = "1.0.0.rc.6"
3
+ VERSION = "1.0.0.rc.7"
4
4
  end
5
5
  end
data/test/test.rb CHANGED
@@ -1,6 +1,7 @@
1
1
  require File.expand_path("../../lib/octopress-deploy.rb", __FILE__)
2
2
  require 'fileutils'
3
3
  require 'find'
4
+ require 'pry-debugger'
4
5
 
5
6
  @has_failed = false
6
7
  @failures = {}
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: octopress-deploy
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0.rc.6
4
+ version: 1.0.0.rc.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brandon Mathis
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-04-18 00:00:00.000000000 Z
11
+ date: 2014-05-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: octopress