baron 1.0.0 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/Rakefile +4 -6
  2. data/VERSION +1 -1
  3. data/baron.gemspec +82 -0
  4. metadata +8 -36
data/Rakefile CHANGED
@@ -8,19 +8,17 @@ begin
8
8
  require 'jeweler'
9
9
  Jeweler::Tasks.new do |gem|
10
10
  gem.name = "baron"
11
- gem.summary = %Q{Hacked version of the toto blog engine}
12
- gem.description = %Q{Hacked version of the toto blog engine.}
11
+ gem.summary = %Q{Minimalist, yet full-featured, blog engine in 400 lines of code.}
12
+ gem.description = %Q{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}
13
13
  gem.email = "nbuggia@gmail.com"
14
- gem.homepage = "https://github.com/nbuggia/baron"
14
+ gem.homepage = "https://github.com/nbuggia/baron-blog-engine-gem"
15
15
  gem.authors = ["Nathan Buggia"]
16
16
  gem.add_development_dependency "rspec"
17
- gem.add_dependency "builder"
18
17
  gem.add_dependency "rack"
19
- gem.add_dependency "rdiscount"
20
18
  end
21
19
  Jeweler::GemcutterTasks.new
22
20
  rescue LoadError
23
- puts "Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler"
21
+ puts "Jeweler (or a dependency) not available. Install with: sudo gem install jeweler"
24
22
  end
25
23
 
26
24
  ##
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.0
1
+ 1.0.1
data/baron.gemspec ADDED
@@ -0,0 +1,82 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = "baron"
8
+ s.version = "1.0.1"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["Nathan Buggia"]
12
+ s.date = "2013-03-07"
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
+ s.email = "nbuggia@gmail.com"
15
+ s.extra_rdoc_files = [
16
+ "LICENSE"
17
+ ]
18
+ s.files = [
19
+ "LICENSE",
20
+ "Rakefile",
21
+ "Readme.md",
22
+ "VERSION",
23
+ "baron.gemspec",
24
+ "lib/baron.rb",
25
+ "spec/baron_article_spec.rb",
26
+ "spec/baron_blog_engine_spec.rb",
27
+ "spec/baron_spec.rb",
28
+ "spec/sample_data/Gemfile",
29
+ "spec/sample_data/Rakefile",
30
+ "spec/sample_data/articles/2012-11-09-sample-post.txt",
31
+ "spec/sample_data/articles/poems/1909-01-02-If.txt",
32
+ "spec/sample_data/articles/poems/1916-01-01-the-road-not-taken.txt",
33
+ "spec/sample_data/config.ru",
34
+ "spec/sample_data/images/import-csv-file-1.png",
35
+ "spec/sample_data/images/import-csv-file-2.png",
36
+ "spec/sample_data/images/import-csv-file-3.png",
37
+ "spec/sample_data/images/instagram.png",
38
+ "spec/sample_data/pages/about.rhtml",
39
+ "spec/sample_data/resources/feed.rss",
40
+ "spec/sample_data/resources/redirects.txt",
41
+ "spec/sample_data/resources/robots.txt",
42
+ "spec/sample_data/themes/test/css/app.css",
43
+ "spec/sample_data/themes/test/css/bootstrap-responsive.css",
44
+ "spec/sample_data/themes/test/css/bootstrap-responsive.min.css",
45
+ "spec/sample_data/themes/test/css/bootstrap.css",
46
+ "spec/sample_data/themes/test/css/bootstrap.min.css",
47
+ "spec/sample_data/themes/test/img/glyphicons-halflings-white.png",
48
+ "spec/sample_data/themes/test/img/glyphicons-halflings.png",
49
+ "spec/sample_data/themes/test/img/instagram.png",
50
+ "spec/sample_data/themes/test/js/bootstrap.js",
51
+ "spec/sample_data/themes/test/js/bootstrap.min.js",
52
+ "spec/sample_data/themes/test/js/image_alt.js",
53
+ "spec/sample_data/themes/test/js/read_later.js",
54
+ "spec/sample_data/themes/test/templates/archives.rhtml",
55
+ "spec/sample_data/themes/test/templates/article.rhtml",
56
+ "spec/sample_data/themes/test/templates/category.rhtml",
57
+ "spec/sample_data/themes/test/templates/error.rhtml",
58
+ "spec/sample_data/themes/test/templates/index.rhtml",
59
+ "spec/sample_data/themes/test/templates/layout.rhtml",
60
+ "spec/spec_helper.rb"
61
+ ]
62
+ s.homepage = "https://github.com/nbuggia/baron-blog-engine-gem"
63
+ s.require_paths = ["lib"]
64
+ s.rubygems_version = "1.8.25"
65
+ s.summary = "Minimalist, yet full-featured, blog engine in 400 lines of code."
66
+
67
+ if s.respond_to? :specification_version then
68
+ s.specification_version = 3
69
+
70
+ if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
71
+ s.add_development_dependency(%q<rspec>, [">= 0"])
72
+ s.add_runtime_dependency(%q<rack>, [">= 0"])
73
+ else
74
+ s.add_dependency(%q<rspec>, [">= 0"])
75
+ s.add_dependency(%q<rack>, [">= 0"])
76
+ end
77
+ else
78
+ s.add_dependency(%q<rspec>, [">= 0"])
79
+ s.add_dependency(%q<rack>, [">= 0"])
80
+ end
81
+ end
82
+
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.0
4
+ version: 1.0.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -27,22 +27,6 @@ dependencies:
27
27
  - - ! '>='
