aerial 0.0.0 → 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (90) hide show
  1. data/.gitignore +4 -1
  2. data/README.md +23 -28
  3. data/Rakefile +27 -52
  4. data/VERSION +1 -1
  5. data/aerial.gemspec +134 -0
  6. data/articles/congratulations/congratulations-aerial-is-configured-correctly.article +6 -0
  7. data/bin/aerial +5 -0
  8. data/config/config.sample.ru +19 -0
  9. data/config/config.sample.yml +29 -0
  10. data/config/config.test.yml +49 -0
  11. data/config/config.yml +3 -3
  12. data/config/thin.sample.yml +13 -0
  13. data/examples/articles/congratulations/congratulations-aerial-is-configured-correctly.article +6 -0
  14. data/{lib/spec/fixtures → examples}/public/javascripts/application.js +0 -0
  15. data/{lib/spec/fixtures → examples}/public/javascripts/jquery-1.3.1.min.js +0 -0
  16. data/{lib/spec/fixtures → examples}/public/javascripts/jquery.template.js +0 -0
  17. data/{lib/spec/fixtures → examples}/views/article.haml +1 -1
  18. data/{lib/spec/fixtures → examples}/views/articles.haml +0 -0
  19. data/{lib/spec/fixtures → examples}/views/comment.haml +1 -1
  20. data/{lib/spec/fixtures → examples}/views/home.haml +0 -0
  21. data/{lib/spec/fixtures → examples}/views/layout.haml +1 -1
  22. data/examples/views/not_found.haml +1 -0
  23. data/{lib/spec/fixtures → examples}/views/post.haml +0 -0
  24. data/{lib/spec/fixtures → examples}/views/rss.haml +2 -2
  25. data/{lib/spec/fixtures → examples}/views/sidebar.haml +8 -0
  26. data/{lib/spec/fixtures → examples}/views/style.sass +0 -0
  27. data/{lib/features → features}/article.feature +0 -0
  28. data/features/home.feature +16 -0
  29. data/{lib/features → features}/step_definitions/article_steps.rb +0 -0
  30. data/{lib/features → features}/step_definitions/home_steps.rb +0 -0
  31. data/{lib/features → features}/support/env.rb +0 -0
  32. data/{lib/features → features}/support/pages/article.rb +0 -0
  33. data/{lib/features → features}/support/pages/homepage.rb +0 -0
  34. data/index.html +164 -0
  35. data/lib/aerial.rb +38 -87
  36. data/lib/aerial/app.rb +93 -0
  37. data/lib/aerial/article.rb +28 -30
  38. data/lib/aerial/base.rb +24 -32
  39. data/lib/aerial/comment.rb +10 -19
  40. data/lib/aerial/content.rb +12 -21
  41. data/lib/aerial/installer.rb +119 -0
  42. data/public/javascripts/application.js +109 -0
  43. data/public/javascripts/jquery-1.3.1.min.js +19 -0
  44. data/public/javascripts/jquery.template.js +255 -0
  45. data/spec/aerial_spec.rb +19 -0
  46. data/{lib/spec/aerial_spec.rb → spec/app_spec.rb} +32 -40
  47. data/{lib/spec → spec}/article_spec.rb +21 -21
  48. data/{lib/spec → spec}/base_spec.rb +1 -5
  49. data/{lib/spec → spec}/comment_spec.rb +8 -8
  50. data/{lib/spec → spec}/config_spec.rb +0 -0
  51. data/spec/fixtures/articles/congratulations-aerial-is-configured-correctly/congratulations-aerial-is-configured-correctly.article +6 -0
  52. data/spec/fixtures/articles/sample-article/sample-article.article +6 -0
  53. data/spec/fixtures/articles/test-article-one/test-article.article +7 -0
  54. data/spec/fixtures/articles/test-article-three/test-article.article +7 -0
  55. data/spec/fixtures/articles/test-article-two/comment-missing-fields.comment +8 -0
  56. data/spec/fixtures/articles/test-article-two/test-article.article +7 -0
  57. data/spec/fixtures/articles/test-article-two/test-comment.comment +10 -0
  58. data/{lib/spec → spec}/fixtures/config.yml +0 -0
  59. data/spec/fixtures/public/javascripts/application.js +109 -0
  60. data/spec/fixtures/public/javascripts/jquery-1.3.1.min.js +19 -0
  61. data/spec/fixtures/public/javascripts/jquery.template.js +255 -0
  62. data/spec/fixtures/views/article.haml +19 -0
  63. data/spec/fixtures/views/articles.haml +2 -0
  64. data/spec/fixtures/views/comment.haml +8 -0
  65. data/spec/fixtures/views/home.haml +2 -0
  66. data/spec/fixtures/views/layout.haml +22 -0
  67. data/spec/fixtures/views/not_found.haml +1 -0
  68. data/spec/fixtures/views/post.haml +27 -0
  69. data/spec/fixtures/views/rss.haml +15 -0
  70. data/spec/fixtures/views/sidebar.haml +29 -0
  71. data/spec/fixtures/views/style.sass +163 -0
  72. data/{lib/spec → spec}/spec_helper.rb +15 -3
  73. data/views/article.haml +19 -0
  74. data/views/articles.haml +2 -0
  75. data/views/comment.haml +8 -0
  76. data/views/home.haml +2 -0
  77. data/views/layout.haml +22 -0
  78. data/views/not_found.haml +1 -0
  79. data/views/post.haml +27 -0
  80. data/views/rss.haml +15 -0
  81. data/views/sidebar.haml +29 -0
  82. data/views/style.sass +163 -0
  83. metadata +86 -40
  84. data/lib/features/home.feature +0 -16
  85. data/lib/spec/fixtures/articles/sample-article/sample-article.article +0 -6
  86. data/lib/spec/fixtures/articles/test-article-one/test-article.article +0 -7
  87. data/lib/spec/fixtures/articles/test-article-three/test-article.article +0 -7
  88. data/lib/spec/fixtures/articles/test-article-two/comment-missing-fields.comment +0 -8
  89. data/lib/spec/fixtures/articles/test-article-two/test-article.article +0 -7
  90. data/lib/spec/fixtures/articles/test-article-two/test-comment.comment +0 -10
