analyze 0.0.1 → 0.0.2

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 (86) hide show
  1. data/{LICENSE.txt → MIT-LICENSE} +2 -4
  2. data/README.rdoc +3 -0
  3. data/Rakefile +40 -1
  4. data/app/assets/javascripts/analyze/index.js +15 -0
  5. data/app/assets/javascripts/analyze/tracker.js +13 -0
  6. data/app/assets/stylesheets/analyze/application.css +13 -0
  7. data/app/controllers/analyze/application_controller.rb +4 -0
  8. data/app/controllers/analyze/user_visits_controller.rb +10 -0
  9. data/app/helpers/analyze/application_helper.rb +4 -0
  10. data/app/models/analyze/user_visit.rb +15 -0
  11. data/app/views/layouts/analyze/application.html.erb +14 -0
  12. data/config/routes.rb +3 -0
  13. data/db/migrate/20130401222410_create_analyze_user_visits.rb +12 -0
  14. data/lib/analyze.rb +2 -2
  15. data/lib/analyze/engine.rb +5 -0
  16. data/lib/analyze/tracker.rb +19 -0
  17. data/lib/analyze/version.rb +1 -1
  18. data/lib/tasks/analyze_tasks.rake +4 -0
  19. data/test/analyze_test.rb +7 -0
  20. data/test/dummy/README.rdoc +261 -0
  21. data/test/dummy/Rakefile +7 -0
  22. data/test/dummy/app/assets/javascripts/application.js +16 -0
  23. data/test/dummy/app/assets/javascripts/home.js +4 -0
  24. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  25. data/test/dummy/app/assets/stylesheets/home.css +4 -0
  26. data/test/dummy/app/controllers/application_controller.rb +6 -0
  27. data/test/dummy/app/controllers/home_controller.rb +4 -0
  28. data/test/dummy/app/helpers/application_helper.rb +2 -0
  29. data/test/dummy/app/helpers/home_helper.rb +2 -0
  30. data/test/dummy/app/views/home/index.html.erb +2 -0
  31. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  32. data/test/dummy/config.ru +4 -0
  33. data/test/dummy/config/application.rb +59 -0
  34. data/test/dummy/config/boot.rb +10 -0
  35. data/test/dummy/config/database.yml +25 -0
  36. data/test/dummy/config/environment.rb +5 -0
  37. data/test/dummy/config/environments/development.rb +37 -0
  38. data/test/dummy/config/environments/production.rb +67 -0
  39. data/test/dummy/config/environments/test.rb +37 -0
  40. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  41. data/test/dummy/config/initializers/inflections.rb +15 -0
  42. data/test/dummy/config/initializers/mime_types.rb +5 -0
  43. data/test/dummy/config/initializers/secret_token.rb +7 -0
  44. data/test/dummy/config/initializers/session_store.rb +8 -0
  45. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  46. data/test/dummy/config/locales/en.yml +5 -0
  47. data/test/dummy/config/routes.rb +6 -0
  48. data/test/dummy/db/development.sqlite3 +0 -0
  49. data/test/dummy/db/migrate/20130401223200_create_analyze_user_visits.analyze.rb +13 -0
  50. data/test/dummy/db/schema.rb +25 -0
  51. data/test/dummy/log/development.log +1447 -0
  52. data/test/dummy/public/404.html +26 -0
  53. data/test/dummy/public/422.html +26 -0
  54. data/test/dummy/public/500.html +25 -0
  55. data/test/dummy/public/favicon.ico +0 -0
  56. data/test/dummy/script/rails +6 -0
  57. data/test/dummy/test/functional/home_controller_test.rb +9 -0
  58. data/test/dummy/test/unit/helpers/home_helper_test.rb +4 -0
  59. data/test/dummy/tmp/cache/assets/C81/D40/sprockets%2Fbd73939fb5313416525d259b2e1a4639 +0 -0
  60. data/test/dummy/tmp/cache/assets/CD7/0B0/sprockets%2F18b0b345fcb68ffba96846350060433a +0 -0
  61. data/test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
  62. data/test/dummy/tmp/cache/assets/CDA/2E0/sprockets%2F57cf8ca064b9a62db745b467219702a0 +0 -0
  63. data/test/dummy/tmp/cache/assets/CDF/870/sprockets%2Fb878faf942403e313a5b103e5d80488e +0 -0
  64. data/test/dummy/tmp/cache/assets/CF9/7C0/sprockets%2F40fc2f3d2a468a00e463f1d313cb1683 +0 -0
  65. data/test/dummy/tmp/cache/assets/D05/D40/sprockets%2F1c9faaf28d05409b88ad3113374d613c +0 -0
  66. data/test/dummy/tmp/cache/assets/D0A/350/sprockets%2F6ed6c68d13ab2246d5844b3bd27224f4 +0 -0
  67. data/test/dummy/tmp/cache/assets/D15/3F0/sprockets%2F39872498b093360df5f0580acacdb57d +0 -0
  68. data/test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
  69. data/test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
  70. data/test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
  71. data/test/dummy/tmp/cache/assets/D78/C50/sprockets%2F60a6ed9381d575bd401fe8e862dae83d +0 -0
  72. data/test/dummy/tmp/cache/assets/D98/8B0/sprockets%2Fedbef6e0d0a4742346cf479f2c522eb0 +0 -0
  73. data/test/dummy/tmp/cache/assets/DC1/AC0/sprockets%2Fa804445bea4e80dacecfbfd4a2316681 +0 -0
  74. data/test/dummy/tmp/cache/assets/DD3/970/sprockets%2F5ada8dbbe84ceb3be960e33931965af5 +0 -0
  75. data/test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
  76. data/test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
  77. data/test/dummy/tmp/pids/server.pid +1 -0
  78. data/test/fixtures/analyze/user_visits.yml +13 -0
  79. data/test/integration/navigation_test.rb +10 -0
  80. data/test/test_helper.rb +15 -0
  81. data/test/unit/analyze/user_visit_test.rb +9 -0
  82. metadata +183 -15
  83. data/.gitignore +0 -17
  84. data/Gemfile +0 -4
  85. data/README.md +0 -29
  86. data/analyze.gemspec +0 -19
