asyncomni 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (80) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.rdoc +38 -0
  3. data/Rakefile +29 -0
  4. data/app/assets/javascripts/omniture.js +10 -0
  5. data/app/assets/javascripts/s_code.js +277 -0
  6. data/app/controllers/omniture_controller.rb +6 -0
  7. data/app/helpers/omniture_helper.rb +39 -0
  8. data/app/models/omniture.rb +28 -0
  9. data/app/views/omniture/_omniture.haml +17 -0
  10. data/config/initializers/omniture.rb +7 -0
  11. data/config/omniture.yml +18 -0
  12. data/config/routes.rb +3 -0
  13. data/lib/asyncomni.rb +7 -0
  14. data/lib/asyncomni/version.rb +3 -0
  15. data/lib/generators/asyncomni/install/install_generator.rb +14 -0
  16. data/lib/tasks/asyncomni_tasks.rake +4 -0
  17. data/spec/controllers/omniture_controller_spec.rb +13 -0
  18. data/spec/dummy/README.rdoc +261 -0
  19. data/spec/dummy/Rakefile +7 -0
  20. data/spec/dummy/app/assets/javascripts/application.js +15 -0
  21. data/spec/dummy/app/assets/stylesheets/application.css +13 -0
  22. data/spec/dummy/app/controllers/application_controller.rb +3 -0
  23. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  24. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  25. data/spec/dummy/config.ru +4 -0
  26. data/spec/dummy/config/application.rb +56 -0
  27. data/spec/dummy/config/boot.rb +10 -0
  28. data/spec/dummy/config/database.yml +25 -0
  29. data/spec/dummy/config/environment.rb +5 -0
  30. data/spec/dummy/config/environments/development.rb +37 -0
  31. data/spec/dummy/config/environments/production.rb +67 -0
  32. data/spec/dummy/config/environments/test.rb +37 -0
  33. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  34. data/spec/dummy/config/initializers/inflections.rb +15 -0
  35. data/spec/dummy/config/initializers/mime_types.rb +5 -0
  36. data/spec/dummy/config/initializers/secret_token.rb +7 -0
  37. data/spec/dummy/config/initializers/session_store.rb +8 -0
  38. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  39. data/spec/dummy/config/locales/en.yml +5 -0
  40. data/spec/dummy/config/omniture.yml +18 -0
  41. data/spec/dummy/config/routes.rb +58 -0
  42. data/spec/dummy/db/test.sqlite3 +0 -0
  43. data/spec/dummy/dummy/README.rdoc +261 -0
  44. data/spec/dummy/dummy/Rakefile +7 -0
  45. data/spec/dummy/dummy/app/assets/javascripts/application.js +15 -0
  46. data/spec/dummy/dummy/app/assets/stylesheets/application.css +13 -0
  47. data/spec/dummy/dummy/app/controllers/application_controller.rb +3 -0
  48. data/spec/dummy/dummy/app/helpers/application_helper.rb +2 -0
  49. data/spec/dummy/dummy/app/views/layouts/application.html.erb +14 -0
  50. data/spec/dummy/dummy/config.ru +4 -0
  51. data/spec/dummy/dummy/config/application.rb +56 -0
  52. data/spec/dummy/dummy/config/boot.rb +10 -0
  53. data/spec/dummy/dummy/config/database.yml +25 -0
  54. data/spec/dummy/dummy/config/environment.rb +5 -0
  55. data/spec/dummy/dummy/config/environments/development.rb +37 -0
  56. data/spec/dummy/dummy/config/environments/production.rb +67 -0
  57. data/spec/dummy/dummy/config/environments/test.rb +37 -0
  58. data/spec/dummy/dummy/config/initializers/backtrace_silencers.rb +7 -0
  59. data/spec/dummy/dummy/config/initializers/inflections.rb +15 -0
  60. data/spec/dummy/dummy/config/initializers/mime_types.rb +5 -0
  61. data/spec/dummy/dummy/config/initializers/secret_token.rb +7 -0
  62. data/spec/dummy/dummy/config/initializers/session_store.rb +8 -0
  63. data/spec/dummy/dummy/config/initializers/wrap_parameters.rb +14 -0
  64. data/spec/dummy/dummy/config/locales/en.yml +5 -0
  65. data/spec/dummy/dummy/config/routes.rb +58 -0
  66. data/spec/dummy/dummy/public/404.html +26 -0
  67. data/spec/dummy/dummy/public/422.html +26 -0
  68. data/spec/dummy/dummy/public/500.html +25 -0
  69. data/spec/dummy/dummy/public/favicon.ico +0 -0
  70. data/spec/dummy/dummy/script/rails +6 -0
  71. data/spec/dummy/log/development.log +0 -0
  72. data/spec/dummy/log/test.log +28 -0
  73. data/spec/dummy/public/404.html +26 -0
  74. data/spec/dummy/public/422.html +26 -0
  75. data/spec/dummy/public/500.html +25 -0
  76. data/spec/dummy/public/favicon.ico +0 -0
  77. data/spec/dummy/script/rails +6 -0
  78. data/spec/helpers/omniture_helper_spec.rb +34 -0
  79. data/spec/spec_helper.rb +15 -0
  80. metadata +252 -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,25 @@
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
+ </div>
24
+ </body>
25
+ </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'
File without changes
@@ -0,0 +1,28 @@
1
+  (3.2ms) begin transaction
2
+  (0.1ms) rollback transaction
3
+  (77.2ms) begin transaction
4
+  (0.2ms) rollback transaction
5
+  (0.1ms) begin transaction
6
+  (0.1ms) rollback transaction
7
+  (0.7ms) begin transaction
8
+ Processing by OmnitureController#index as HTML
9
+ Rendered /home/gourav/rubyapps/asyncomni/app/views/omniture/_omniture.haml (0.7ms)
10
+ Completed 200 OK in 98ms (Views: 97.6ms | ActiveRecord: 0.0ms)
11
+  (0.1ms) rollback transaction
12
+  (14.0ms) begin transaction
13
+  (0.1ms) rollback transaction
14
+  (0.1ms) begin transaction
15
+  (0.1ms) rollback transaction
16
+  (0.0ms) begin transaction
17
+  (0.1ms) rollback transaction
18
+  (0.1ms) begin transaction
19
+  (0.1ms) rollback transaction
20
+  (0.0ms) begin transaction
21
+  (0.1ms) rollback transaction
22
+  (0.1ms) begin transaction
23
+  (0.1ms) rollback transaction
24
+  (0.0ms) begin transaction
25
+ Processing by OmnitureController#index as HTML
26
+ Rendered /home/gourav/rubyapps/asyncomni/app/views/omniture/_omniture.haml (0.8ms)
27
+ Completed 200 OK in 47ms (Views: 45.9ms | ActiveRecord: 0.0ms)
28
+  (0.1ms) rollback transaction
@@ -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,25 @@
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
+ </div>
24
+ </body>
25
+ </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,34 @@
1
+ require 'spec_helper'
2
+
3
+ describe OmnitureHelper do
4
+ it "should return application name" do
5
+ helper.application_name.should == 'demo-app'
6
+ end
7
+
8
+ it "should return user id" do
9
+ helper.should_receive(:current_user).and_return(stub(:id => id = 5))
10
+ helper.user_id.should == id
11
+ end
12
+
13
+ it "should return omniture query params for page name" do
14
+ helper.should_receive(:page_name).and_return(home = "Home")
15
+ helper.omniture_query_param(:page_name).should == "page_name=#{home}"
16
+ end
17
+
18
+ it "should return omniture url" do
19
+ helper.should_receive(:user_id).and_return(id = 5)
20
+ helper.should_receive(:page_name).and_return(home = "Home")
21
+ helper.omniture_url.should == "#{omniture_index_url}?page_name=#{home}&user_id=#{id}&application_name=demo-app"
22
+ end
23
+
24
+ it "should return page name for users index page" do
25
+ helper.should_receive(:controller_name).exactly(1).times.and_return('users')
26
+ helper.should_receive(:action_name).exactly(1).times.and_return('index')
27
+
28
+ helper.page_name.should == "demo-app_Users_Index"
29
+ end
30
+
31
+ it "should have omniture formatted time" do
32
+ helper.omniture_formatted_time.should == Time.now.strftime('%m/%d/%Y %I:%M:%S %p')
33
+ end
34
+ end
@@ -0,0 +1,15 @@
1
+ # Configure Rails Envinronment
2
+ ENV["RAILS_ENV"] = "test"
3
+
4
+ require File.expand_path("../dummy/config/environment", __FILE__)
5
+ require 'rspec/rails'
6
+
7
+ ENGINE_RAILS_ROOT=File.join(File.dirname(__FILE__), '../')
8
+
9
+ # Requires supporting ruby files with custom matchers and macros, etc,
10
+ # in spec/support/ and its subdirectories.
11
+ Dir[File.join(ENGINE_RAILS_ROOT, "spec/support/**/*.rb")].each {|f| require f }
12
+
13
+ RSpec.configure do |config|
14
+ config.use_transactional_fixtures = true
15
+ end
metadata ADDED
@@ -0,0 +1,252 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: asyncomni
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Gourav Tiwari
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2012-04-17 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: rails
16
+ requirement: !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ~>
20
+ - !ruby/object:Gem::Version
21
+ version: 3.2.2
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ~>
28
+ - !ruby/object:Gem::Version
29
+ version: 3.2.2
30
+ - !ruby/object:Gem::Dependency
31
+ name: haml
32
+ requirement: !ruby/object:Gem::Requirement
33
+ none: false
34
+ requirements:
35
+ - - ~>
36
+ - !ruby/object:Gem::Version
37
+ version: 3.1.4
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: 3.1.4
46
+ - !ruby/object:Gem::Dependency
47
+ name: sqlite3
48
+ requirement: !ruby/object:Gem::Requirement
49
+ none: false
50
+ requirements:
51
+ - - ! '>='
52
+ - !ruby/object:Gem::Version
53
+ version: '0'
54
+ type: :development
55
+ prerelease: false
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ none: false
58
+ requirements:
59
+ - - ! '>='
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ - !ruby/object:Gem::Dependency
63
+ name: rspec-rails
64
+ requirement: !ruby/object:Gem::Requirement
65
+ none: false
66
+ requirements:
67
+ - - ~>
68
+ - !ruby/object:Gem::Version
69
+ version: 2.9.0
70
+ type: :development
71
+ prerelease: false
72
+ version_requirements: !ruby/object:Gem::Requirement
73
+ none: false
74
+ requirements:
75
+ - - ~>
76
+ - !ruby/object:Gem::Version
77
+ version: 2.9.0
78
+ description: Asyncomni is an engine, which can be used with a rails application for
79
+ omniture integration.
80
+ email:
81
+ - gouravtiwari21@gmail.com
82
+ executables: []
83
+ extensions: []
84
+ extra_rdoc_files: []
85
+ files:
86
+ - app/views/omniture/_omniture.haml
87
+ - app/helpers/omniture_helper.rb
88
+ - app/controllers/omniture_controller.rb
89
+ - app/models/omniture.rb
90
+ - app/assets/javascripts/s_code.js
91
+ - app/assets/javascripts/omniture.js
92
+ - config/routes.rb
93
+ - config/omniture.yml
94
+ - config/initializers/omniture.rb
95
+ - lib/generators/asyncomni/install/install_generator.rb
96
+ - lib/asyncomni.rb
97
+ - lib/asyncomni/version.rb
98
+ - lib/tasks/asyncomni_tasks.rake
99
+ - MIT-LICENSE
100
+ - Rakefile
101
+ - README.rdoc
102
+ - spec/helpers/omniture_helper_spec.rb
103
+ - spec/dummy/app/views/layouts/application.html.erb
104
+ - spec/dummy/app/helpers/application_helper.rb
105
+ - spec/dummy/app/controllers/application_controller.rb
106
+ - spec/dummy/app/assets/stylesheets/application.css
107
+ - spec/dummy/app/assets/javascripts/application.js
108
+ - spec/dummy/config/routes.rb
109
+ - spec/dummy/config/locales/en.yml
110
+ - spec/dummy/config/omniture.yml
111
+ - spec/dummy/config/database.yml
112
+ - spec/dummy/config/environment.rb
113
+ - spec/dummy/config/application.rb
114
+ - spec/dummy/config/boot.rb
115
+ - spec/dummy/config/initializers/wrap_parameters.rb
116
+ - spec/dummy/config/initializers/inflections.rb
117
+ - spec/dummy/config/initializers/mime_types.rb
118
+ - spec/dummy/config/initializers/session_store.rb
119
+ - spec/dummy/config/initializers/backtrace_silencers.rb
120
+ - spec/dummy/config/initializers/secret_token.rb
121
+ - spec/dummy/config/environments/development.rb
122
+ - spec/dummy/config/environments/production.rb
123
+ - spec/dummy/config/environments/test.rb
124
+ - spec/dummy/dummy/app/views/layouts/application.html.erb
125
+ - spec/dummy/dummy/app/helpers/application_helper.rb
126
+ - spec/dummy/dummy/app/controllers/application_controller.rb
127
+ - spec/dummy/dummy/app/assets/stylesheets/application.css
128
+ - spec/dummy/dummy/app/assets/javascripts/application.js
129
+ - spec/dummy/dummy/config/routes.rb
130
+ - spec/dummy/dummy/config/locales/en.yml
131
+ - spec/dummy/dummy/config/database.yml
132
+ - spec/dummy/dummy/config/environment.rb
133
+ - spec/dummy/dummy/config/application.rb
134
+ - spec/dummy/dummy/config/boot.rb
135
+ - spec/dummy/dummy/config/initializers/wrap_parameters.rb
136
+ - spec/dummy/dummy/config/initializers/inflections.rb
137
+ - spec/dummy/dummy/config/initializers/mime_types.rb
138
+ - spec/dummy/dummy/config/initializers/session_store.rb
139
+ - spec/dummy/dummy/config/initializers/backtrace_silencers.rb
140
+ - spec/dummy/dummy/config/initializers/secret_token.rb
141
+ - spec/dummy/dummy/config/environments/development.rb
142
+ - spec/dummy/dummy/config/environments/production.rb
143
+ - spec/dummy/dummy/config/environments/test.rb
144
+ - spec/dummy/dummy/config.ru
145
+ - spec/dummy/dummy/script/rails
146
+ - spec/dummy/dummy/public/422.html
147
+ - spec/dummy/dummy/public/favicon.ico
148
+ - spec/dummy/dummy/public/404.html
149
+ - spec/dummy/dummy/public/500.html
150
+ - spec/dummy/dummy/Rakefile
151
+ - spec/dummy/dummy/README.rdoc
152
+ - spec/dummy/config.ru
153
+ - spec/dummy/script/rails
154
+ - spec/dummy/public/422.html
155
+ - spec/dummy/public/favicon.ico
156
+ - spec/dummy/public/404.html
157
+ - spec/dummy/public/500.html
158
+ - spec/dummy/Rakefile
159
+ - spec/dummy/db/test.sqlite3
160
+ - spec/dummy/README.rdoc
161
+ - spec/dummy/log/test.log
162
+ - spec/dummy/log/development.log
163
+ - spec/controllers/omniture_controller_spec.rb
164
+ - spec/spec_helper.rb
165
+ homepage: https://github.com/gouravtiwari/asyncomni
166
+ licenses: []
167
+ post_install_message:
168
+ rdoc_options: []
169
+ require_paths:
170
+ - lib
171
+ required_ruby_version: !ruby/object:Gem::Requirement
172
+ none: false
173
+ requirements:
174
+ - - ! '>='
175
+ - !ruby/object:Gem::Version
176
+ version: '0'
177
+ required_rubygems_version: !ruby/object:Gem::Requirement
178
+ none: false
179
+ requirements:
180
+ - - ! '>='
181
+ - !ruby/object:Gem::Version
182
+ version: '0'
183
+ requirements: []
184
+ rubyforge_project:
185
+ rubygems_version: 1.8.21
186
+ signing_key:
187
+ specification_version: 3
188
+ summary: Makes omniture calls from rails 3.1 easier and asynchronous without ajax-calls
189
+ test_files:
190
+ - spec/helpers/omniture_helper_spec.rb
191
+ - spec/dummy/app/views/layouts/application.html.erb
192
+ - spec/dummy/app/helpers/application_helper.rb
193
+ - spec/dummy/app/controllers/application_controller.rb
194
+ - spec/dummy/app/assets/stylesheets/application.css
195
+ - spec/dummy/app/assets/javascripts/application.js
196
+ - spec/dummy/config/routes.rb
197
+ - spec/dummy/config/locales/en.yml
198
+ - spec/dummy/config/omniture.yml
199
+ - spec/dummy/config/database.yml
200
+ - spec/dummy/config/environment.rb
201
+ - spec/dummy/config/application.rb
202
+ - spec/dummy/config/boot.rb
203
+ - spec/dummy/config/initializers/wrap_parameters.rb
204
+ - spec/dummy/config/initializers/inflections.rb
205
+ - spec/dummy/config/initializers/mime_types.rb
206
+ - spec/dummy/config/initializers/session_store.rb
207
+ - spec/dummy/config/initializers/backtrace_silencers.rb
208
+ - spec/dummy/config/initializers/secret_token.rb
209
+ - spec/dummy/config/environments/development.rb
210
+ - spec/dummy/config/environments/production.rb
211
+ - spec/dummy/config/environments/test.rb
212
+ - spec/dummy/dummy/app/views/layouts/application.html.erb
213
+ - spec/dummy/dummy/app/helpers/application_helper.rb
214
+ - spec/dummy/dummy/app/controllers/application_controller.rb
215
+ - spec/dummy/dummy/app/assets/stylesheets/application.css
216
+ - spec/dummy/dummy/app/assets/javascripts/application.js
217
+ - spec/dummy/dummy/config/routes.rb
218
+ - spec/dummy/dummy/config/locales/en.yml
219
+ - spec/dummy/dummy/config/database.yml
220
+ - spec/dummy/dummy/config/environment.rb
221
+ - spec/dummy/dummy/config/application.rb
222
+ - spec/dummy/dummy/config/boot.rb
223
+ - spec/dummy/dummy/config/initializers/wrap_parameters.rb
224
+ - spec/dummy/dummy/config/initializers/inflections.rb
225
+ - spec/dummy/dummy/config/initializers/mime_types.rb
226
+ - spec/dummy/dummy/config/initializers/session_store.rb
227
+ - spec/dummy/dummy/config/initializers/backtrace_silencers.rb
228
+ - spec/dummy/dummy/config/initializers/secret_token.rb
229
+ - spec/dummy/dummy/config/environments/development.rb
230
+ - spec/dummy/dummy/config/environments/production.rb
231
+ - spec/dummy/dummy/config/environments/test.rb
232
+ - spec/dummy/dummy/config.ru
233
+ - spec/dummy/dummy/script/rails
234
+ - spec/dummy/dummy/public/422.html
235
+ - spec/dummy/dummy/public/favicon.ico
236
+ - spec/dummy/dummy/public/404.html
237
+ - spec/dummy/dummy/public/500.html
238
+ - spec/dummy/dummy/Rakefile
239
+ - spec/dummy/dummy/README.rdoc
240
+ - spec/dummy/config.ru
241
+ - spec/dummy/script/rails
242
+ - spec/dummy/public/422.html
243
+ - spec/dummy/public/favicon.ico
244
+ - spec/dummy/public/404.html
245
+ - spec/dummy/public/500.html
246
+ - spec/dummy/Rakefile
247
+ - spec/dummy/db/test.sqlite3
248
+ - spec/dummy/README.rdoc
249
+ - spec/dummy/log/test.log
250
+ - spec/dummy/log/development.log
251
+ - spec/controllers/omniture_controller_spec.rb
252
+ - spec/spec_helper.rb