@@ -8,7 +8,12 @@ require 'fileutils'
8
8
  require 'grit'
9
9
  require 'rack'
10
10
  require 'spec'
11
- require 'sinatra/test/rspec'
11
+ require 'rack/test'
12
+
13
+ def app
14
+ Aerial::App.set :root, File.expand_path( File.join(File.dirname(__FILE__), 'repo') )
15
+ Aerial::App
16
+ end
12
17
 
13
18
  # Helper for matching html tags
14
19
  module TagMatchers
@@ -62,7 +67,6 @@ module GitHelper
62
67
 
63
68
  def new_git_repo
64
69
  delete_git_repo # delete the old repo first
65
-
66
70
  path = File.expand_path( File.join(File.dirname(__FILE__), 'repo') )
67
71
  data = File.expand_path( File.join(File.dirname(__FILE__), 'fixtures') )
68
72
  Dir.mkdir(path)
@@ -94,11 +98,14 @@ include GitHelper
94
98
 
95
99
  Spec::Runner.configure do |config|
96
100
  repo_path = new_git_repo
101
+
97
102
  CONFIG = YAML.load_file( File.join(File.dirname(__FILE__), 'fixtures', 'config.yml') ) unless defined?(CONFIG)
98
103
  AERIAL_ROOT = File.join(File.dirname(__FILE__), 'repo') unless defined?(AERIAL_ROOT)
99
- require File.expand_path(File.dirname(__FILE__) + "/../aerial")
104
+
105
+ require File.expand_path(File.dirname(__FILE__) + "/../lib/aerial")
100
106
  config.include TagMatchers
101
107
  config.include GitHelper
108
+ config.include Rack::Test::Methods
102
109
  config.include Aerial
103
110
  config.include Aerial::Helper
104
111
  end
@@ -108,10 +115,15 @@ set :environment, :test
108
115
  set :run, false
109
116
  set :raise_errors, true
110
117
  set :logging, false
118
+ set :views => File.join(File.dirname(__FILE__), "/..", "repo", "views"),
119
+ :public => File.join(File.dirname(__FILE__), "/..", "repo", "public")
111
120
 
112
121
  include Aerial
113
122
 
114
123
  def setup_repo
115
124
  @repo_path = new_git_repo
125
+ @config_path = File.join(@repo_path, "config")
116
126
  Aerial.stub!(:repo).and_return(Grit::Repo.new(@repo_path))
