moft 1.0.4 → 1.0.5
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.
- data/bin/moft +0 -0
- data/lib/moft.rb +1 -1
- data/lib/moft/command.rb +1 -2
- data/lib/moft/convertible.rb +1 -0
- data/moft.gemspec +2 -3
- metadata +3 -4
- data/Gemfile +0 -2
data/bin/moft
CHANGED
|
File without changes
|
data/lib/moft.rb
CHANGED
|
@@ -56,7 +56,7 @@ require_all 'moft/tags'
|
|
|
56
56
|
SafeYAML::OPTIONS[:suppress_warnings] = true
|
|
57
57
|
|
|
58
58
|
module Moft
|
|
59
|
-
VERSION = '1.0.
|
|
59
|
+
VERSION = '1.0.5'
|
|
60
60
|
|
|
61
61
|
# Public: Generate a Moft configuration Hash by merging the default
|
|
62
62
|
# options with anything in _config.yml, and adding the given options on top.
|
data/lib/moft/command.rb
CHANGED
data/lib/moft/convertible.rb
CHANGED
data/moft.gemspec
CHANGED
|
@@ -4,9 +4,9 @@ Gem::Specification.new do |s|
|
|
|
4
4
|
s.rubygems_version = '1.3.5'
|
|
5
5
|
|
|
6
6
|
s.name = 'moft'
|
|
7
|
-
s.version = '1.0.
|
|
7
|
+
s.version = '1.0.5'
|
|
8
8
|
s.license = 'MIT'
|
|
9
|
-
s.date = '2013-
|
|
9
|
+
s.date = '2013-06-25'
|
|
10
10
|
s.rubyforge_project = 'moft'
|
|
11
11
|
|
|
12
12
|
s.summary = "A simple, static site generator that is based off of Jekyll."
|
|
@@ -47,7 +47,6 @@ Gem::Specification.new do |s|
|
|
|
47
47
|
|
|
48
48
|
# = MANIFEST =
|
|
49
49
|
s.files = %w[
|
|
50
|
-
Gemfile
|
|
51
50
|
LICENSE
|
|
52
51
|
bin/moft
|
|
53
52
|
moft.gemspec
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: moft
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.5
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2013-
|
|
12
|
+
date: 2013-06-25 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: liquid
|
|
@@ -345,7 +345,6 @@ executables:
|
|
|
345
345
|
extensions: []
|
|
346
346
|
extra_rdoc_files: []
|
|
347
347
|
files:
|
|
348
|
-
- Gemfile
|
|
349
348
|
- LICENSE
|
|
350
349
|
- bin/moft
|
|
351
350
|
- moft.gemspec
|
|
@@ -413,7 +412,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
413
412
|
version: '0'
|
|
414
413
|
requirements: []
|
|
415
414
|
rubyforge_project: moft
|
|
416
|
-
rubygems_version: 1.8.
|
|
415
|
+
rubygems_version: 1.8.25
|
|
417
416
|
signing_key:
|
|
418
417
|
specification_version: 2
|
|
419
418
|
summary: A simple, static site generator that is based off of Jekyll.
|
data/Gemfile
DELETED