baron 1.0.6 → 1.0.7
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/VERSION +1 -1
- data/baron.gemspec +2 -2
- data/lib/baron.rb +2 -2
- metadata +2 -2
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.0.
|
|
1
|
+
1.0.7
|
data/baron.gemspec
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = "baron"
|
|
8
|
-
s.version = "1.0.
|
|
8
|
+
s.version = "1.0.7"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Nathan Buggia"]
|
|
12
|
-
s.date = "2013-03-
|
|
12
|
+
s.date = "2013-03-22"
|
|
13
13
|
s.description = "What's in the box: (1) Publish to Heroku using Git (2) Author articles in markdown (3) Article categories (4) Multiple permalink formats supported (5) Redirects (6) Advanced SEO optimizations and Google Analytics/ Webmaster Tools support. Uses Rack, RSpec, Bootstrap, JQuery, Disqus, Thin"
|
|
14
14
|
s.email = "nbuggia@gmail.com"
|
|
15
15
|
s.extra_rdoc_files = [
|
data/lib/baron.rb
CHANGED
|
@@ -313,7 +313,6 @@ module Baron
|
|
|
313
313
|
:url => 'http://localhost/', # root URL of the site
|
|
314
314
|
:date => lambda {|now| now.strftime("%d/%m/%Y") }, # date function
|
|
315
315
|
:markdown => :smart, # use markdown
|
|
316
|
-
:disqus => false, # disqus name
|
|
317
316
|
:summary => {:max => 150, :delim => /~\n/}, # length of summary and delimiter
|
|
318
317
|
:ext => 'txt', # extension for articles
|
|
319
318
|
:permalink_prefix => '', # common path prefix for article permalinks
|
|
@@ -321,7 +320,8 @@ module Baron
|
|
|
321
320
|
:article_max => 5, # number of most recent articles to return to custom pages
|
|
322
321
|
:theme => 'default', # name of the theme to use
|
|
323
322
|
:google_analytics => '', # account id for google analytics account
|
|
324
|
-
:google_webmaster => ''
|
|
323
|
+
:google_webmaster => '', # HTML Meta Tag verification code for google webmaster account
|
|
324
|
+
:disqus_shortname => false # account name for your disqus account www.disqus.com
|
|
325
325
|
}
|
|
326
326
|
|
|
327
327
|
def initialize obj
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: baron
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.7
|
|
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-03-
|
|
12
|
+
date: 2013-03-22 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: rspec
|