127
+ Aerial.new(@repo_path, "config.yml")
128
+
117
129
  end
@@ -0,0 +1,19 @@
1
+ - article = @article if @article
2
+ .article
3
+ %h2
4
+ %a{:href => article.permalink}
5
+ =article.title
6
+ %span
7
+ =article.comments.size
8
+ %h3
9
+ ="Posted by #{article.author} on #{humanized_date article.publish_date}"
10
+ %p.entry
11
+ =article.body_html
12
+ .meta
13
+ %span
14
+ Tags:
15
+ =link_to_tags article.tags
16
+ %br/
17
+ %span
18
+ Meta:
19
+ ="#{article.comments.size} comments, <a href='#{article.permalink}' rel='permalink'>permalink</a>"
@@ -0,0 +1,2 @@
1
+ #articles
2
+ =partial :article, :collection => @articles
@@ -0,0 +1,8 @@
1
+ .comment
2
+ %h2
3
+ %a{:href => comment.homepage}
4
+ =comment.author
5
+ %span
6
+ =comment.publish_date
7
+ %p
8
+ =comment.body
@@ -0,0 +1,2 @@
1
+ #articles
2
+ =partial :article, :collection => @articles
@@ -0,0 +1,22 @@
1
+ !!! Strict
2
+ %html
3
+ %head
4
+ %title= page_title
5
+ %script{ 'type' => "text/javascript", :src => "/javascripts/jquery-1.3.1.min.js" }
6
+ %script{ 'type' => "text/javascript", :src => "/javascripts/jquery.template.js" }
7
+ %script{ 'type' => "text/javascript", :src => "/javascripts/application.js" }
8
+ %link{:href => '/style.css', :rel => 'stylesheet', :type => 'text/css'}
9
+ %link{:href => "#{base_url}/feed", :rel => 'alternate', :type => 'application/atom+xml', :title => "Feed for #{}" }
10
+ %body
11
+ #container
12
+ #header
13
+ #logo
14
+ %h1
15
+ %a{:href => '/'}= Aerial.config.title
16
+ %span
17
+ =Aerial.config.subtitle
18
+ #content= yield
19
+ #sidebar= partial :sidebar
20
+ #footer
21
+ %p#legal= "&copy; #{Time.now.strftime('%Y')} #{Aerial.config.author}"
22
+ %p#powered= "powered by <a href='http://github.com/mattsears/aerial' title='Aerial'>Aerial</a>"
@@ -0,0 +1 @@
1
+ The page you requested could not be found.
@@ -0,0 +1,27 @@
1
+ =partial :article
2
+ %h5
3
+ Comments
4
+ #comments
5
+ =partial :comment, :collection => @article.comments
6
+
7
+ %div{:id => "new_comment"}
8
+ %form{:action => "/article/#{@article.id}/comments"}
9
+ %p
10
+ %input{:type => "text", :id => "comment_author"}
11
+ %label{:id => "author_label"}
12
+ Your name (required)
13
+ %p
14
+ %input{:type => "text", :id => "comment_email"}
15
+ %label{:id => "email_label"}
16
+ Your email address (required)
17
+ %p
18
+ %input{:type => "text", :id => "comment_homepage"}
19
+ %label{:id => "homepage_label"}
20
+ Website
21
+ %p
22
+ %label{:id => "comment_label"}
23
+ Please enter your comment
24
+ %textarea{:id => "comment_body"}
25
+ %p
26
+ %button{:type => "submit", :id => "comment_submit", :onclick => "Comment.submit('#{@article.id}'); return false;"}
27
+ Submit Comment (Thanks)
@@ -0,0 +1,15 @@
1
+ !!! XML
2
+ %rss{"version" => "2.0"}
3
+ %channel
4
+ %title= "#{Aerial.config.title}"
5
+ %link= "#{base_url}"
6
+ %language= "en-us"
7
+ %ttl= "40"
8
+ %description= "#{Aerial.config.subtitle}"
9
+ - @articles.each do |article|
10
+ %item
11
+ %title= article.title
12
+ %link= full_hostname(article.permalink)
13
+ %description= article.body_html
14
+ %pubDate= article.publish_date
15
+ %guid{"isPermaLink" => "false"}= article.id
@@ -0,0 +1,29 @@
1
+ #about
2
+ %h2 About
3
+ %p
4
+ Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut
5
+ labore et dolore magna aliqua. Ut enimad minim veniam, quis nostrud exercitation ullamco
6
+ laboris nisi ut aliquip ex ea commodo consequat.
7
+
8
+ #menu
9
+ %h2 Menu
10
+ %ul
11
+ %li
12
+ %a{:href => "/"}Home
13
+ %li
14
+ %a{:href => "/about"}About
15
+ %h2 Recent Posts
16
+ %ul
17
+ -Aerial::Article.recent.each do |article|
18
+ %li
19
+ %a{:href => "#{article.permalink}"}=article.title
20
+ %h2 Categories
21
+ %ul
22
+ -Aerial::Article.tags.each do |tag|
23
+ %li
24
+ %a{:href => "/tags/#{tag}"}=tag
25
+ %h2 Archives
26
+ %ul
27
+ -Aerial::Article.archives.each do |archive|
28
+ %li
29
+ %a{:href => "/archives/#{archive[0][0]}"}="#{archive[0][1]} (#{archive[1]})"
@@ -0,0 +1,163 @@
1
+ !red = #f00
2
+ !black = #000
3
+ !darkgrey = #555
4
+ !lightgrey = #eeeeee
5
+ !blue = #2168a6
6
+ !red = #ed1e24
7
+
8
+ =image-replacement
9
+ :text-indent -9999px
10
+ :margin-bottom 0.3em
11
+
12
+ body
13
+ :color = !black
14
+ :font normal 12px Verdana, Arial, sans-serif
15
+ :font-size 88%
16
+ :line-height 1.5
17
+ a
18
+ :text-decoration none
19
+ :color = !darkgrey
20
+ &:visited
21
+ :color = !darkgrey
22
+ &:hover, &:visited
23
+ :text-decoration underline
24
+ h2
25
+ :font-size 100%
26
+
27
+ ul
28
+ :padding 0
29
+ li
30
+ :list-style none
31
+ :line-height 1.2
32
+ :margin 0 0 5px 0
33
+ a
34
+ :text-decoration underline
35
+ &:hover
36
+ :text-decoration none
37
+ form
38
+ :background = !lightgrey
39
+ :padding 10px
40
+ :border-top 1px solid #ddd
41
+ :font-size 100%
42
+ p
43
+ :margin 0 0 5px 0
44
+ label
45
+ :font-size 88%
46
+ label.error
47
+ :background-color = !red
48
+ :padding 2px
49
+ :color #fff
50
+ input
51
+ :border 1px solid
52
+ :padding 2px
53
+ :width 300px
54
+ :border-color = #ddd
55
+ :font-size 100%
56
+ textarea
57
+ :border 1px solid
58
+ :border-color = #ddd
59
+ :width 500px
60
+ :padding 3px
61
+ :height 75px
62
+ :font normal 14px Verdana, Arial, sans-serif
63
+
64
+ #header
65
+ :height 60px
66
+ :width 100%
67
+ :border-bottom 1px dashed
68
+ :border-color = !lightgrey
69
+ #logo
70
+ :float left
71
+ :height 50px
72
+ h1
73
+ :font 300% arial, sans-serif
74
+ :padding 5px 0
75
+ :margin 0
76
+ a
77
+ :color = !blue
78
+ :text-decoration none
79
+ span
80
+ :font-size 16pt
81
+ :color = !darkgrey
82
+
83
+ #container
84
+ :width 800px
85
+ :margin 0 auto
86
+
87
+ #content
88
+ :width 575px
89
+ :float left
90
+ :border-right 1px dashed
91
+ :border-color = !lightgrey
92
+ :padding 10px 10px 0 0
93
+ h5
94
+ :font-size 110%
95
+ :background-color #ffd
96
+ :margin 1.2em 0 0.3em
97
+ :padding 3px
98
+ :border-bottom 1px dotted #aaa
99
+ .article, .page
100
+ h2
101
+ :color = !darkgrey
102
+ :font-family arial, sans-serif
103
+ :font-weight normal
104
+ :letter-spacing -1px
105
+ :font-size 28px
106
+ :margin 0 0 -9px 0
107
+ a
108
+ :text-decoration none
109
+ span
110
+ :color = !lightgrey
111
+ h3
112
+ :color #777
113
+ :font-weight normal
114
+ :margin 0 0 0 2px
115
+ :padding 0
116
+ :font-size 110%
117
+ :letter-spacing -0.5px
118
+ .meta
119
+ :font-size 8pt
120
+ :background = !lightgrey
121
+ :padding 5px
122
+ :border 1px solid #ddd
123
+ :margin 15px 0
124
+ span
125
+ :color = !darkgrey !important
126
+ :font-weight bold
127
+
128
+ .comment
129
+ :margin 15px 0
130
+ :padding 10px
131
+ :border 3px solid
132
+ :border-color = !lightgrey
133
+ h2
134
+ span
135
+ :font-size 88%
136
+ :margin-left 5px
137
+ :color #777
138
+
139
+ #sidebar
140
+ :float right
141
+ :width 200px
142
+ :font-size 88%
143
+ p
144
+ :margin-top -7px
145
+ a
146
+ :color = !blue
147
+
148
+ #footer
149
+ :width 100%
150
+ :height 100px
151
+ :float left
152
+ :margin-top 20px
153
+ :border-top 1px dashed
154
+ :border-color = !lightgrey
155
+ p
156
+ :margin-top 5px
157
+ #legal
158
+ :width 40%
159
+ :float left
160
+ #powered
161
+ :width 50%
162
+ :float right
163
+ :text-align right
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aerial
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.0
4
+ version: 0.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matt Sears
@@ -9,14 +9,14 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-10-15 00:00:00 -04:00
13
- default_executable:
12
+ date: 2009-10-21 00:00:00 -04:00
13
+ default_executable: aerial
14
14
  dependencies: []