@@ -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,9 @@
1
+ require 'test_helper'
2
+
3
+ class HomeControllerTest < ActionController::TestCase
4
+ test "should get index" do
5
+ get :index
6
+ assert_response :success
7
+ end
8
+
9
+ end
@@ -0,0 +1,4 @@
1
+ require 'test_helper'
2
+
3
+ class HomeHelperTest < ActionView::TestCase
4
+ end
@@ -0,0 +1 @@
1
+ 19717
@@ -0,0 +1,13 @@
1
+ # Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/Fixtures.html
2
+
3
+ one:
4
+ user_id: 1
5
+ referrer_url: MyText
6
+ url: MyText
7
+ params: MyText
8
+
9
+ two:
10
+ user_id: 1
11
+ referrer_url: MyText
12
+ url: MyText
13
+ params: MyText
@@ -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,15 @@
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
+
12
+ # Load fixtures from the engine
13
+ if ActiveSupport::TestCase.method_defined?(:fixture_path=)
14
+ ActiveSupport::TestCase.fixture_path = File.expand_path("../fixtures", __FILE__)
15
+ end
@@ -0,0 +1,9 @@
1
+ require 'test_helper'
2
+
3
+ module Analyze
4
+ class UserVisitTest < ActiveSupport::TestCase
5
+ # test "the truth" do
6
+ # assert true
7
+ # end
8
+ end
9
+ end
metadata CHANGED
@@ -1,33 +1,137 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: analyze
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
8
- - smsohan
8
+ - SM Sohan
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
  date: 2013-04-01 00:00:00.000000000 Z