28
28
  - !ruby/object:Gem::Version
29
29
  version: '0'
30
- - !ruby/object:Gem::Dependency
31
- name: builder
32
- requirement: !ruby/object:Gem::Requirement
33
- none: false
34
- requirements:
35
- - - ! '>='
36
- - !ruby/object:Gem::Version
37
- version: '0'
38
- type: :runtime
39
- prerelease: false
40
- version_requirements: !ruby/object:Gem::Requirement
41
- none: false
42
- requirements:
43
- - - ! '>='
44
- - !ruby/object:Gem::Version
45
- version: '0'
46
30
  - !ruby/object:Gem::Dependency
47
31
  name: rack
48
32
  requirement: !ruby/object:Gem::Requirement
@@ -59,23 +43,10 @@ dependencies:
59
43
  - - ! '>='
60
44
  - !ruby/object:Gem::Version
61
45
  version: '0'
62
- - !ruby/object:Gem::Dependency
63
- name: rdiscount
64
- requirement: !ruby/object:Gem::Requirement
65
- none: false
66
- requirements:
67
- - - ! '>='
68
- - !ruby/object:Gem::Version
69
- version: '0'
70
- type: :runtime
71
- prerelease: false
72
- version_requirements: !ruby/object:Gem::Requirement
73
- none: false
74
- requirements:
75
- - - ! '>='
76
- - !ruby/object:Gem::Version
77
- version: '0'
78
- description: Hacked version of the toto blog engine.
46
+ description: ! 'What''s in the box: (1) Publish to Heroku using Git (2) Author articles
47
+ in markdown (3) Article categories (4) Multiple permalink formats supported (5)
48
+ Redirects (6) Advanced SEO optimizations and Google Analytics/ Webmaster Tools support.
49
+ Uses Rack, RSpec, Bootstrap, JQuery, Disqus, Thin'
79
50
  email: nbuggia@gmail.com
80
51
  executables: []
81
52
  extensions: []
@@ -86,6 +57,7 @@ files:
86
57
  - Rakefile
87
58
  - Readme.md
88
59
  - VERSION
60
+ - baron.gemspec
89
61
  - lib/baron.rb
90
62
  - spec/baron_article_spec.rb
91
63
  - spec/baron_blog_engine_spec.rb
@@ -123,7 +95,7 @@ files:
123
95
  - spec/sample_data/themes/test/templates/index.rhtml
124
96
  - spec/sample_data/themes/test/templates/layout.rhtml
125
97
  - spec/spec_helper.rb
126
- homepage: https://github.com/nbuggia/baron
98
+ homepage: https://github.com/nbuggia/baron-blog-engine-gem
127
99
  licenses: []
128
100
  post_install_message:
129
101
  rdoc_options: []
@@ -146,5 +118,5 @@ rubyforge_project:
146
118
  rubygems_version: 1.8.25
147
119
  signing_key:
148
120
  specification_version: 3
149
- summary: Hacked version of the toto blog engine
121
+ summary: Minimalist, yet full-featured, blog engine in 400 lines of code.
150
122
  test_files: []