15
15
 
16
16
  description: A simple, blogish software build with Sinatra, jQuery, and uses Git for data storage
17
17
  email: matt@mattsears.com
18
- executables: []
19
-
18
+ executables:
19
+ - aerial
20
20
  extensions: []
21
21
 
22
22
  extra_rdoc_files:
@@ -27,48 +27,88 @@ files:
27
27
  - README.md
28
28
  - Rakefile
29
29
  - VERSION
30
+ - aerial.gemspec
31
+ - articles/congratulations/congratulations-aerial-is-configured-correctly.article
32
+ - bin/aerial
33
+ - config/config.sample.ru
34
+ - config/config.sample.yml
35
+ - config/config.test.yml
30
36
  - config/config.yml
31
37
  - config/deploy.rb
38
+ - config/thin.sample.yml
39
+ - examples/articles/congratulations/congratulations-aerial-is-configured-correctly.article
40
+ - examples/public/javascripts/application.js
41
+ - examples/public/javascripts/jquery-1.3.1.min.js
42
+ - examples/public/javascripts/jquery.template.js
43
+ - examples/views/article.haml
44
+ - examples/views/articles.haml
45
+ - examples/views/comment.haml
46
+ - examples/views/home.haml
47
+ - examples/views/layout.haml
48
+ - examples/views/not_found.haml
49
+ - examples/views/post.haml
50
+ - examples/views/rss.haml
51
+ - examples/views/sidebar.haml
52
+ - examples/views/style.sass
53
+ - features/article.feature
54
+ - features/home.feature
55
+ - features/step_definitions/article_steps.rb
56
+ - features/step_definitions/home_steps.rb
57
+ - features/support/env.rb
58
+ - features/support/pages/article.rb
59
+ - features/support/pages/homepage.rb
60
+ - index.html
32
61
  - lib/aerial.rb