13
- dependencies: []
14
- description: A Rails engine that helps collecting dead-simple analytics data from
15
- the server side as well as in the client side
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.13
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.13
30
+ - !ruby/object:Gem::Dependency
31
+ name: sqlite3
32
+ requirement: !ruby/object:Gem::Requirement
33
+ none: false
34
+ requirements:
35
+ - - ! '>='
36
+ - !ruby/object:Gem::Version
37
+ version: '0'
38
+ type: :development
39
+ prerelease: false
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ! '>='
44
+ - !ruby/object:Gem::Version
45
+ version: '0'
46
+ description: A dead-simple analytics library for Ruby on Rails
16
47
  email:
17
48
  - sohan39@gmail.com
18
49
  executables: []
19
50
  extensions: []
20
51
  extra_rdoc_files: []
21
52
  files:
22
- - .gitignore
23
- - Gemfile
24
- - LICENSE.txt
25
- - README.md
26
- - Rakefile
27
- - analyze.gemspec
28
- - lib/analyze.rb
53
+ - app/assets/javascripts/analyze/index.js
54
+ - app/assets/javascripts/analyze/tracker.js
55
+ - app/assets/stylesheets/analyze/application.css
56
+ - app/controllers/analyze/application_controller.rb
57
+ - app/controllers/analyze/user_visits_controller.rb
58
+ - app/helpers/analyze/application_helper.rb
59
+ - app/models/analyze/user_visit.rb
60
+ - app/views/layouts/analyze/application.html.erb
61
+ - config/routes.rb
62
+ - db/migrate/20130401222410_create_analyze_user_visits.rb
63
+ - lib/analyze/engine.rb
64
+ - lib/analyze/tracker.rb
29
65
  - lib/analyze/version.rb
