hitchens 0.0.1

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.
Files changed (96) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.rdoc +3 -0
  3. data/Rakefile +39 -0
  4. data/app/assets/javascripts/hitchens/application.js +9 -0
  5. data/app/assets/stylesheets/hitchens/application.css +7 -0
  6. data/app/assets/stylesheets/hitchens/coderay.css.scss +34 -0
  7. data/app/assets/stylesheets/hitchens/pagination.css.scss +6 -0
  8. data/app/controllers/hitchens/application_controller.rb +17 -0
  9. data/app/controllers/hitchens/posts_controller.rb +32 -0
  10. data/app/decorators/hitchens/application_decorator.rb +25 -0
  11. data/app/decorators/hitchens/post_decorator.rb +22 -0
  12. data/app/helpers/hitchens/application_helper.rb +4 -0
  13. data/app/models/hitchens/ability.rb +17 -0
  14. data/app/models/hitchens/post.rb +18 -0
  15. data/app/views/hitchens/posts/_form.html.haml +5 -0
  16. data/app/views/hitchens/posts/_post.html.haml +5 -0
  17. data/app/views/hitchens/posts/edit.html.haml +1 -0
  18. data/app/views/hitchens/posts/index.html.haml +7 -0
  19. data/app/views/hitchens/posts/index.rss.builder +18 -0
  20. data/app/views/hitchens/posts/new.html.haml +1 -0
  21. data/app/views/hitchens/posts/show.html.haml +1 -0
  22. data/app/views/layouts/hitchens/application.html.haml +10 -0
  23. data/config/initializers/simple_form.rb +93 -0
  24. data/config/locales/simple_form.en.yml +24 -0
  25. data/config/routes.rb +4 -0
  26. data/db/migrate/20111201212510_create_hitchens_posts.rb +11 -0
  27. data/lib/hitchens/engine.rb +5 -0
  28. data/lib/hitchens/version.rb +3 -0
  29. data/lib/hitchens.rb +34 -0
  30. data/lib/tasks/hitchens_tasks.rake +4 -0
  31. data/lib/templates/erb/scaffold/_form.html.erb +13 -0
  32. data/test/dummy/Rakefile +7 -0
  33. data/test/dummy/app/assets/javascripts/application.js +9 -0
  34. data/test/dummy/app/assets/stylesheets/application.css +7 -0
  35. data/test/dummy/app/controllers/application_controller.rb +3 -0
  36. data/test/dummy/app/helpers/application_helper.rb +2 -0
  37. data/test/dummy/app/models/user.rb +9 -0
  38. data/test/dummy/app/views/layouts/application.html.erb +22 -0
  39. data/test/dummy/config/application.rb +45 -0
  40. data/test/dummy/config/boot.rb +10 -0
  41. data/test/dummy/config/database.yml +28 -0
  42. data/test/dummy/config/environment.rb +5 -0
  43. data/test/dummy/config/environments/development.rb +30 -0
  44. data/test/dummy/config/environments/production.rb +60 -0
  45. data/test/dummy/config/environments/test.rb +39 -0
  46. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  47. data/test/dummy/config/initializers/devise.rb +209 -0
  48. data/test/dummy/config/initializers/inflections.rb +10 -0
  49. data/test/dummy/config/initializers/mime_types.rb +5 -0
  50. data/test/dummy/config/initializers/secret_token.rb +7 -0
  51. data/test/dummy/config/initializers/session_store.rb +8 -0
  52. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  53. data/test/dummy/config/locales/devise.en.yml +58 -0
  54. data/test/dummy/config/locales/en.yml +5 -0
  55. data/test/dummy/config/routes.rb +5 -0
  56. data/test/dummy/config.ru +4 -0
  57. data/test/dummy/db/development.sqlite3 +0 -0
  58. data/test/dummy/db/migrate/20111202001010_devise_create_users.rb +25 -0
  59. data/test/dummy/db/migrate/20111202003417_add_admin_to_users.rb +5 -0
  60. data/test/dummy/db/migrate/20111202023821_create_hitchens_posts.rb +11 -0
  61. data/test/dummy/db/schema.rb +43 -0
  62. data/test/dummy/db/test.sqlite3 +0 -0
  63. data/test/dummy/log/development.log +18853 -0
  64. data/test/dummy/log/test.log +0 -0
  65. data/test/dummy/public/404.html +26 -0
  66. data/test/dummy/public/422.html +26 -0
  67. data/test/dummy/public/500.html +26 -0
  68. data/test/dummy/public/favicon.ico +0 -0
  69. data/test/dummy/script/rails +6 -0
  70. data/test/dummy/spec/models/user_spec.rb +5 -0
  71. data/test/dummy/tmp/cache/assets/C1E/200/sprockets%2F3d344d935905630d41134fb51e119849 +0 -0
  72. data/test/dummy/tmp/cache/assets/CA8/B10/sprockets%2Fd31e4202073904ed51e4f3aa75148d79 +0 -0
  73. data/test/dummy/tmp/cache/assets/CCD/060/sprockets%2F7dd86c789291a96633962ed81f272f1f +0 -0
  74. data/test/dummy/tmp/cache/assets/CE6/E50/sprockets%2Ffe709a4d78a49cd80a434a99027404b8 +0 -0
  75. data/test/dummy/tmp/cache/assets/CFA/190/sprockets%2F81caafd20de19b068c5c14b514060906 +0 -0
  76. data/test/dummy/tmp/cache/assets/D04/8A0/sprockets%2F411cb82258bc23e6d4ba58278122b4fe +0 -0
  77. data/test/dummy/tmp/cache/assets/D0C/830/sprockets%2Fb5d74b7769bb13a1a3844d8386b3a04f +0 -0
  78. data/test/dummy/tmp/cache/assets/D12/940/sprockets%2F5efd50c82d402f87c1d37826fed07009 +0 -0
  79. data/test/dummy/tmp/cache/assets/D29/CB0/sprockets%2Fa2ab72eb0a4f976e45dd24207c151b05 +0 -0
  80. data/test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
  81. data/test/dummy/tmp/cache/assets/D40/0F0/sprockets%2Faf73134f805550e9ebd7a422bea59a77 +0 -0
  82. data/test/dummy/tmp/cache/assets/D48/CD0/sprockets%2Fbc8d07d3da016d76b744f35fd1b76797 +0 -0
  83. data/test/dummy/tmp/cache/assets/D52/1C0/sprockets%2Fdfac94984609e75ff28ccf1355f520d5 +0 -0
  84. data/test/dummy/tmp/cache/assets/D54/ED0/sprockets%2F71c9fa01091d432b131da3bb73faf3d4 +0 -0
  85. data/test/dummy/tmp/cache/assets/D74/DA0/sprockets%2Fa3677e4caf2ff11891e85a2fd37d624b +0 -0
  86. data/test/dummy/tmp/cache/assets/D83/650/sprockets%2F377ee3574e6b7a6961a870cd90e9afcf +0 -0
  87. data/test/dummy/tmp/cache/assets/D84/210/sprockets%2Fabd0103ccec2b428ac62c94e4c40b384 +0 -0
  88. data/test/dummy/tmp/cache/assets/DC9/0F0/sprockets%2F80fcaf8fc7c8b1cc04aef35313a84b65 +0 -0
  89. data/test/dummy/tmp/cache/assets/DD2/D70/sprockets%2Fbc1de009791757d84fc047cdcb87ceba +0 -0
  90. data/test/dummy/tmp/cache/assets/DEF/3C0/sprockets%2Fa6da5fcafbea0bd73346b47e21407cd6 +0 -0
  91. data/test/dummy/tmp/cache/assets/DF8/550/sprockets%2F9bb580e4aaccde7aa60e189a15f95a5a +0 -0
  92. data/test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
  93. data/test/hitchens_test.rb +7 -0
  94. data/test/integration/navigation_test.rb +10 -0
  95. data/test/test_helper.rb +10 -0
  96. metadata +340 -0