62
+ - lib/aerial/app.rb
33
63
  - lib/aerial/article.rb
34
64
  - lib/aerial/base.rb
35
65
  - lib/aerial/comment.rb
36
66
  - lib/aerial/config.rb
37
67
  - lib/aerial/content.rb
68
+ - lib/aerial/installer.rb
38
69
  - lib/aerial/vendor/akismetor.rb
39
70
  - lib/aerial/vendor/cache.rb
40
- - lib/features/article.feature
41
- - lib/features/home.feature
42
- - lib/features/step_definitions/article_steps.rb
43
- - lib/features/step_definitions/home_steps.rb
44
- - lib/features/support/env.rb
45
- - lib/features/support/pages/article.rb
46
- - lib/features/support/pages/homepage.rb
47
- - lib/spec/aerial_spec.rb
48
- - lib/spec/article_spec.rb
49
- - lib/spec/base_spec.rb
50
- - lib/spec/comment_spec.rb
51
- - lib/spec/config_spec.rb
52
- - lib/spec/fixtures/articles/sample-article/sample-article.article
53
- - lib/spec/fixtures/articles/test-article-one/test-article.article
54
- - lib/spec/fixtures/articles/test-article-three/test-article.article
55
- - lib/spec/fixtures/articles/test-article-two/comment-missing-fields.comment
56
- - lib/spec/fixtures/articles/test-article-two/test-article.article
57
- - lib/spec/fixtures/articles/test-article-two/test-comment.comment
58
- - lib/spec/fixtures/config.yml
59
- - lib/spec/fixtures/public/javascripts/application.js
60
- - lib/spec/fixtures/public/javascripts/jquery-1.3.1.min.js
61
- - lib/spec/fixtures/public/javascripts/jquery.template.js
62
- - lib/spec/fixtures/views/article.haml
63
- - lib/spec/fixtures/views/articles.haml
64
- - lib/spec/fixtures/views/comment.haml
65
- - lib/spec/fixtures/views/home.haml
66
- - lib/spec/fixtures/views/layout.haml
67
- - lib/spec/fixtures/views/post.haml
68
- - lib/spec/fixtures/views/rss.haml
69
- - lib/spec/fixtures/views/sidebar.haml
70
- - lib/spec/fixtures/views/style.sass
71
- - lib/spec/spec_helper.rb
71
+ - public/javascripts/application.js
72
+ - public/javascripts/jquery-1.3.1.min.js
73
+ - public/javascripts/jquery.template.js
74
+ - spec/aerial_spec.rb
75
+ - spec/app_spec.rb
76
+ - spec/article_spec.rb
77
+ - spec/base_spec.rb
78
+ - spec/comment_spec.rb
79
+ - spec/config_spec.rb
80
+ - spec/fixtures/articles/congratulations-aerial-is-configured-correctly/congratulations-aerial-is-configured-correctly.article
81
+ - spec/fixtures/articles/sample-article/sample-article.article
82
+ - spec/fixtures/articles/test-article-one/test-article.article
83
+ - spec/fixtures/articles/test-article-three/test-article.article
84
+ - spec/fixtures/articles/test-article-two/comment-missing-fields.comment
85
+ - spec/fixtures/articles/test-article-two/test-article.article
86
+ - spec/fixtures/articles/test-article-two/test-comment.comment
87
+ - spec/fixtures/config.yml
88
+ - spec/fixtures/public/javascripts/application.js
89
+ - spec/fixtures/public/javascripts/jquery-1.3.1.min.js
90
+ - spec/fixtures/public/javascripts/jquery.template.js
91
+ - spec/fixtures/views/article.haml
92
+ - spec/fixtures/views/articles.haml
93
+ - spec/fixtures/views/comment.haml
94
+ - spec/fixtures/views/home.haml
95
+ - spec/fixtures/views/layout.haml
96
+ - spec/fixtures/views/not_found.haml
97
+ - spec/fixtures/views/post.haml
98
+ - spec/fixtures/views/rss.haml
99
+ - spec/fixtures/views/sidebar.haml
100
+ - spec/fixtures/views/style.sass
101
+ - spec/spec_helper.rb
102
+ - views/article.haml
103
+ - views/articles.haml
104
+ - views/comment.haml
105
+ - views/home.haml
106
+ - views/layout.haml
107
+ - views/not_found.haml
108
+ - views/post.haml
109
+ - views/rss.haml
110
+ - views/sidebar.haml
111
+ - views/style.sass
72
112
  has_rdoc: true
73
113
  homepage: http://github.com/mattsears/aerial
74
114
  licenses: []
@@ -92,10 +132,16 @@ required_rubygems_version: !ruby/object:Gem::Requirement
92
132
  version:
93
133
  requirements: []
94
134
 
95
- rubyforge_project:
135
+ rubyforge_project: aerial
96
136
  rubygems_version: 1.3.5
97
137
  signing_key:
98
138
  specification_version: 3
99
139
  summary: A simple, blogish software build with Sinatra, jQuery, and uses Git for data storage
100
- test_files: []
101
-
140
+ test_files:
141
+ - spec/aerial_spec.rb
142
+ - spec/app_spec.rb
143
+ - spec/article_spec.rb
144
+ - spec/base_spec.rb
145
+ - spec/comment_spec.rb
146
+ - spec/config_spec.rb
147
+ - spec/spec_helper.rb