30
- homepage: ''
66
+ - lib/analyze.rb
67
+ - lib/tasks/analyze_tasks.rake
68
+ - MIT-LICENSE
69
+ - Rakefile
70
+ - README.rdoc
71
+ - test/analyze_test.rb
72
+ - test/dummy/app/assets/javascripts/application.js
73
+ - test/dummy/app/assets/javascripts/home.js
74
+ - test/dummy/app/assets/stylesheets/application.css
75
+ - test/dummy/app/assets/stylesheets/home.css
76
+ - test/dummy/app/controllers/application_controller.rb
77
+ - test/dummy/app/controllers/home_controller.rb
78
+ - test/dummy/app/helpers/application_helper.rb
79
+ - test/dummy/app/helpers/home_helper.rb
80
+ - test/dummy/app/views/home/index.html.erb
81
+ - test/dummy/app/views/layouts/application.html.erb
82
+ - test/dummy/config/application.rb
83
+ - test/dummy/config/boot.rb
84
+ - test/dummy/config/database.yml
85
+ - test/dummy/config/environment.rb
86
+ - test/dummy/config/environments/development.rb
87
+ - test/dummy/config/environments/production.rb
88
+ - test/dummy/config/environments/test.rb
89
+ - test/dummy/config/initializers/backtrace_silencers.rb
90
+ - test/dummy/config/initializers/inflections.rb
91
+ - test/dummy/config/initializers/mime_types.rb
92
+ - test/dummy/config/initializers/secret_token.rb
93
+ - test/dummy/config/initializers/session_store.rb
94
+ - test/dummy/config/initializers/wrap_parameters.rb
95
+ - test/dummy/config/locales/en.yml
96
+ - test/dummy/config/routes.rb
97
+ - test/dummy/config.ru
98
+ - test/dummy/db/development.sqlite3
99
+ - test/dummy/db/migrate/20130401223200_create_analyze_user_visits.analyze.rb
100
+ - test/dummy/db/schema.rb
101
+ - test/dummy/log/development.log
102
+ - test/dummy/public/404.html
103
+ - test/dummy/public/422.html
104
+ - test/dummy/public/500.html
105
+ - test/dummy/public/favicon.ico
106
+ - test/dummy/Rakefile
107
+ - test/dummy/README.rdoc
108
+ - test/dummy/script/rails
109
+ - test/dummy/test/functional/home_controller_test.rb
110
+ - test/dummy/test/unit/helpers/home_helper_test.rb
111
+ - test/dummy/tmp/cache/assets/C81/D40/sprockets%2Fbd73939fb5313416525d259b2e1a4639
112
+ - test/dummy/tmp/cache/assets/CD7/0B0/sprockets%2F18b0b345fcb68ffba96846350060433a
113
+ - test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953
114
+ - test/dummy/tmp/cache/assets/CDA/2E0/sprockets%2F57cf8ca064b9a62db745b467219702a0
115
+ - test/dummy/tmp/cache/assets/CDF/870/sprockets%2Fb878faf942403e313a5b103e5d80488e
116
+ - test/dummy/tmp/cache/assets/CF9/7C0/sprockets%2F40fc2f3d2a468a00e463f1d313cb1683
117
+ - test/dummy/tmp/cache/assets/D05/D40/sprockets%2F1c9faaf28d05409b88ad3113374d613c
118
+ - test/dummy/tmp/cache/assets/D0A/350/sprockets%2F6ed6c68d13ab2246d5844b3bd27224f4
119
+ - test/dummy/tmp/cache/assets/D15/3F0/sprockets%2F39872498b093360df5f0580acacdb57d
120
+ - test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705
121
+ - test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655
122
+ - test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6
123
+ - test/dummy/tmp/cache/assets/D78/C50/sprockets%2F60a6ed9381d575bd401fe8e862dae83d
124
+ - test/dummy/tmp/cache/assets/D98/8B0/sprockets%2Fedbef6e0d0a4742346cf479f2c522eb0
125
+ - test/dummy/tmp/cache/assets/DC1/AC0/sprockets%2Fa804445bea4e80dacecfbfd4a2316681
126
+ - test/dummy/tmp/cache/assets/DD3/970/sprockets%2F5ada8dbbe84ceb3be960e33931965af5
127
+ - test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994
128
+ - test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af
129
+ - test/dummy/tmp/pids/server.pid
130
+ - test/fixtures/analyze/user_visits.yml
131
+ - test/integration/navigation_test.rb
132
+ - test/test_helper.rb
133
+ - test/unit/analyze/user_visit_test.rb
134
+ homepage: https://github.com/smsohan/analyze
31
135
  licenses: []
32
136
  post_install_message:
33
137
  rdoc_options: []
@@ -50,5 +154,69 @@ rubyforge_project:
50
154
  rubygems_version: 1.8.24
51
155
  signing_key:
52
156
  specification_version: 3
