maktoub 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 (74) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.rdoc +68 -0
  3. data/Rakefile +39 -0
  4. data/app/assets/javascripts/maktoub/application.js +9 -0
  5. data/app/assets/javascripts/maktoub/archives.js +2 -0
  6. data/app/assets/stylesheets/maktoub/application.css +7 -0
  7. data/app/assets/stylesheets/maktoub/archives.css +4 -0
  8. data/app/controllers/maktoub/application_controller.rb +4 -0
  9. data/app/controllers/maktoub/archives_controller.rb +13 -0
  10. data/app/helpers/maktoub/application_helper.rb +4 -0
  11. data/app/helpers/maktoub/archives_helper.rb +4 -0
  12. data/app/mailers/maktoub/newsletter_mailer.rb +32 -0
  13. data/app/views/layouts/maktoub/application.html.erb +14 -0
  14. data/app/views/layouts/maktoub/newsletter_mailer.erb +474 -0
  15. data/app/views/maktoub/newsletters/readme.erb +3 -0
  16. data/config/routes.rb +8 -0
  17. data/lib/maktoub.rb +36 -0
  18. data/lib/maktoub/engine.rb +6 -0
  19. data/lib/maktoub/version.rb +3 -0
  20. data/lib/tasks/maktoub_tasks.rake +26 -0
  21. data/test/dummy/Rakefile +7 -0
  22. data/test/dummy/app/assets/images/logo.jpg +0 -0
  23. data/test/dummy/app/assets/javascripts/application.js +9 -0
  24. data/test/dummy/app/assets/stylesheets/application.css +7 -0
  25. data/test/dummy/app/controllers/application_controller.rb +3 -0
  26. data/test/dummy/app/helpers/application_helper.rb +2 -0
  27. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  28. data/test/dummy/app/views/maktoub/newsletters/test_template.erb +0 -0
  29. data/test/dummy/config.ru +4 -0
  30. data/test/dummy/config/application.rb +45 -0
  31. data/test/dummy/config/boot.rb +10 -0
  32. data/test/dummy/config/database.yml +25 -0
  33. data/test/dummy/config/environment.rb +5 -0
  34. data/test/dummy/config/environments/development.rb +30 -0
  35. data/test/dummy/config/environments/production.rb +60 -0
  36. data/test/dummy/config/environments/test.rb +39 -0
  37. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  38. data/test/dummy/config/initializers/inflections.rb +10 -0
  39. data/test/dummy/config/initializers/maktoub.rb +18 -0
  40. data/test/dummy/config/initializers/mime_types.rb +5 -0
  41. data/test/dummy/config/initializers/secret_token.rb +7 -0
  42. data/test/dummy/config/initializers/session_store.rb +8 -0
  43. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  44. data/test/dummy/config/locales/en.yml +5 -0
  45. data/test/dummy/config/routes.rb +5 -0
  46. data/test/dummy/db/development.sqlite3 +0 -0
  47. data/test/dummy/db/test.sqlite3 +0 -0
  48. data/test/dummy/log/development.log +6132 -0
  49. data/test/dummy/log/test.log +453 -0
  50. data/test/dummy/public/404.html +26 -0
  51. data/test/dummy/public/422.html +26 -0
  52. data/test/dummy/public/500.html +26 -0
  53. data/test/dummy/public/favicon.ico +0 -0
  54. data/test/dummy/script/rails +6 -0
  55. data/test/dummy/tmp/cache/assets/CA2/C20/sprockets%2F5603f1da541a5e3c72d26611478813da +0 -0
  56. data/test/dummy/tmp/cache/assets/CB4/BE0/sprockets%2F57f7e5c53278ac52062992433f317acc +0 -0
  57. data/test/dummy/tmp/cache/assets/CBC/F80/sprockets%2F95bdffc2824328543384db8ea7890153 +0 -0
  58. data/test/dummy/tmp/cache/assets/CCF/9C0/sprockets%2Fae24de6a552b3d6057517681a1a363e0 +0 -0
  59. data/test/dummy/tmp/cache/assets/CDD/630/sprockets%2F75757e115102f4fcc9ed52a2249bf082 +0 -0
  60. data/test/dummy/tmp/cache/assets/D34/130/sprockets%2F9a5c11d810e2e1f87ea6452113cc7e4c +0 -0
  61. data/test/dummy/tmp/cache/assets/D68/E80/sprockets%2F2c93d36471b04c04bb72a9aeeaf496a8 +0 -0
  62. data/test/dummy/tmp/cache/assets/D6E/8A0/sprockets%2Fa833bda5303fa2c89da36ec6b469618d +0 -0
  63. data/test/dummy/tmp/cache/assets/D70/6F0/sprockets%2Ff37da951add08a3d2866a4767b5afc43 +0 -0
  64. data/test/dummy/tmp/cache/assets/D74/710/sprockets%2F4865a147f154cadc0b49ebe873be7a85 +0 -0
  65. data/test/dummy/tmp/cache/assets/D76/B40/sprockets%2F8aea19137c7b683ef195fa3bf2a9704f +0 -0
  66. data/test/dummy/tmp/cache/assets/D7D/170/sprockets%2F15742d263cfefba79b76652f6e94ac6d +0 -0
  67. data/test/dummy/tmp/cache/assets/DC6/1E0/sprockets%2F5fad4aa8ef2c006cc0dd5233e98dd922 +0 -0
  68. data/test/functional/maktoub/archives_controller_test.rb +24 -0
  69. data/test/functional/maktoub/newsletter_mailer_test.rb +31 -0
  70. data/test/integration/navigation_test.rb +10 -0
  71. data/test/maktoub_test.rb +45 -0
  72. data/test/test_helper.rb +11 -0
  73. data/test/unit/helpers/maktoub/archives_helper_test.rb +6 -0
  74. metadata +220 -0