File without changes
@@ -0,0 +1,26 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The page you were looking for doesn't exist (404)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/404.html -->
21
+ <div class="dialog">
22
+ <h1>The page you were looking for doesn't exist.</h1>
23
+ <p>You may have mistyped the address or the page may have moved.</p>
24
+ </div>
25
+ </body>
26
+ </html>
@@ -0,0 +1,26 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The change you wanted was rejected (422)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/422.html -->
21
+ <div class="dialog">
22
+ <h1>The change you wanted was rejected.</h1>
23
+ <p>Maybe you tried to change something you didn't have access to.</p>
24
+ </div>
25
+ </body>
26
+ </html>
@@ -0,0 +1,26 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>We're sorry, but something went wrong (500)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/500.html -->
21
+ <div class="dialog">
22
+ <h1>We're sorry, but something went wrong.</h1>
23
+ <p>We've been notified about this issue and we'll take a look at it shortly.</p>
24
+ </div>
25
+ </body>
26
+ </html>
File without changes
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+ # This command will automatically be run when you run "rails" with Rails 3 gems installed from the root of your application.
3
+
4
+ APP_PATH = File.expand_path('../../config/application', __FILE__)
5
+ require File.expand_path('../../config/boot', __FILE__)
6
+ require 'rails/commands'
@@ -0,0 +1,5 @@
1
+ require 'spec_helper'
2
+
3
+ describe User do
4
+ pending "add some examples to (or delete) #{__FILE__}"
5
+ end
@@ -0,0 +1,7 @@
1
+ require 'test_helper'
2
+
3
+ class HitchensTest < ActiveSupport::TestCase
4
+ test "truth" do
5
+ assert_kind_of Module, Hitchens
6
+ end
7
+ end
@@ -0,0 +1,10 @@
1
+ require 'test_helper'
2
+
3
+ class NavigationTest < ActionDispatch::IntegrationTest
4
+ fixtures :all
5
+
6
+ # test "the truth" do
7
+ # assert true
8
+ # end
9
+ end
10
+
@@ -0,0 +1,10 @@
1
+ # Configure Rails Environment
2
+ ENV["RAILS_ENV"] = "test"
3
+
4
+ require File.expand_path("../dummy/config/environment.rb", __FILE__)
5
+ require "rails/test_help"
6
+
7
+ Rails.backtrace_cleaner.remove_silencers!
8
+
9
+ # Load support files
10
+ Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
metadata ADDED
@@ -0,0 +1,340 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: hitchens
3
+ version: !ruby/object:Gem::Version
4
+ prerelease:
5
+ version: 0.0.1
6
+ platform: ruby
7
+ authors:
8
+ - Ian C. Anderson
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+
13
+ date: 2011-12-06 00:00:00 -05:00
14
+ default_executable:
15
+ dependencies:
16
+ - !ruby/object:Gem::Dependency
17
+ name: rails
18
+ requirement: &id001 !ruby/object:Gem::Requirement
19
+ none: false
20
+ requirements:
21
+ - - ~>
22
+ - !ruby/object:Gem::Version
23
+ version: 3.1.3
24
+ type: :runtime
25
+ prerelease: false
26
+ version_requirements: *id001
27
+ - !ruby/object:Gem::Dependency
28
+ name: haml
29
+ requirement: &id002 !ruby/object:Gem::Requirement
30
+ none: false
31
+ requirements:
32
+ - - ~>
33
+ - !ruby/object:Gem::Version
34
+ version: 3.1.4
35
+ type: :runtime
36
+ prerelease: false
37
+ version_requirements: *id002
38
+ - !ruby/object:Gem::Dependency
39
+ name: simple_form
40
+ requirement: &id003 !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ~>
44
+ - !ruby/object:Gem::Version
45
+ version: 1.5.2
46
+ type: :runtime
47
+ prerelease: false
48
+ version_requirements: *id003
49
+ - !ruby/object:Gem::Dependency
50
+ name: draper
51
+ requirement: &id004 !ruby/object:Gem::Requirement
52
+ none: false
53
+ requirements:
54
+ - - ~>
55
+ - !ruby/object:Gem::Version
56
+ version: 0.9.5
57
+ type: :runtime
58
+ prerelease: false
59
+ version_requirements: *id004
60
+ - !ruby/object:Gem::Dependency
61
+ name: redcarpet
62
+ requirement: &id005 !ruby/object:Gem::Requirement
63
+ none: false
64
+ requirements:
65
+ - - ~>
66
+ - !ruby/object:Gem::Version
67
+ version: 2.0.0b5
68
+ type: :runtime
69
+ prerelease: false
70
+ version_requirements: *id005
71
+ - !ruby/object:Gem::Dependency
72
+ name: cancan
73
+ requirement: &id006 !ruby/object:Gem::Requirement
74
+ none: false
75
+ requirements:
76
+ - - ~>
77
+ - !ruby/object:Gem::Version
78
+ version: 1.6.7
79
+ type: :runtime
80
+ prerelease: false
81
+ version_requirements: *id006
82
+ - !ruby/object:Gem::Dependency
83
+ name: nokogiri
84
+ requirement: &id007 !ruby/object:Gem::Requirement
85
+ none: false
86
+ requirements:
87
+ - - ~>
88
+ - !ruby/object:Gem::Version
89
+ version: 1.5.0
90
+ type: :runtime
91
+ prerelease: false
92
+ version_requirements: *id007
93
+ - !ruby/object:Gem::Dependency
94
+ name: coderay
95
+ requirement: &id008 !ruby/object:Gem::Requirement
96
+ none: false
97
+ requirements:
98
+ - - ~>
99
+ - !ruby/object:Gem::Version
100
+ version: 1.0.4
101
+ type: :runtime
102
+ prerelease: false
103
+ version_requirements: *id008
104
+ - !ruby/object:Gem::Dependency
105
+ name: will_paginate
106
+ requirement: &id009 !ruby/object:Gem::Requirement
107
+ none: false
108
+ requirements:
109
+ - - ~>
110
+ - !ruby/object:Gem::Version
111
+ version: 3.0.2
112
+ type: :runtime
113
+ prerelease: false
114
+ version_requirements: *id009
115
+ - !ruby/object:Gem::Dependency
116
+ name: sqlite3
117
+ requirement: &id010 !ruby/object:Gem::Requirement
118
+ none: false
119
+ requirements:
120
+ - - ">="
121
+ - !ruby/object:Gem::Version
122
+ version: "0"
123
+ type: :development
124
+ prerelease: false
125
+ version_requirements: *id010
126
+ - !ruby/object:Gem::Dependency
127
+ name: rspec-rails
128
+ requirement: &id011 !ruby/object:Gem::Requirement
129
+ none: false
130
+ requirements:
131
+ - - ~>
132
+ - !ruby/object:Gem::Version
133
+ version: 2.7.0
134
+ type: :development
135
+ prerelease: false
136
+ version_requirements: *id011
137
+ description: Mountable blogging engine with a focus on maintainability and good clean OO design.
138
+ email:
139
+ - ian@iancanderson.net
140
+ executables: []
141
+
142
+ extensions: []
143
+
144
+ extra_rdoc_files: []
145
+
146
+ files:
147
+ - app/assets/javascripts/hitchens/application.js
148
+ - app/assets/stylesheets/hitchens/application.css
149
+ - app/assets/stylesheets/hitchens/coderay.css.scss
150
+ - app/assets/stylesheets/hitchens/pagination.css.scss
151
+ - app/controllers/hitchens/application_controller.rb
152
+ - app/controllers/hitchens/posts_controller.rb
153
+ - app/decorators/hitchens/application_decorator.rb
154
+ - app/decorators/hitchens/post_decorator.rb
155
+ - app/helpers/hitchens/application_helper.rb
156
+ - app/models/hitchens/ability.rb
157
+ - app/models/hitchens/post.rb
158
+ - app/views/hitchens/posts/_form.html.haml
159
+ - app/views/hitchens/posts/_post.html.haml
160
+ - app/views/hitchens/posts/edit.html.haml
161
+ - app/views/hitchens/posts/index.html.haml
162
+ - app/views/hitchens/posts/index.rss.builder
163
+ - app/views/hitchens/posts/new.html.haml
164
+ - app/views/hitchens/posts/show.html.haml
165
+ - app/views/layouts/hitchens/application.html.haml
166
+ - config/initializers/simple_form.rb
167
+ - config/locales/simple_form.en.yml
168
+ - config/routes.rb
169
+ - db/migrate/20111201212510_create_hitchens_posts.rb
170
+ - lib/hitchens/engine.rb
171
+ - lib/hitchens/version.rb
172
+ - lib/hitchens.rb
173
+ - lib/tasks/hitchens_tasks.rake
174
+ - lib/templates/erb/scaffold/_form.html.erb
175
+ - MIT-LICENSE
176
+ - Rakefile
177
+ - README.rdoc
178
+ - test/dummy/app/assets/javascripts/application.js
179
+ - test/dummy/app/assets/stylesheets/application.css
180
+ - test/dummy/app/controllers/application_controller.rb
181
+ - test/dummy/app/helpers/application_helper.rb
182
+ - test/dummy/app/models/user.rb
183
+ - test/dummy/app/views/layouts/application.html.erb
184
+ - test/dummy/config/application.rb
185
+ - test/dummy/config/boot.rb
186
+ - test/dummy/config/database.yml
187
+ - test/dummy/config/environment.rb
188
+ - test/dummy/config/environments/development.rb
189
+ - test/dummy/config/environments/production.rb
190
+ - test/dummy/config/environments/test.rb
191
+ - test/dummy/config/initializers/backtrace_silencers.rb
192
+ - test/dummy/config/initializers/devise.rb
193
+ - test/dummy/config/initializers/inflections.rb
194
+ - test/dummy/config/initializers/mime_types.rb
195
+ - test/dummy/config/initializers/secret_token.rb
196
+ - test/dummy/config/initializers/session_store.rb
197
+ - test/dummy/config/initializers/wrap_parameters.rb
198
+ - test/dummy/config/locales/devise.en.yml
199
+ - test/dummy/config/locales/en.yml
200
+ - test/dummy/config/routes.rb
201
+ - test/dummy/config.ru
202
+ - test/dummy/db/development.sqlite3
203
+ - test/dummy/db/migrate/20111202001010_devise_create_users.rb
204
+ - test/dummy/db/migrate/20111202003417_add_admin_to_users.rb
205
+ - test/dummy/db/migrate/20111202023821_create_hitchens_posts.rb
206
+ - test/dummy/db/schema.rb
207
+ - test/dummy/db/test.sqlite3
208
+ - test/dummy/log/development.log
209
+ - test/dummy/log/test.log
210
+ - test/dummy/public/404.html
211
+ - test/dummy/public/422.html
212
+ - test/dummy/public/500.html
213
+ - test/dummy/public/favicon.ico
214
+ - test/dummy/Rakefile
215
+ - test/dummy/script/rails
216
+ - test/dummy/spec/models/user_spec.rb
217
+ - test/dummy/tmp/cache/assets/C1E/200/sprockets%2F3d344d935905630d41134fb51e119849
218
+ - test/dummy/tmp/cache/assets/CA8/B10/sprockets%2Fd31e4202073904ed51e4f3aa75148d79
219
+ - test/dummy/tmp/cache/assets/CCD/060/sprockets%2F7dd86c789291a96633962ed81f272f1f
220
+ - test/dummy/tmp/cache/assets/CE6/E50/sprockets%2Ffe709a4d78a49cd80a434a99027404b8
221
+ - test/dummy/tmp/cache/assets/CFA/190/sprockets%2F81caafd20de19b068c5c14b514060906
222
+ - test/dummy/tmp/cache/assets/D04/8A0/sprockets%2F411cb82258bc23e6d4ba58278122b4fe
223
+ - test/dummy/tmp/cache/assets/D0C/830/sprockets%2Fb5d74b7769bb13a1a3844d8386b3a04f
224
+ - test/dummy/tmp/cache/assets/D12/940/sprockets%2F5efd50c82d402f87c1d37826fed07009
225
+ - test/dummy/tmp/cache/assets/D29/CB0/sprockets%2Fa2ab72eb0a4f976e45dd24207c151b05
226
+ - test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705
227
+ - test/dummy/tmp/cache/assets/D40/0F0/sprockets%2Faf73134f805550e9ebd7a422bea59a77
228
+ - test/dummy/tmp/cache/assets/D48/CD0/sprockets%2Fbc8d07d3da016d76b744f35fd1b76797
229
+ - test/dummy/tmp/cache/assets/D52/1C0/sprockets%2Fdfac94984609e75ff28ccf1355f520d5
230
+ - test/dummy/tmp/cache/assets/D54/ED0/sprockets%2F71c9fa01091d432b131da3bb73faf3d4
231
+ - test/dummy/tmp/cache/assets/D74/DA0/sprockets%2Fa3677e4caf2ff11891e85a2fd37d624b
232
+ - test/dummy/tmp/cache/assets/D83/650/sprockets%2F377ee3574e6b7a6961a870cd90e9afcf
233
+ - test/dummy/tmp/cache/assets/D84/210/sprockets%2Fabd0103ccec2b428ac62c94e4c40b384
234
+ - test/dummy/tmp/cache/assets/DC9/0F0/sprockets%2F80fcaf8fc7c8b1cc04aef35313a84b65
235
+ - test/dummy/tmp/cache/assets/DD2/D70/sprockets%2Fbc1de009791757d84fc047cdcb87ceba
236
+ - test/dummy/tmp/cache/assets/DEF/3C0/sprockets%2Fa6da5fcafbea0bd73346b47e21407cd6
237
+ - test/dummy/tmp/cache/assets/DF8/550/sprockets%2F9bb580e4aaccde7aa60e189a15f95a5a
238
+ - test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af
239
+ - test/hitchens_test.rb
240
+ - test/integration/navigation_test.rb
241
+ - test/test_helper.rb
242
+ has_rdoc: true
243
+ homepage: http://www.iancanderson.net
244
+ licenses: []
245
+
246
+ post_install_message:
247
+ rdoc_options: []
248
+
249
+ require_paths:
250
+ - lib
251
+ required_ruby_version: !ruby/object:Gem::Requirement
252
+ none: false
253
+ requirements:
254
+ - - ">="
255
+ - !ruby/object:Gem::Version
256
+ hash: 641795991198673446
257
+ segments:
258
+ - 0
259
+ version: "0"
260
+ required_rubygems_version: !ruby/object:Gem::Requirement
261
+ none: false
262
+ requirements:
263
+ - - ">="
264
+ - !ruby/object:Gem::Version
265
+ hash: 641795991198673446
266
+ segments:
267
+ - 0
268
+ version: "0"
269
+ requirements: []
270
+
271
+ rubyforge_project:
272
+ rubygems_version: 1.6.2
273
+ signing_key:
274
+ specification_version: 3
275
+ summary: Blog engine for Rails 3.1+
276
+ test_files:
277
+ - test/dummy/app/assets/javascripts/application.js
278
+ - test/dummy/app/assets/stylesheets/application.css
279
+ - test/dummy/app/controllers/application_controller.rb
280
+ - test/dummy/app/helpers/application_helper.rb
281
+ - test/dummy/app/models/user.rb
282
+ - test/dummy/app/views/layouts/application.html.erb
283
+ - test/dummy/config/application.rb
284
+ - test/dummy/config/boot.rb
285
+ - test/dummy/config/database.yml
286
+ - test/dummy/config/environment.rb
287
+ - test/dummy/config/environments/development.rb
288
+ - test/dummy/config/environments/production.rb
289
+ - test/dummy/config/environments/test.rb
290
+ - test/dummy/config/initializers/backtrace_silencers.rb
291
+ - test/dummy/config/initializers/devise.rb
292
+ - test/dummy/config/initializers/inflections.rb
293
+ - test/dummy/config/initializers/mime_types.rb
294
+ - test/dummy/config/initializers/secret_token.rb
295
+ - test/dummy/config/initializers/session_store.rb
296
+ - test/dummy/config/initializers/wrap_parameters.rb
297
+ - test/dummy/config/locales/devise.en.yml
298
+ - test/dummy/config/locales/en.yml
299
+ - test/dummy/config/routes.rb
300
+ - test/dummy/config.ru
301
+ - test/dummy/db/development.sqlite3
302
+ - test/dummy/db/migrate/20111202001010_devise_create_users.rb
303
+ - test/dummy/db/migrate/20111202003417_add_admin_to_users.rb
304
+ - test/dummy/db/migrate/20111202023821_create_hitchens_posts.rb
305
+ - test/dummy/db/schema.rb
306
+ - test/dummy/db/test.sqlite3
307
+ - test/dummy/log/development.log
308
+ - test/dummy/log/test.log
309
+ - test/dummy/public/404.html
310
+ - test/dummy/public/422.html
311
+ - test/dummy/public/500.html
312
+ - test/dummy/public/favicon.ico
313
+ - test/dummy/Rakefile
314
+ - test/dummy/script/rails
315
+ - test/dummy/spec/models/user_spec.rb
316
+ - test/dummy/tmp/cache/assets/C1E/200/sprockets%2F3d344d935905630d41134fb51e119849
317
+ - test/dummy/tmp/cache/assets/CA8/B10/sprockets%2Fd31e4202073904ed51e4f3aa75148d79
318
+ - test/dummy/tmp/cache/assets/CCD/060/sprockets%2F7dd86c789291a96633962ed81f272f1f
319
+ - test/dummy/tmp/cache/assets/CE6/E50/sprockets%2Ffe709a4d78a49cd80a434a99027404b8
320
+ - test/dummy/tmp/cache/assets/CFA/190/sprockets%2F81caafd20de19b068c5c14b514060906
321
+ - test/dummy/tmp/cache/assets/D04/8A0/sprockets%2F411cb82258bc23e6d4ba58278122b4fe
322
+ - test/dummy/tmp/cache/assets/D0C/830/sprockets%2Fb5d74b7769bb13a1a3844d8386b3a04f
323
+ - test/dummy/tmp/cache/assets/D12/940/sprockets%2F5efd50c82d402f87c1d37826fed07009
324
+ - test/dummy/tmp/cache/assets/D29/CB0/sprockets%2Fa2ab72eb0a4f976e45dd24207c151b05
325
+ - test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705
326
+ - test/dummy/tmp/cache/assets/D40/0F0/sprockets%2Faf73134f805550e9ebd7a422bea59a77
327
+ - test/dummy/tmp/cache/assets/D48/CD0/sprockets%2Fbc8d07d3da016d76b744f35fd1b76797
328
+ - test/dummy/tmp/cache/assets/D52/1C0/sprockets%2Fdfac94984609e75ff28ccf1355f520d5
329
+ - test/dummy/tmp/cache/assets/D54/ED0/sprockets%2F71c9fa01091d432b131da3bb73faf3d4
330
+ - test/dummy/tmp/cache/assets/D74/DA0/sprockets%2Fa3677e4caf2ff11891e85a2fd37d624b
331
+ - test/dummy/tmp/cache/assets/D83/650/sprockets%2F377ee3574e6b7a6961a870cd90e9afcf
332
+ - test/dummy/tmp/cache/assets/D84/210/sprockets%2Fabd0103ccec2b428ac62c94e4c40b384
333
+ - test/dummy/tmp/cache/assets/DC9/0F0/sprockets%2F80fcaf8fc7c8b1cc04aef35313a84b65
334
+ - test/dummy/tmp/cache/assets/DD2/D70/sprockets%2Fbc1de009791757d84fc047cdcb87ceba
335
+ - test/dummy/tmp/cache/assets/DEF/3C0/sprockets%2Fa6da5fcafbea0bd73346b47e21407cd6
336
+ - test/dummy/tmp/cache/assets/DF8/550/sprockets%2F9bb580e4aaccde7aa60e189a15f95a5a
337
+ - test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af
338
+ - test/hitchens_test.rb
339
+ - test/integration/navigation_test.rb
340
+ - test/test_helper.rb