53
- summary: Dead-simple web analytics with JavaScript API
54
- test_files: []
157
+ summary: A dead-simple analytics library for tracking user visits both on the server
158
+ side and JavaScript API
159
+ test_files:
160
+ - test/analyze_test.rb
161
+ - test/dummy/app/assets/javascripts/application.js
162
+ - test/dummy/app/assets/javascripts/home.js
163
+ - test/dummy/app/assets/stylesheets/application.css
164
+ - test/dummy/app/assets/stylesheets/home.css
165
+ - test/dummy/app/controllers/application_controller.rb
166
+ - test/dummy/app/controllers/home_controller.rb
167
+ - test/dummy/app/helpers/application_helper.rb
168
+ - test/dummy/app/helpers/home_helper.rb
169
+ - test/dummy/app/views/home/index.html.erb
170
+ - test/dummy/app/views/layouts/application.html.erb
171
+ - test/dummy/config/application.rb
172
+ - test/dummy/config/boot.rb
173
+ - test/dummy/config/database.yml
174
+ - test/dummy/config/environment.rb
175
+ - test/dummy/config/environments/development.rb
176
+ - test/dummy/config/environments/production.rb
177
+ - test/dummy/config/environments/test.rb
178
+ - test/dummy/config/initializers/backtrace_silencers.rb
179
+ - test/dummy/config/initializers/inflections.rb
180
+ - test/dummy/config/initializers/mime_types.rb
181
+ - test/dummy/config/initializers/secret_token.rb
182
+ - test/dummy/config/initializers/session_store.rb
183
+ - test/dummy/config/initializers/wrap_parameters.rb
184
+ - test/dummy/config/locales/en.yml
185
+ - test/dummy/config/routes.rb
186
+ - test/dummy/config.ru
187
+ - test/dummy/db/development.sqlite3
188
+ - test/dummy/db/migrate/20130401223200_create_analyze_user_visits.analyze.rb
189
+ - test/dummy/db/schema.rb
190
+ - test/dummy/log/development.log
191
+ - test/dummy/public/404.html
192
+ - test/dummy/public/422.html
193
+ - test/dummy/public/500.html
194
+ - test/dummy/public/favicon.ico
195
+ - test/dummy/Rakefile
196
+ - test/dummy/README.rdoc
197
+ - test/dummy/script/rails
198
+ - test/dummy/test/functional/home_controller_test.rb
199
+ - test/dummy/test/unit/helpers/home_helper_test.rb
200
+ - test/dummy/tmp/cache/assets/C81/D40/sprockets%2Fbd73939fb5313416525d259b2e1a4639
201
+ - test/dummy/tmp/cache/assets/CD7/0B0/sprockets%2F18b0b345fcb68ffba96846350060433a
202
+ - test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953
203
+ - test/dummy/tmp/cache/assets/CDA/2E0/sprockets%2F57cf8ca064b9a62db745b467219702a0
204
+ - test/dummy/tmp/cache/assets/CDF/870/sprockets%2Fb878faf942403e313a5b103e5d80488e
205
+ - test/dummy/tmp/cache/assets/CF9/7C0/sprockets%2F40fc2f3d2a468a00e463f1d313cb1683
206
+ - test/dummy/tmp/cache/assets/D05/D40/sprockets%2F1c9faaf28d05409b88ad3113374d613c
207
+ - test/dummy/tmp/cache/assets/D0A/350/sprockets%2F6ed6c68d13ab2246d5844b3bd27224f4
208
+ - test/dummy/tmp/cache/assets/D15/3F0/sprockets%2F39872498b093360df5f0580acacdb57d
209
+ - test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705
210
+ - test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655
211
+ - test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6
212
+ - test/dummy/tmp/cache/assets/D78/C50/sprockets%2F60a6ed9381d575bd401fe8e862dae83d
213
+ - test/dummy/tmp/cache/assets/D98/8B0/sprockets%2Fedbef6e0d0a4742346cf479f2c522eb0
214
+ - test/dummy/tmp/cache/assets/DC1/AC0/sprockets%2Fa804445bea4e80dacecfbfd4a2316681
215
+ - test/dummy/tmp/cache/assets/DD3/970/sprockets%2F5ada8dbbe84ceb3be960e33931965af5
216
+ - test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994
217
+ - test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af
218
+ - test/dummy/tmp/pids/server.pid
219
+ - test/fixtures/analyze/user_visits.yml
220
+ - test/integration/navigation_test.rb
221
+ - test/test_helper.rb
222
+ - test/unit/analyze/user_visit_test.rb
data/.gitignore DELETED
@@ -1,17 +0,0 @@
1
- *.gem
2
- *.rbc
3
- .bundle
4
- .config
5
- .yardoc
6
- Gemfile.lock
7
- InstalledFiles
8
- _yardoc
9
- coverage
10
- doc/
11
- lib/bundler/man
12
- pkg
13
- rdoc
14
- spec/reports
15
- test/tmp
16
- test/version_tmp
17
- tmp
data/Gemfile DELETED
@@ -1,4 +0,0 @@
1
- source 'https://rubygems.org'
2
-
3
- # Specify your gem's dependencies in analyze.gemspec
4
- gemspec