gricer 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (88) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.rdoc +84 -0
  3. data/Rakefile +49 -0
  4. data/app/assets/images/gricer/fluid/breadcrumb.png +0 -0
  5. data/app/assets/javascripts/gricer.js.coffee +85 -0
  6. data/app/assets/javascripts/gricer_backend_jquery.js.coffee +352 -0
  7. data/app/assets/javascripts/jquery.flot.js +2599 -0
  8. data/app/assets/javascripts/jquery.flot.pie.js +750 -0
  9. data/app/assets/javascripts/jquery.flot.resize.js +60 -0
  10. data/app/assets/javascripts/jquery.flot.symbol.js +70 -0
  11. data/app/assets/javascripts/worldmap.js +146 -0
  12. data/app/assets/stylesheets/gricer/fluid-jquery-ui.css.scss +1298 -0
  13. data/app/assets/stylesheets/gricer/fluid.css.scss +240 -0
  14. data/app/assets/stylesheets/gricer/helpers/css3.css.scss +21 -0
  15. data/app/controllers/gricer/base_controller.rb +141 -0
  16. data/app/controllers/gricer/capture_controller.rb +42 -0
  17. data/app/controllers/gricer/dashboard_controller.rb +18 -0
  18. data/app/controllers/gricer/requests_controller.rb +42 -0
  19. data/app/controllers/gricer/sessions_controller.rb +24 -0
  20. data/app/helpers/gricer/base_helper.rb +22 -0
  21. data/app/models/gricer/agent.rb +789 -0
  22. data/app/models/gricer/request.rb +239 -0
  23. data/app/models/gricer/session.rb +433 -0
  24. data/app/views/gricer/capture/index.html.erb +1 -0
  25. data/app/views/gricer/dashboard/_menu.html.erb +10 -0
  26. data/app/views/gricer/dashboard/_overview.html.erb +33 -0
  27. data/app/views/gricer/dashboard/index.html.erb +19 -0
  28. data/config/routes.rb +51 -0
  29. data/lib/gricer.rb +36 -0
  30. data/lib/gricer/action_controller/base.rb +28 -0
  31. data/lib/gricer/action_controller/track.rb +132 -0
  32. data/lib/gricer/active_model/statistics.rb +167 -0
  33. data/lib/gricer/config.rb +125 -0
  34. data/lib/gricer/engine.rb +9 -0
  35. data/lib/gricer/localization.rb +3 -0
  36. data/lib/tasks/gricer_tasks.rake +92 -0
  37. data/spec/controllers/gricer/base_controller_spec.rb +207 -0
  38. data/spec/controllers/gricer/capture_controller_spec.rb +44 -0
  39. data/spec/controllers/gricer/dashboard_controller_spec.rb +44 -0
  40. data/spec/controllers/gricer/requests_controller_spec.rb +36 -0
  41. data/spec/controllers/gricer/sessions_controller_spec.rb +37 -0
  42. data/spec/dummy/Rakefile +7 -0
  43. data/spec/dummy/app/assets/javascripts/application.js +9 -0
  44. data/spec/dummy/app/assets/stylesheets/application.css +13 -0
  45. data/spec/dummy/app/assets/stylesheets/dashboard.css +4 -0
  46. data/spec/dummy/app/assets/stylesheets/scaffold.css +56 -0
  47. data/spec/dummy/app/assets/stylesheets/sessions.css +4 -0
  48. data/spec/dummy/app/controllers/application_controller.rb +23 -0
  49. data/spec/dummy/app/controllers/dashboard_controller.rb +19 -0
  50. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  51. data/spec/dummy/app/helpers/dashboard_helper.rb +2 -0
  52. data/spec/dummy/app/views/dashboard/index.html.erb +236 -0
  53. data/spec/dummy/app/views/layouts/application.html.erb +16 -0
  54. data/spec/dummy/config.ru +4 -0
  55. data/spec/dummy/config/application.rb +48 -0
  56. data/spec/dummy/config/boot.rb +10 -0
  57. data/spec/dummy/config/cucumber.yml +9 -0
  58. data/spec/dummy/config/database.yml +25 -0
  59. data/spec/dummy/config/environment.rb +5 -0
  60. data/spec/dummy/config/environments/development.rb +27 -0
  61. data/spec/dummy/config/environments/production.rb +51 -0
  62. data/spec/dummy/config/environments/test.rb +39 -0
  63. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  64. data/spec/dummy/config/initializers/inflections.rb +10 -0
  65. data/spec/dummy/config/initializers/mime_types.rb +5 -0
  66. data/spec/dummy/config/initializers/secret_token.rb +7 -0
  67. data/spec/dummy/config/initializers/session_store.rb +8 -0
  68. data/spec/dummy/config/initializers/wrap_parameters.rb +12 -0
  69. data/spec/dummy/config/locales/en.yml +5 -0
  70. data/spec/dummy/config/routes.rb +11 -0
  71. data/spec/dummy/db/schema.rb +241 -0
  72. data/spec/dummy/log/development.log +0 -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 +26 -0
  76. data/spec/dummy/public/favicon.ico +0 -0
  77. data/spec/dummy/script/rails +6 -0
  78. data/spec/helpers/gricer/base_helper_spec.rb +28 -0
  79. data/spec/lib/gricer/action_controller/track_spec.rb +63 -0
  80. data/spec/models/gricer/agent_spec.rb +829 -0
  81. data/spec/models/gricer/request_spec.rb +145 -0
  82. data/spec/models/gricer/session_spec.rb +209 -0
  83. data/spec/routing/capture_routes_spec.rb +6 -0
  84. data/spec/routing/dashboard_routes_spec.rb +9 -0
  85. data/spec/routing/requests_routes_spec.rb +90 -0
  86. data/spec/routing/sessions_routes_spec.rb +115 -0
  87. data/spec/spec_helper.rb +23 -0
  88. metadata +185 -0
