dextery 0.0.3c → 0.0.4a

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,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- ZTk1YWM4ZTIyZmQyYTRiMWUyZmRkYTBkMTNkYjdlOTA0NDY2MzlkNQ==
4
+ NWE2OGVlMzY1NjI1ZGVhMTIwYWNlZjEzMDIxYTY0ZjI3ZWUzY2JlMw==
5
5
  data.tar.gz: !binary |-
6
- ODhiOTA5OWFhZmZjNTg5MTQ3NGM0NDU4NTEzYzRhOWY2OTU2OTM5Zg==
6
+ NGY5OGQ5ODJmZDkxOWIyMzlhYmNjZTU0YjAxNDVhZmM3YjQwOGRlNg==
7
7
  !binary "U0hBNTEy":
8
8
  metadata.gz: !binary |-
9
- NmI1ZGM1NjY3Nzc2M2E4OThhMGNhNGJjM2FhODExYmEyY2VlMWIzNzQ4OTEx
10
- MzZkMTNkNWQ0MDRjYTVkNzc2ODRkODdlMGNkOGEwNDZlMDBlMWJlNDk2YWNk
11
- Mzc3NWE5YzM3MTI4OTUwNDk4YmE4YTNhYzQ2YjQzYjk4MWIwYTg=
9
+ YjQ0NDc4NmE5ZWU2OWY5NTdmNzc2ZjJmZGU4NzA1Nzc1OWFiOGVhNzYyYWE0
10
+ MWEzNmE2NjRlOWZhNGViYzUyOTI5ZmZlMDJmZTA2M2ZlNDc1ZDg3OGNhYmYz
11
+ ODNlZDlmYmMzNTg3NDQ1MTgxZTdjYjYyZjY2N2E3MTc0M2YzNzM=
12
12
  data.tar.gz: !binary |-
13
- OGQ5OGI5OTYwNGRlYjBhYTM5MzgyYWE1YjcyMTQzYjg3N2Y0ODFkOWUwMmZh
14
- NjBiM2NkYWIxOTEwNzJiNGVjYTAwNzEzNzk3ODVkYjViM2U4NjcyODVkY2U0
15
- ZmQ1ZjNkNjAyY2VkYWUyNjM5NTE2MDcyOTZiZWZkY2ZlOWU2ODc=
13
+ ZDcxZjNkM2UxYjFiZTY4MTBhMDY4NjhhNGQyYzM4NzAxNmVmYmVlMWMyYTRh
14
+ MTY4MGRkOTJkODUwYTNjNzNmNmRjYmI5NmU1ODM4MGQwY2NhNDUzZjNiMTgx
15
+ ZTBmOGQxMzYwMTFmMzBlMTNiNTc1YjZiNTNjOGViZTQ4MTYyYmI=
data/README.md CHANGED
@@ -9,7 +9,7 @@ Make sure you have *dextery* install:
9
9
 
10
10
  ### Released Version
11
11
 
12
- 0.0.3
12
+ 0.0.4a
13
13
 
14
14
  ### Dependencies
15
15
 
@@ -4,7 +4,7 @@ require 'dextery'
4
4
  require 'commander/import'
5
5
 
6
6
  program :name, 'dextery'
7
- program :version, '0.0.3c'
7
+ program :version, '0.0.4a'
8
8
  program :description, 'Blog engine based on Jekyll Bootstrap'
9
9
 
10
10
  default_command :help
@@ -6,7 +6,7 @@ require 'dextery'
6
6
 
7
7
  Gem::Specification.new do |spec|
8
8
  spec.name = "dextery"
9
- spec.version = "0.0.3c"
9
+ spec.version = "0.0.4a"
10
10
  spec.authors = ["Marshall Shen"]
11
11
  spec.email = ["mshen@groupon.com"]
12
12
  spec.description = "Blog engine based on Jekyll Bootstrap"
@@ -5,7 +5,7 @@ module Dextery
5
5
 
6
6
  new_blog_path = File.expand_path(args.join(" "), Dir.pwd)
7
7
  if preserve_source_location?(new_blog_path, options)
8
- Dextery.logger.error "Conflict:", "#{new_blog_path} exists and is not empty."
8
+ Dextery.logger.error "Conflict: #{new_blog_path} exists and is not empty."
9
9
  else
10
10
  clean_directory(new_blog_path) if options[:force]
11
11
  copy_bootstrap(new_blog_path)
@@ -15,7 +15,7 @@ module Dextery
15
15
 
16
16
  private
17
17
  def self.preserve_source_location?(path, options)
18
- options[:force] && !Dir["#{path}/**/*"].empty?
18
+ !options[:force] && !Dir["#{path}/**/*"].empty?
19
19
  end
20
20
 
21
21
  def self.clean_directory(path)
@@ -9,8 +9,8 @@ pygments: true
9
9
  # Themes are encouraged to use these universal variables
10
10
  # so be sure to set them if your theme uses them.
11
11
  #
12
- title : Jekyll Bootstrap
13
- tagline: Site Tagline
12
+ title : Dexter
13
+ tagline: I am a neat monster
14
14
  author :
15
15
  name : Name Lastname
16
16
  email : blah@email.test
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dextery
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3c
4
+ version: 0.0.4a
5
5
  platform: ruby
6
6
  authors:
7
7
  - Marshall Shen
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-07-24 00:00:00.000000000 Z
11
+ date: 2013-07-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: commander