public
Description: A simple, blogish software build with Sinatra, jQuery, and uses Git for data storage
Homepage: http://mattsears.github.com/aerial
Clone URL: git://github.com/mattsears/aerial.git
commit  4357a1594e32bbb1bff4b9f36ac9567425a5f598
tree    6c8e1e1b9163eb1659c2b775b4b6df263d95be4a
parent  fc85d5649fc02370adbef8db5df28c2438fec832
aerial / aerial.gemspec
100644 121 lines (116 sloc) 4.297 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
# Generated by jeweler
# DO NOT EDIT THIS FILE
# Instead, edit Jeweler::Tasks in Rakefile, and run `rake gemspec`
# -*- encoding: utf-8 -*-
 
Gem::Specification.new do |s|
  s.name = %q{aerial}
  s.version = "0.1.0"
 
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
  s.authors = ["Matt Sears"]
  s.date = %q{2009-10-20}
  s.default_executable = %q{aerial}
  s.description = %q{A simple, blogish software build with Sinatra, jQuery, and uses Git for data storage}
  s.email = %q{matt@mattsears.com}
  s.executables = ["aerial"]
  s.extra_rdoc_files = [
    "README.md"
  ]
  s.files = [
    ".gitignore",
     "MIT-LICENSE",
     "README.md",
     "Rakefile",
     "VERSION",
     "aerial.gemspec",
     "bin/aerial",
     "config/config.sample.ru",
     "config/config.sample.yml",
     "config/config.test.yml",
     "config/config.yml",
     "config/deploy.rb",
     "config/thin.sample.yml",
     "examples/articles/congratulations/congratulations-aerial-is-configured-correctly.article",
     "examples/public/javascripts/application.js",
     "examples/public/javascripts/jquery-1.3.1.min.js",
     "examples/public/javascripts/jquery.template.js",
     "examples/views/article.haml",
     "examples/views/articles.haml",
     "examples/views/comment.haml",
     "examples/views/home.haml",
     "examples/views/layout.haml",
     "examples/views/not_found.haml",
     "examples/views/post.haml",
     "examples/views/rss.haml",
     "examples/views/sidebar.haml",
     "examples/views/style.sass",
     "features/article.feature",
     "features/home.feature",
     "features/step_definitions/article_steps.rb",
     "features/step_definitions/home_steps.rb",
     "features/support/env.rb",
     "features/support/pages/article.rb",
     "features/support/pages/homepage.rb",
     "index.html",
     "lib/aerial.rb",
     "lib/aerial/app.rb",
     "lib/aerial/article.rb",
     "lib/aerial/base.rb",
     "lib/aerial/comment.rb",
     "lib/aerial/config.rb",
     "lib/aerial/content.rb",
     "lib/aerial/installer.rb",
     "lib/aerial/vendor/akismetor.rb",
     "lib/aerial/vendor/cache.rb",
     "spec/aerial_spec.rb",
     "spec/app_spec.rb",
     "spec/article_spec.rb",
     "spec/base_spec.rb",
     "spec/comment_spec.rb",
     "spec/config_spec.rb",
     "spec/fixtures/articles/congratulations-aerial-is-configured-correctly/congratulations-aerial-is-configured-correctly.article",
     "spec/fixtures/articles/sample-article/sample-article.article",
     "spec/fixtures/articles/test-article-one/test-article.article",
     "spec/fixtures/articles/test-article-three/test-article.article",
     "spec/fixtures/articles/test-article-two/comment-missing-fields.comment",
     "spec/fixtures/articles/test-article-two/test-article.article",
     "spec/fixtures/articles/test-article-two/test-comment.comment",
     "spec/fixtures/config.yml",
     "spec/fixtures/public/javascripts/application.js",
     "spec/fixtures/public/javascripts/jquery-1.3.1.min.js",
     "spec/fixtures/public/javascripts/jquery.template.js",
     "spec/fixtures/views/article.haml",
     "spec/fixtures/views/articles.haml",
     "spec/fixtures/views/comment.haml",
     "spec/fixtures/views/home.haml",
     "spec/fixtures/views/layout.haml",
     "spec/fixtures/views/not_found.haml",
     "spec/fixtures/views/post.haml",
     "spec/fixtures/views/rss.haml",
     "spec/fixtures/views/sidebar.haml",
     "spec/fixtures/views/style.sass",
     "spec/spec_helper.rb"
  ]
  s.homepage = %q{http://github.com/mattsears/aerial}
  s.rdoc_options = ["--charset=UTF-8"]
  s.require_paths = ["lib"]
  s.rubyforge_project = %q{aerial}
  s.rubygems_version = %q{1.3.5}
  s.summary = %q{A simple, blogish software build with Sinatra, jQuery, and uses Git for data storage}
  s.test_files = [
    "spec/aerial_spec.rb",
     "spec/app_spec.rb",
     "spec/article_spec.rb",
     "spec/base_spec.rb",
     "spec/comment_spec.rb",
     "spec/config_spec.rb",
     "spec/spec_helper.rb"
  ]
 
  if s.respond_to? :specification_version then
    current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
    s.specification_version = 3
 
    if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
    else
    end
  else
  end
end