@@ -0,0 +1,115 @@
1
+ require 'spec_helper'
2
+
3
+ describe 'routes for session stats' do
4
+ it { gricer_sessions_agent_name_process_path.should == '/gricer/sessions/agent_name_process' }
5
+ it { { get: '/gricer/sessions/agent_name_process'}.should route_to(controller: 'gricer/sessions', action: 'process_stats', field: 'agent.name') }
6
+ it { gricer_sessions_agent_name_spread_path.should == '/gricer/sessions/agent_name_spread' }
7
+ it { { get: '/gricer/sessions/agent_name_spread'}.should route_to(controller: 'gricer/sessions', action: 'spread_stats', field: 'agent.name') }
8
+
9
+ it { gricer_sessions_agent_os_process_path.should == '/gricer/sessions/agent_os_process' }
10
+ it { { get: '/gricer/sessions/agent_os_process'}.should route_to(controller: 'gricer/sessions', action: 'process_stats', field: 'agent.os') }
11
+ it { gricer_sessions_agent_os_spread_path.should == '/gricer/sessions/agent_os_spread' }
12
+ it { { get: '/gricer/sessions/agent_os_spread'}.should route_to(controller: 'gricer/sessions', action: 'spread_stats', field: 'agent.os') }
13
+
14
+ it { gricer_sessions_agent_full_version_process_path.should == '/gricer/sessions/agent_full_version_process' }
15
+ it { { get: '/gricer/sessions/agent_full_version_process'}.should route_to(controller: 'gricer/sessions', action: 'process_stats', field: 'agent.full_version') }
16
+ it { gricer_sessions_agent_full_version_spread_path.should == '/gricer/sessions/agent_full_version_spread' }
17
+ it { { get: '/gricer/sessions/agent_full_version_spread'}.should route_to(controller: 'gricer/sessions', action: 'spread_stats', field: 'agent.full_version') }
18
+
19
+ it { gricer_sessions_agent_major_version_process_path.should == '/gricer/sessions/agent_major_version_process' }
20
+ it { { get: '/gricer/sessions/agent_major_version_process'}.should route_to(controller: 'gricer/sessions', action: 'process_stats', field: 'agent.major_version') }
21
+ it { gricer_sessions_agent_major_version_spread_path.should == '/gricer/sessions/agent_major_version_spread' }
22
+ it { { get: '/gricer/sessions/agent_major_version_spread'}.should route_to(controller: 'gricer/sessions', action: 'spread_stats', field: 'agent.major_version') }
23
+
24
+ it { gricer_sessions_agent_engine_name_process_path.should == '/gricer/sessions/agent_engine_name_process' }
25
+ it { { get: '/gricer/sessions/agent_engine_name_process'}.should route_to(controller: 'gricer/sessions', action: 'process_stats', field: 'agent.engine_name') }
26
+ it { gricer_sessions_agent_engine_name_spread_path.should == '/gricer/sessions/agent_engine_name_spread' }
27
+ it { { get: '/gricer/sessions/agent_engine_name_spread'}.should route_to(controller: 'gricer/sessions', action: 'spread_stats', field: 'agent.engine_name') }
28
+
29
+ it { gricer_sessions_agent_engine_version_process_path.should == '/gricer/sessions/agent_engine_version_process' }
30
+ it { { get: '/gricer/sessions/agent_engine_version_process'}.should route_to(controller: 'gricer/sessions', action: 'process_stats', field: 'agent.engine_version') }
31
+ it { gricer_sessions_agent_engine_version_spread_path.should == '/gricer/sessions/agent_engine_version_spread' }
32
+ it { { get: '/gricer/sessions/agent_engine_version_spread'}.should route_to(controller: 'gricer/sessions', action: 'spread_stats', field: 'agent.engine_version') }
33
+
34
+ it { gricer_sessions_javascript_process_path.should == '/gricer/sessions/javascript_process' }
35
+ it { { get: '/gricer/sessions/javascript_process'}.should route_to(controller: 'gricer/sessions', action: 'process_stats', field: 'javascript') }
36
+ it { gricer_sessions_javascript_spread_path.should == '/gricer/sessions/javascript_spread' }
37
+ it { { get: '/gricer/sessions/javascript_spread'}.should route_to(controller: 'gricer/sessions', action: 'spread_stats', field: 'javascript') }
38
+
39
+ it { gricer_sessions_java_process_path.should == '/gricer/sessions/java_process' }
40
+ it { { get: '/gricer/sessions/java_process'}.should route_to(controller: 'gricer/sessions', action: 'process_stats', field: 'java') }
41
+ it { gricer_sessions_java_spread_path.should == '/gricer/sessions/java_spread' }
42
+ it { { get: '/gricer/sessions/java_spread'}.should route_to(controller: 'gricer/sessions', action: 'spread_stats', field: 'java') }
43
+
44
+ it { gricer_sessions_silverlight_version_process_path.should == '/gricer/sessions/silverlight_version_process' }
45
+ it { { get: '/gricer/sessions/silverlight_version_process'}.should route_to(controller: 'gricer/sessions', action: 'process_stats', field: 'silverlight_version') }
46
+ it { gricer_sessions_silverlight_version_spread_path.should == '/gricer/sessions/silverlight_version_spread' }
47
+ it { { get: '/gricer/sessions/silverlight_version_spread'}.should route_to(controller: 'gricer/sessions', action: 'spread_stats', field: 'silverlight_version') }
48
+
49
+ it { gricer_sessions_silverlight_major_version_process_path.should == '/gricer/sessions/silverlight_major_version_process' }
50
+ it { { get: '/gricer/sessions/silverlight_major_version_process'}.should route_to(controller: 'gricer/sessions', action: 'process_stats', field: 'silverlight_major_version') }
51
+ it { gricer_sessions_silverlight_major_version_spread_path.should == '/gricer/sessions/silverlight_major_version_spread' }
52
+ it { { get: '/gricer/sessions/silverlight_major_version_spread'}.should route_to(controller: 'gricer/sessions', action: 'spread_stats', field: 'silverlight_major_version') }
53
+
54
+ it { gricer_sessions_flash_version_process_path.should == '/gricer/sessions/flash_version_process' }
55
+ it { { get: '/gricer/sessions/flash_version_process'}.should route_to(controller: 'gricer/sessions', action: 'process_stats', field: 'flash_version') }
56
+ it { gricer_sessions_flash_version_spread_path.should == '/gricer/sessions/flash_version_spread' }
57
+ it { { get: '/gricer/sessions/flash_version_spread'}.should route_to(controller: 'gricer/sessions', action: 'spread_stats', field: 'flash_version') }
58
+
59
+ it { gricer_sessions_flash_major_version_process_path.should == '/gricer/sessions/flash_major_version_process' }
60
+ it { { get: '/gricer/sessions/flash_major_version_process'}.should route_to(controller: 'gricer/sessions', action: 'process_stats', field: 'flash_major_version') }
61
+ it { gricer_sessions_flash_major_version_spread_path.should == '/gricer/sessions/flash_major_version_spread' }
62
+ it { { get: '/gricer/sessions/flash_major_version_spread'}.should route_to(controller: 'gricer/sessions', action: 'spread_stats', field: 'flash_major_version') }
63
+
64
+ it { gricer_sessions_country_process_path.should == '/gricer/sessions/country_process' }
65
+ it { { get: '/gricer/sessions/country_process'}.should route_to(controller: 'gricer/sessions', action: 'process_stats', field: 'country') }
66
+ it { gricer_sessions_country_spread_path.should == '/gricer/sessions/country_spread' }
67
+ it { { get: '/gricer/sessions/country_spread'}.should route_to(controller: 'gricer/sessions', action: 'spread_stats', field: 'country') }
68
+
69
+ it { gricer_sessions_city_process_path.should == '/gricer/sessions/city_process' }
70
+ it { { get: '/gricer/sessions/city_process'}.should route_to(controller: 'gricer/sessions', action: 'process_stats', field: 'city') }
71
+ it { gricer_sessions_city_spread_path.should == '/gricer/sessions/city_spread' }
72
+ it { { get: '/gricer/sessions/city_spread'}.should route_to(controller: 'gricer/sessions', action: 'spread_stats', field: 'city') }
73
+
74
+ it { gricer_sessions_domain_process_path.should == '/gricer/sessions/domain_process' }
75
+ it { { get: '/gricer/sessions/domain_process'}.should route_to(controller: 'gricer/sessions', action: 'process_stats', field: 'domain') }
76
+ it { gricer_sessions_domain_spread_path.should == '/gricer/sessions/domain_spread' }
77
+ it { { get: '/gricer/sessions/domain_spread'}.should route_to(controller: 'gricer/sessions', action: 'spread_stats', field: 'domain') }
78
+
79
+ it { gricer_sessions_screen_size_process_path.should == '/gricer/sessions/screen_size_process' }
80
+ it { { get: '/gricer/sessions/screen_size_process'}.should route_to(controller: 'gricer/sessions', action: 'process_stats', field: 'screen_size') }
81
+ it { gricer_sessions_screen_size_spread_path.should == '/gricer/sessions/screen_size_spread' }
82
+ it { { get: '/gricer/sessions/screen_size_spread'}.should route_to(controller: 'gricer/sessions', action: 'spread_stats', field: 'screen_size') }
83
+
84
+ it { gricer_sessions_screen_width_process_path.should == '/gricer/sessions/screen_width_process' }
85
+ it { { get: '/gricer/sessions/screen_width_process'}.should route_to(controller: 'gricer/sessions', action: 'process_stats', field: 'screen_width') }
86
+ it { gricer_sessions_screen_width_spread_path.should == '/gricer/sessions/screen_width_spread' }
87
+ it { { get: '/gricer/sessions/screen_width_spread'}.should route_to(controller: 'gricer/sessions', action: 'spread_stats', field: 'screen_width') }
88
+
89
+ it { gricer_sessions_screen_height_process_path.should == '/gricer/sessions/screen_height_process' }
90
+ it { { get: '/gricer/sessions/screen_height_process'}.should route_to(controller: 'gricer/sessions', action: 'process_stats', field: 'screen_height') }
91
+ it { gricer_sessions_screen_height_spread_path.should == '/gricer/sessions/screen_height_spread' }
92
+ it { { get: '/gricer/sessions/screen_height_spread'}.should route_to(controller: 'gricer/sessions', action: 'spread_stats', field: 'screen_height') }
93
+
94
+ it { gricer_sessions_screen_depth_process_path.should == '/gricer/sessions/screen_depth_process' }
95
+ it { { get: '/gricer/sessions/screen_depth_process'}.should route_to(controller: 'gricer/sessions', action: 'process_stats', field: 'screen_depth') }
96
+ it { gricer_sessions_screen_depth_spread_path.should == '/gricer/sessions/screen_depth_spread' }
97
+ it { { get: '/gricer/sessions/screen_depth_spread'}.should route_to(controller: 'gricer/sessions', action: 'spread_stats', field: 'screen_depth') }
98
+
99
+ it { gricer_sessions_requested_locale_major_process_path.should == '/gricer/sessions/requested_locale_major_process' }
100
+ it { { get: '/gricer/sessions/requested_locale_major_process'}.should route_to(controller: 'gricer/sessions', action: 'process_stats', field: 'requested_locale_major') }
101
+ it { gricer_sessions_requested_locale_major_spread_path.should == '/gricer/sessions/requested_locale_major_spread' }
102
+ it { { get: '/gricer/sessions/requested_locale_major_spread'}.should route_to(controller: 'gricer/sessions', action: 'spread_stats', field: 'requested_locale_major') }
103
+
104
+ it { gricer_sessions_requested_locale_minor_process_path.should == '/gricer/sessions/requested_locale_minor_process' }
105
+ it { { get: '/gricer/sessions/requested_locale_minor_process'}.should route_to(controller: 'gricer/sessions', action: 'process_stats', field: 'requested_locale_minor') }
106
+ it { gricer_sessions_requested_locale_minor_spread_path.should == '/gricer/sessions/requested_locale_minor_spread' }
107
+ it { { get: '/gricer/sessions/requested_locale_minor_spread'}.should route_to(controller: 'gricer/sessions', action: 'spread_stats', field: 'requested_locale_minor') }
108
+
109
+ it { gricer_sessions_requested_locale_process_path.should == '/gricer/sessions/requested_locale_process' }
110
+ it { { get: '/gricer/sessions/requested_locale_process'}.should route_to(controller: 'gricer/sessions', action: 'process_stats', field: 'requested_locale') }
111
+ it { gricer_sessions_requested_locale_spread_path.should == '/gricer/sessions/requested_locale_spread' }
112
+ it { { get: '/gricer/sessions/requested_locale_spread'}.should route_to(controller: 'gricer/sessions', action: 'spread_stats', field: 'requested_locale') }
113
+
114
+
115
+ end
@@ -0,0 +1,23 @@
1
+ require 'spork'
2
+
3
+ Spork.prefork do
4
+ ENV["RAILS_ENV"] = "test"
5
+
6
+ require File.expand_path("../dummy/config/environment.rb", __FILE__)
7
+ require 'rspec/rails'
8
+
9
+ Rails.backtrace_cleaner.remove_silencers!
10
+
11
+ Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
12
+
13
+ RSpec.configure do |config|
14
+ config.mock_with :rspec
15
+ config.use_transactional_fixtures = true
16
+ end
17
+ end
18
+
19
+ Spork.each_run do
20
+ Rails.application.reload_routes!
21
+ Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
22
+ end
23
+
metadata ADDED
@@ -0,0 +1,185 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: gricer
3
+ version: !ruby/object:Gem::Version
4
+ prerelease:
5
+ version: 0.0.1
6
+ platform: ruby
7
+ authors:
8
+ - Sven G. Broenstrup
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+
13
+ date: 2011-08-15 00:00:00 +02:00
14
+ default_executable:
15
+ dependencies:
16
+ - !ruby/object:Gem::Dependency
17
+ name: rails
18
+ prerelease: false
19
+ requirement: &id001 !ruby/object:Gem::Requirement
20
+ none: false
21
+ requirements:
22
+ - - ">="
23
+ - !ruby/object:Gem::Version
24
+ version: 3.1.0.rc5
25
+ type: :runtime
26
+ version_requirements: *id001
27
+ - !ruby/object:Gem::Dependency
28
+ name: coffee-script
29
+ prerelease: false
30
+ requirement: &id002 !ruby/object:Gem::Requirement
31
+ none: false
32
+ requirements:
33
+ - - ">="
34
+ - !ruby/object:Gem::Version
35
+ version: "0"
36
+ type: :runtime
37
+ version_requirements: *id002
38
+ - !ruby/object:Gem::Dependency
39
+ name: sass-rails
40
+ prerelease: false
41
+ requirement: &id003 !ruby/object:Gem::Requirement
42
+ none: false
43
+ requirements:
44
+ - - ">="
45
+ - !ruby/object:Gem::Version
46
+ version: "0"
47
+ type: :runtime
48
+ version_requirements: *id003
49
+ - !ruby/object:Gem::Dependency
50
+ name: pjax-rails
51
+ prerelease: false
52
+ requirement: &id004 !ruby/object:Gem::Requirement
53
+ none: false
54
+ requirements:
55
+ - - ">="
56
+ - !ruby/object:Gem::Version
57
+ version: "0"
58
+ type: :runtime
59
+ version_requirements: *id004
60
+ description: Gricer web analysis tool engine
61
+ email: info@gricer.org
62
+ executables: []
63
+
64
+ extensions: []
65
+
66
+ extra_rdoc_files: []
67
+
68
+ files:
69
+ - app/assets/images/gricer/fluid/breadcrumb.png
70
+ - app/assets/javascripts/gricer.js.coffee
71
+ - app/assets/javascripts/gricer_backend_jquery.js.coffee
72
+ - app/assets/javascripts/jquery.flot.js
73
+ - app/assets/javascripts/jquery.flot.pie.js
74
+ - app/assets/javascripts/jquery.flot.resize.js
75
+ - app/assets/javascripts/jquery.flot.symbol.js
76
+ - app/assets/javascripts/worldmap.js
77
+ - app/assets/stylesheets/gricer/fluid-jquery-ui.css.scss
78
+ - app/assets/stylesheets/gricer/fluid.css.scss
79
+ - app/assets/stylesheets/gricer/helpers/css3.css.scss
80
+ - app/controllers/gricer/base_controller.rb
81
+ - app/controllers/gricer/capture_controller.rb
82
+ - app/controllers/gricer/dashboard_controller.rb
83
+ - app/controllers/gricer/requests_controller.rb
84
+ - app/controllers/gricer/sessions_controller.rb
85
+ - app/helpers/gricer/base_helper.rb
86
+ - app/models/gricer/agent.rb
87
+ - app/models/gricer/request.rb
88
+ - app/models/gricer/session.rb
89
+ - app/views/gricer/capture/index.html.erb
90
+ - app/views/gricer/dashboard/_menu.html.erb
91
+ - app/views/gricer/dashboard/_overview.html.erb
92
+ - app/views/gricer/dashboard/index.html.erb
93
+ - lib/gricer/action_controller/base.rb
94
+ - lib/gricer/action_controller/track.rb
95
+ - lib/gricer/active_model/statistics.rb
96
+ - lib/gricer/config.rb
97
+ - lib/gricer/engine.rb
98
+ - lib/gricer/localization.rb
99
+ - lib/gricer.rb
100
+ - lib/tasks/gricer_tasks.rake
101
+ - spec/controllers/gricer/base_controller_spec.rb
102
+ - spec/controllers/gricer/capture_controller_spec.rb
103
+ - spec/controllers/gricer/dashboard_controller_spec.rb
104
+ - spec/controllers/gricer/requests_controller_spec.rb
105
+ - spec/controllers/gricer/sessions_controller_spec.rb
106
+ - spec/dummy/app/assets/javascripts/application.js
107
+ - spec/dummy/app/assets/stylesheets/application.css
108
+ - spec/dummy/app/assets/stylesheets/dashboard.css
109
+ - spec/dummy/app/assets/stylesheets/scaffold.css
110
+ - spec/dummy/app/assets/stylesheets/sessions.css
111
+ - spec/dummy/app/controllers/application_controller.rb
112
+ - spec/dummy/app/controllers/dashboard_controller.rb
113
+ - spec/dummy/app/helpers/application_helper.rb
114
+ - spec/dummy/app/helpers/dashboard_helper.rb
115
+ - spec/dummy/app/views/dashboard/index.html.erb
116
+ - spec/dummy/app/views/layouts/application.html.erb
117
+ - spec/dummy/config/application.rb
118
+ - spec/dummy/config/boot.rb
119
+ - spec/dummy/config/cucumber.yml
120
+ - spec/dummy/config/database.yml
121
+ - spec/dummy/config/environment.rb
122
+ - spec/dummy/config/environments/development.rb
123
+ - spec/dummy/config/environments/production.rb
124
+ - spec/dummy/config/environments/test.rb
125
+ - spec/dummy/config/initializers/backtrace_silencers.rb
126
+ - spec/dummy/config/initializers/inflections.rb
127
+ - spec/dummy/config/initializers/mime_types.rb
128
+ - spec/dummy/config/initializers/secret_token.rb
129
+ - spec/dummy/config/initializers/session_store.rb
130
+ - spec/dummy/config/initializers/wrap_parameters.rb
131
+ - spec/dummy/config/locales/en.yml
132
+ - spec/dummy/config/routes.rb
133
+ - spec/dummy/config.ru
134
+ - spec/dummy/db/schema.rb
135
+ - spec/dummy/log/development.log
136
+ - spec/dummy/public/404.html
137
+ - spec/dummy/public/422.html
138
+ - spec/dummy/public/500.html
139
+ - spec/dummy/public/favicon.ico
140
+ - spec/dummy/Rakefile
141
+ - spec/dummy/script/rails
142
+ - spec/helpers/gricer/base_helper_spec.rb
143
+ - spec/lib/gricer/action_controller/track_spec.rb
144
+ - spec/models/gricer/agent_spec.rb
145
+ - spec/models/gricer/request_spec.rb
146
+ - spec/models/gricer/session_spec.rb
147
+ - spec/routing/capture_routes_spec.rb
148
+ - spec/routing/dashboard_routes_spec.rb
149
+ - spec/routing/requests_routes_spec.rb
150
+ - spec/routing/sessions_routes_spec.rb
151
+ - spec/spec_helper.rb
152
+ - MIT-LICENSE
153
+ - Rakefile
154
+ - README.rdoc
155
+ - config/routes.rb
156
+ has_rdoc: true
157
+ homepage:
158
+ licenses: []
159
+
160
+ post_install_message:
161
+ rdoc_options: []
162
+
163
+ require_paths:
164
+ - lib
165
+ required_ruby_version: !ruby/object:Gem::Requirement
166
+ none: false
167
+ requirements:
168
+ - - ">="
169
+ - !ruby/object:Gem::Version
170
+ version: "0"
171
+ required_rubygems_version: !ruby/object:Gem::Requirement
172
+ none: false
173
+ requirements:
174
+ - - ">="
175
+ - !ruby/object:Gem::Version
176
+ version: "0"
177
+ requirements: []
178
+
179
+ rubyforge_project:
180
+ rubygems_version: 1.5.0
181
+ signing_key:
182
+ specification_version: 3
183
+ summary: Gricer web analysis tool engine
184
+ test_files: []
185
+