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 +8 -8
- data/README.md +1 -1
- data/bin/dextery +1 -1
- data/dextery.gemspec +1 -1
- data/lib/dextery/generator.rb +2 -2
- data/lib/dextery/template/_config.yml +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
NWE2OGVlMzY1NjI1ZGVhMTIwYWNlZjEzMDIxYTY0ZjI3ZWUzY2JlMw==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
NGY5OGQ5ODJmZDkxOWIyMzlhYmNjZTU0YjAxNDVhZmM3YjQwOGRlNg==
|
7
7
|
!binary "U0hBNTEy":
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
YjQ0NDc4NmE5ZWU2OWY5NTdmNzc2ZjJmZGU4NzA1Nzc1OWFiOGVhNzYyYWE0
|
10
|
+
MWEzNmE2NjRlOWZhNGViYzUyOTI5ZmZlMDJmZTA2M2ZlNDc1ZDg3OGNhYmYz
|
11
|
+
ODNlZDlmYmMzNTg3NDQ1MTgxZTdjYjYyZjY2N2E3MTc0M2YzNzM=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
ZDcxZjNkM2UxYjFiZTY4MTBhMDY4NjhhNGQyYzM4NzAxNmVmYmVlMWMyYTRh
|
14
|
+
MTY4MGRkOTJkODUwYTNjNzNmNmRjYmI5NmU1ODM4MGQwY2NhNDUzZjNiMTgx
|
15
|
+
ZTBmOGQxMzYwMTFmMzBlMTNiNTc1YjZiNTNjOGViZTQ4MTYyYmI=
|
data/README.md
CHANGED
data/bin/dextery
CHANGED
data/dextery.gemspec
CHANGED
@@ -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.
|
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"
|
data/lib/dextery/generator.rb
CHANGED
@@ -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:
|
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 :
|
13
|
-
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.
|
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-
|
11
|
+
date: 2013-07-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: commander
|