@@ -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,24 @@
1
+ require 'test_helper'
2
+
3
+ module Maktoub
4
+ class ArchivesControllerTest < ActionController::TestCase
5
+ test "should get show" do
6
+ get :show, :use_route => 'maktoub'
7
+ assert_response :success
8
+ assert_template 'newsletters/readme'
9
+ assert_not_nil assigns(:subject)
10
+ assert_not_nil assigns(:archive)
11
+ end
12
+
13
+ test "should render the passed template" do
14
+ get :show, :newsletter => 'test_template', :use_route => 'maktoub'
15
+ assert_template 'newsletters/test_template'
16
+ end
17
+
18
+ test "should use the newsletter_mailer layout" do
19
+ get :show, :use_route => 'maktoub'
20
+ assert_template "newsletter_mailer"
21
+ end
22
+ end
23
+ end
24
+
@@ -0,0 +1,31 @@
1
+ require 'test_helper'
2
+
3
+ module Maktoub
4
+ class NewsletterMailerTest < ActionMailer::TestCase
5
+ setup do
6
+ @mailer = NewsletterMailer.publish('test_template', email: 'zaid@example.com', name: 'zaid')
7
+
8
+ end
9
+ test "should have the right subject recipient and sender" do
10
+ assert_equal "Test Template", @mailer.subject
11
+ assert_equal ['maktoub@example.com'], @mailer.from # defined in dummy/config/initializers/maktoub.rb
12
+ assert_equal ['zaid@example.com'], @mailer.to
13
+ end
14
+
15
+ test "should be multipart" do
16
+ assert_equal true, @mailer.multipart?
17
+ assert_equal false, @mailer.html_part.blank?
18
+ assert_equal false, @mailer.text_part.blank?
19
+ end
20
+
21
+ test "html_part" do
22
+ body = @mailer.html_part.body.to_s
23
+
24
+ assert_match /View it in your browser/, body # change to link assertion
25
+ assert_match /Copyright/, body
26
+ assert_match /All rights reserved/, body
27
+ assert_match /update subscription preferences/, body # change to link assertion
28
+ end
29
+ end
30
+ end
31
+
@@ -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,45 @@
1
+ require 'test_helper'
2
+ require 'ostruct'
3
+
4
+ class MaktoubTest < ActiveSupport::TestCase
5
+ test "subscribers" do
6
+ users = [OpenStruct.new({:name => 'hello', :email => 'hello@example.com'})]
7
+ Maktoub.subscribers_extractor do
8
+ users
9
+ end
10
+ assert_equal 1, Maktoub.subscribers.length
11
+ users << OpenStruct.new({name: "bitch", email: "bitch@example.com"})
12
+ assert_equal 2, Maktoub.subscribers.length
13
+ end
14
+
15
+ test "email_field default value" do
16
+ Maktoub.email_field = nil
17
+ assert_equal :email, Maktoub.email_field
18
+ end
19
+
20
+ test "name_field default value" do
21
+ Maktoub.name_field = nil
22
+ assert_equal :name, Maktoub.name_field
23
+ end
24
+
25
+ test "custom email_field" do
26
+ Maktoub.email_field = :address
27
+ assert_equal :address, Maktoub.email_field
28
+ end
29
+
30
+ test "custom name_field" do
31
+ Maktoub.name_field = :first_name
32
+ assert_equal :first_name, Maktoub.name_field
33
+ end
34
+
35
+ test "configuration fields" do
36
+ assert_respond_to Maktoub, :from
37
+ assert_respond_to Maktoub, :twitter_url
38
+ assert_respond_to Maktoub, :facebook_url
39
+ assert_respond_to Maktoub, :subscription_preferences_url
40
+ assert_respond_to Maktoub, :logo
41
+ assert_respond_to Maktoub, :home_domain
42
+ assert_respond_to Maktoub, :app_name
43
+ end
44
+ end
45
+
@@ -0,0 +1,11 @@
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 }
11
+
@@ -0,0 +1,6 @@
1
+ require 'test_helper'
2
+
3
+ module Maktoub
4
+ class ArchivesHelperTest < ActionView::TestCase
5
+ end
6
+ end
metadata ADDED
@@ -0,0 +1,220 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: maktoub
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Zaid Zawaideh
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2011-11-07 00:00:00.000000000Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: rails
16
+ requirement: &70202738387660 !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ~>
20
+ - !ruby/object:Gem::Version
21
+ version: 3.1.1
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: *70202738387660
25
+ - !ruby/object:Gem::Dependency
26
+ name: premailer
27
+ requirement: &70202738387000 !ruby/object:Gem::Requirement
28
+ none: false
29
+ requirements:
30
+ - - ! '>='
31
+ - !ruby/object:Gem::Version
32
+ version: '0'
33
+ type: :runtime
34
+ prerelease: false
35
+ version_requirements: *70202738387000
36
+ - !ruby/object:Gem::Dependency
37
+ name: nokogiri
38
+ requirement: &70202738385840 !ruby/object:Gem::Requirement
39
+ none: false
40
+ requirements:
41
+ - - ! '>='
42
+ - !ruby/object:Gem::Version
43
+ version: '0'
44
+ type: :runtime
45
+ prerelease: false
46
+ version_requirements: *70202738385840
47
+ - !ruby/object:Gem::Dependency
48
+ name: sqlite3
49
+ requirement: &70202738385060 !ruby/object:Gem::Requirement
50
+ none: false
51
+ requirements:
52
+ - - ! '>='
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ type: :development
56
+ prerelease: false
57
+ version_requirements: *70202738385060
58
+ description: A simple newsletter engine for rails.
59
+ email:
60
+ executables: []
61
+ extensions: []
62
+ extra_rdoc_files: []
63
+ files:
64
+ - app/assets/javascripts/maktoub/application.js
65
+ - app/assets/javascripts/maktoub/archives.js
66
+ - app/assets/stylesheets/maktoub/application.css
67
+ - app/assets/stylesheets/maktoub/archives.css
68
+ - app/controllers/maktoub/application_controller.rb
69
+ - app/controllers/maktoub/archives_controller.rb
70
+ - app/helpers/maktoub/application_helper.rb
71
+ - app/helpers/maktoub/archives_helper.rb
72
+ - app/mailers/maktoub/newsletter_mailer.rb
73
+ - app/views/layouts/maktoub/application.html.erb
74
+ - app/views/layouts/maktoub/newsletter_mailer.erb
75
+ - app/views/maktoub/newsletters/readme.erb
76
+ - config/routes.rb
77
+ - lib/maktoub/engine.rb
78
+ - lib/maktoub/version.rb
79
+ - lib/maktoub.rb
80
+ - lib/tasks/maktoub_tasks.rake
81
+ - MIT-LICENSE
82
+ - Rakefile
83
+ - README.rdoc
84
+ - test/dummy/app/assets/images/logo.jpg
85
+ - test/dummy/app/assets/javascripts/application.js
86
+ - test/dummy/app/assets/stylesheets/application.css
87
+ - test/dummy/app/controllers/application_controller.rb
88
+ - test/dummy/app/helpers/application_helper.rb
89
+ - test/dummy/app/views/layouts/application.html.erb
90
+ - test/dummy/app/views/maktoub/newsletters/test_template.erb
91
+ - test/dummy/config/application.rb
92
+ - test/dummy/config/boot.rb
93
+ - test/dummy/config/database.yml
94
+ - test/dummy/config/environment.rb
95
+ - test/dummy/config/environments/development.rb
96
+ - test/dummy/config/environments/production.rb
97
+ - test/dummy/config/environments/test.rb
98
+ - test/dummy/config/initializers/backtrace_silencers.rb
99
+ - test/dummy/config/initializers/inflections.rb
100
+ - test/dummy/config/initializers/maktoub.rb
101
+ - test/dummy/config/initializers/mime_types.rb
102
+ - test/dummy/config/initializers/secret_token.rb
103
+ - test/dummy/config/initializers/session_store.rb
104
+ - test/dummy/config/initializers/wrap_parameters.rb
105
+ - test/dummy/config/locales/en.yml
106
+ - test/dummy/config/routes.rb
107
+ - test/dummy/config.ru
108
+ - test/dummy/db/development.sqlite3
109
+ - test/dummy/db/test.sqlite3
110
+ - test/dummy/log/development.log
111
+ - test/dummy/log/test.log
112
+ - test/dummy/public/404.html
113
+ - test/dummy/public/422.html
114
+ - test/dummy/public/500.html
115
+ - test/dummy/public/favicon.ico
116
+ - test/dummy/Rakefile
117
+ - test/dummy/script/rails
118
+ - test/dummy/tmp/cache/assets/CA2/C20/sprockets%2F5603f1da541a5e3c72d26611478813da
119
+ - test/dummy/tmp/cache/assets/CB4/BE0/sprockets%2F57f7e5c53278ac52062992433f317acc
120
+ - test/dummy/tmp/cache/assets/CBC/F80/sprockets%2F95bdffc2824328543384db8ea7890153
121
+ - test/dummy/tmp/cache/assets/CCF/9C0/sprockets%2Fae24de6a552b3d6057517681a1a363e0
122
+ - test/dummy/tmp/cache/assets/CDD/630/sprockets%2F75757e115102f4fcc9ed52a2249bf082
123
+ - test/dummy/tmp/cache/assets/D34/130/sprockets%2F9a5c11d810e2e1f87ea6452113cc7e4c
124
+ - test/dummy/tmp/cache/assets/D68/E80/sprockets%2F2c93d36471b04c04bb72a9aeeaf496a8
125
+ - test/dummy/tmp/cache/assets/D6E/8A0/sprockets%2Fa833bda5303fa2c89da36ec6b469618d
126
+ - test/dummy/tmp/cache/assets/D70/6F0/sprockets%2Ff37da951add08a3d2866a4767b5afc43
127
+ - test/dummy/tmp/cache/assets/D74/710/sprockets%2F4865a147f154cadc0b49ebe873be7a85
128
+ - test/dummy/tmp/cache/assets/D76/B40/sprockets%2F8aea19137c7b683ef195fa3bf2a9704f
129
+ - test/dummy/tmp/cache/assets/D7D/170/sprockets%2F15742d263cfefba79b76652f6e94ac6d
130
+ - test/dummy/tmp/cache/assets/DC6/1E0/sprockets%2F5fad4aa8ef2c006cc0dd5233e98dd922
131
+ - test/functional/maktoub/archives_controller_test.rb
132
+ - test/functional/maktoub/newsletter_mailer_test.rb
133
+ - test/integration/navigation_test.rb
134
+ - test/maktoub_test.rb
135
+ - test/test_helper.rb
136
+ - test/unit/helpers/maktoub/archives_helper_test.rb
137
+ homepage: http://sandglaz.com
138
+ licenses: []
139
+ post_install_message:
140
+ rdoc_options: []
141
+ require_paths:
142
+ - lib
143
+ required_ruby_version: !ruby/object:Gem::Requirement
144
+ none: false
145
+ requirements:
146
+ - - ! '>='
147
+ - !ruby/object:Gem::Version
148
+ version: '0'
149
+ segments:
150
+ - 0
151
+ hash: -2595926435095873200
152
+ required_rubygems_version: !ruby/object:Gem::Requirement
153
+ none: false
154
+ requirements:
155
+ - - ! '>='
156
+ - !ruby/object:Gem::Version
157
+ version: '0'
158
+ segments:
159
+ - 0
160
+ hash: -2595926435095873200
161
+ requirements: []
162
+ rubyforge_project:
163
+ rubygems_version: 1.8.10
164
+ signing_key:
165
+ specification_version: 3
166
+ summary: A simple newsletter engine for rails.
167
+ test_files:
168
+ - test/dummy/app/assets/images/logo.jpg
169
+ - test/dummy/app/assets/javascripts/application.js
170
+ - test/dummy/app/assets/stylesheets/application.css
171
+ - test/dummy/app/controllers/application_controller.rb
172
+ - test/dummy/app/helpers/application_helper.rb
173
+ - test/dummy/app/views/layouts/application.html.erb
174
+ - test/dummy/app/views/maktoub/newsletters/test_template.erb
175
+ - test/dummy/config/application.rb
176
+ - test/dummy/config/boot.rb
177
+ - test/dummy/config/database.yml
178
+ - test/dummy/config/environment.rb
179
+ - test/dummy/config/environments/development.rb
180
+ - test/dummy/config/environments/production.rb
181
+ - test/dummy/config/environments/test.rb
182
+ - test/dummy/config/initializers/backtrace_silencers.rb
183
+ - test/dummy/config/initializers/inflections.rb
184
+ - test/dummy/config/initializers/maktoub.rb
185
+ - test/dummy/config/initializers/mime_types.rb
186
+ - test/dummy/config/initializers/secret_token.rb
187
+ - test/dummy/config/initializers/session_store.rb
188
+ - test/dummy/config/initializers/wrap_parameters.rb
189
+ - test/dummy/config/locales/en.yml
190
+ - test/dummy/config/routes.rb
191
+ - test/dummy/config.ru
192
+ - test/dummy/db/development.sqlite3
193
+ - test/dummy/db/test.sqlite3
194
+ - test/dummy/log/development.log
195
+ - test/dummy/log/test.log
196
+ - test/dummy/public/404.html
197
+ - test/dummy/public/422.html
198
+ - test/dummy/public/500.html
199
+ - test/dummy/public/favicon.ico
200
+ - test/dummy/Rakefile
201
+ - test/dummy/script/rails
202
+ - test/dummy/tmp/cache/assets/CA2/C20/sprockets%2F5603f1da541a5e3c72d26611478813da
203
+ - test/dummy/tmp/cache/assets/CB4/BE0/sprockets%2F57f7e5c53278ac52062992433f317acc
204
+ - test/dummy/tmp/cache/assets/CBC/F80/sprockets%2F95bdffc2824328543384db8ea7890153
205
+ - test/dummy/tmp/cache/assets/CCF/9C0/sprockets%2Fae24de6a552b3d6057517681a1a363e0
206
+ - test/dummy/tmp/cache/assets/CDD/630/sprockets%2F75757e115102f4fcc9ed52a2249bf082
207
+ - test/dummy/tmp/cache/assets/D34/130/sprockets%2F9a5c11d810e2e1f87ea6452113cc7e4c
208
+ - test/dummy/tmp/cache/assets/D68/E80/sprockets%2F2c93d36471b04c04bb72a9aeeaf496a8
209
+ - test/dummy/tmp/cache/assets/D6E/8A0/sprockets%2Fa833bda5303fa2c89da36ec6b469618d
210
+ - test/dummy/tmp/cache/assets/D70/6F0/sprockets%2Ff37da951add08a3d2866a4767b5afc43
211
+ - test/dummy/tmp/cache/assets/D74/710/sprockets%2F4865a147f154cadc0b49ebe873be7a85
212
+ - test/dummy/tmp/cache/assets/D76/B40/sprockets%2F8aea19137c7b683ef195fa3bf2a9704f
213
+ - test/dummy/tmp/cache/assets/D7D/170/sprockets%2F15742d263cfefba79b76652f6e94ac6d
214
+ - test/dummy/tmp/cache/assets/DC6/1E0/sprockets%2F5fad4aa8ef2c006cc0dd5233e98dd922
215
+ - test/functional/maktoub/archives_controller_test.rb
216
+ - test/functional/maktoub/newsletter_mailer_test.rb
217
+ - test/integration/navigation_test.rb
218
+ - test/maktoub_test.rb
219
+ - test/test_helper.rb
220
+ - test/unit/helpers/maktoub/archives_helper_test.rb