mixpanel_tracker 1.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 (50) hide show
  1. checksums.yaml +7 -0
  2. data/README.rdoc +3 -0
  3. data/Rakefile +32 -0
  4. data/lib/generators/mixpanel_tracker/mixpanel_tracker_generator.rb +48 -0
  5. data/lib/generators/mixpanel_tracker/templates/initializer.rb +12 -0
  6. data/lib/mixpanel_tracker/configuration.rb +13 -0
  7. data/lib/mixpanel_tracker/controller_helpers.rb +13 -0
  8. data/lib/mixpanel_tracker/event.rb +9 -0
  9. data/lib/mixpanel_tracker/railtie.rb +15 -0
  10. data/lib/mixpanel_tracker/tracker.rb +25 -0
  11. data/lib/mixpanel_tracker/version.rb +3 -0
  12. data/lib/mixpanel_tracker/view_helpers.rb +27 -0
  13. data/lib/mixpanel_tracker.rb +17 -0
  14. data/lib/tasks/mixpanel_tracker_tasks.rake +4 -0
  15. data/test/dummy/README.rdoc +28 -0
  16. data/test/dummy/Rakefile +6 -0
  17. data/test/dummy/app/assets/javascripts/application.js +13 -0
  18. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  19. data/test/dummy/app/controllers/application_controller.rb +5 -0
  20. data/test/dummy/app/helpers/application_helper.rb +2 -0
  21. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  22. data/test/dummy/bin/bundle +3 -0
  23. data/test/dummy/bin/rails +4 -0
  24. data/test/dummy/bin/rake +4 -0
  25. data/test/dummy/config/application.rb +23 -0
  26. data/test/dummy/config/boot.rb +5 -0
  27. data/test/dummy/config/database.yml +25 -0
  28. data/test/dummy/config/environment.rb +5 -0
  29. data/test/dummy/config/environments/development.rb +29 -0
  30. data/test/dummy/config/environments/production.rb +80 -0
  31. data/test/dummy/config/environments/test.rb +36 -0
  32. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  33. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  34. data/test/dummy/config/initializers/inflections.rb +16 -0
  35. data/test/dummy/config/initializers/mime_types.rb +5 -0
  36. data/test/dummy/config/initializers/secret_token.rb +12 -0
  37. data/test/dummy/config/initializers/session_store.rb +3 -0
  38. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  39. data/test/dummy/config/locales/en.yml +23 -0
  40. data/test/dummy/config/routes.rb +56 -0
  41. data/test/dummy/config.ru +4 -0
  42. data/test/dummy/db/test.sqlite3 +0 -0
  43. data/test/dummy/log/test.log +195 -0
  44. data/test/dummy/public/404.html +58 -0
  45. data/test/dummy/public/422.html +58 -0
  46. data/test/dummy/public/500.html +57 -0
  47. data/test/dummy/public/favicon.ico +0 -0
  48. data/test/mixpanel_tracker_test.rb +12 -0
  49. data/test/test_helper.rb +15 -0
  50. metadata +156 -0
@@ -0,0 +1,23 @@
1
+ # Files in the config/locales directory are used for internationalization
2
+ # and are automatically loaded by Rails. If you want to use locales other
3
+ # than English, add the necessary files in this directory.
4
+ #
5
+ # To use the locales, use `I18n.t`:
6
+ #
7
+ # I18n.t 'hello'
8
+ #
9
+ # In views, this is aliased to just `t`:
10
+ #
11
+ # <%= t('hello') %>
12
+ #
13
+ # To use a different locale, set it with `I18n.locale`:
14
+ #
15
+ # I18n.locale = :es
16
+ #
17
+ # This would use the information in config/locales/es.yml.
18
+ #
19
+ # To learn more, please read the Rails Internationalization guide
20
+ # available at http://guides.rubyonrails.org/i18n.html.
21
+
22
+ en:
23
+ hello: "Hello world"
@@ -0,0 +1,56 @@
1
+ Dummy::Application.routes.draw do
2
+ # The priority is based upon order of creation: first created -> highest priority.
3
+ # See how all your routes lay out with "rake routes".
4
+
5
+ # You can have the root of your site routed with "root"
6
+ # root 'welcome#index'
7
+
8
+ # Example of regular route:
9
+ # get 'products/:id' => 'catalog#view'
10
+
11
+ # Example of named route that can be invoked with purchase_url(id: product.id)
12
+ # get 'products/:id/purchase' => 'catalog#purchase', as: :purchase
13
+
14
+ # Example resource route (maps HTTP verbs to controller actions automatically):
15
+ # resources :products
16
+
17
+ # Example resource route with options:
18
+ # resources :products do
19
+ # member do
20
+ # get 'short'
21
+ # post 'toggle'
22
+ # end
23
+ #
24
+ # collection do
25
+ # get 'sold'
26
+ # end
27
+ # end
28
+
29
+ # Example resource route with sub-resources:
30
+ # resources :products do
31
+ # resources :comments, :sales
32
+ # resource :seller
33
+ # end
34
+
35
+ # Example resource route with more complex sub-resources:
36
+ # resources :products do
37
+ # resources :comments
38
+ # resources :sales do
39
+ # get 'recent', on: :collection
40
+ # end
41
+ # end
42
+
43
+ # Example resource route with concerns:
44
+ # concern :toggleable do
45
+ # post 'toggle'
46
+ # end
47
+ # resources :posts, concerns: :toggleable
48
+ # resources :photos, concerns: :toggleable
49
+
50
+ # Example resource route within a namespace:
51
+ # namespace :admin do
52
+ # # Directs /admin/products/* to Admin::ProductsController
53
+ # # (app/controllers/admin/products_controller.rb)
54
+ # resources :products
55
+ # end
56
+ end
@@ -0,0 +1,4 @@
1
+ # This file is used by Rack-based servers to start the application.
2
+
3
+ require ::File.expand_path('../config/environment', __FILE__)
4
+ run Rails.application
File without changes
@@ -0,0 +1,195 @@
1
+  (0.3ms) begin transaction
2
+ -------------------------------
3
+ MixpanelTrackerTest: test_truth
4
+ -------------------------------
5
+  (0.1ms) rollback transaction
6
+  (0.2ms) begin transaction
7
+ -------------------------------
8
+ MixpanelTrackerTest: test_truth
9
+ -------------------------------
10
+  (0.1ms) rollback transaction
11
+  (0.2ms) begin transaction
12
+ -------------------------------
13
+ MixpanelTrackerTest: test_truth
14
+ -------------------------------
15
+  (0.1ms) rollback transaction
16
+  (0.2ms) begin transaction
17
+ -------------------------------
18
+ MixpanelTrackerTest: test_truth
19
+ -------------------------------
20
+  (0.1ms) rollback transaction
21
+  (0.1ms) begin transaction
22
+ --------------------------------
23
+ MixpanelTrackerTest: test_truth2
24
+ --------------------------------
25
+  (0.1ms) rollback transaction
26
+  (0.3ms) begin transaction
27
+ -------------------------------
28
+ MixpanelTrackerTest: test_truth
29
+ -------------------------------
30
+  (0.1ms) rollback transaction
31
+  (0.1ms) begin transaction
32
+ --------------------------------
33
+ MixpanelTrackerTest: test_truth2
34
+ --------------------------------
35
+  (0.1ms) rollback transaction
36
+  (0.3ms) begin transaction
37
+ -------------------------------
38
+ MixpanelTrackerTest: test_truth
39
+ -------------------------------
40
+  (0.1ms) rollback transaction
41
+  (0.1ms) begin transaction
42
+ --------------------------------
43
+ MixpanelTrackerTest: test_truth2
44
+ --------------------------------
45
+  (0.3ms) rollback transaction
46
+  (0.2ms) begin transaction
47
+ -------------------------------
48
+ MixpanelTrackerTest: test_truth
49
+ -------------------------------
50
+  (0.1ms) rollback transaction
51
+  (0.1ms) begin transaction
52
+ --------------------------------
53
+ MixpanelTrackerTest: test_truth2
54
+ --------------------------------
55
+  (0.0ms) rollback transaction
56
+  (0.6ms) begin transaction
57
+ -------------------------------
58
+ MixpanelTrackerTest: test_truth
59
+ -------------------------------
60
+  (0.2ms) rollback transaction
61
+  (0.2ms) begin transaction
62
+ --------------------------------
63
+ MixpanelTrackerTest: test_truth2
64
+ --------------------------------
65
+  (0.1ms) rollback transaction
66
+  (0.3ms) begin transaction
67
+ -------------------------------
68
+ MixpanelTrackerTest: test_truth
69
+ -------------------------------
70
+  (0.1ms) rollback transaction
71
+  (0.1ms) begin transaction
72
+ --------------------------------
73
+ MixpanelTrackerTest: test_truth2
74
+ --------------------------------
75
+  (0.1ms) rollback transaction
76
+  (0.3ms) begin transaction
77
+ -------------------------------
78
+ MixpanelTrackerTest: test_truth
79
+ -------------------------------
80
+  (0.1ms) rollback transaction
81
+  (0.1ms) begin transaction
82
+ --------------------------------
83
+ MixpanelTrackerTest: test_truth2
84
+ --------------------------------
85
+  (0.1ms) rollback transaction
86
+  (0.3ms) begin transaction
87
+ -------------------------------
88
+ MixpanelTrackerTest: test_truth
89
+ -------------------------------
90
+  (0.1ms) rollback transaction
91
+  (0.1ms) begin transaction
92
+ --------------------------------
93
+ MixpanelTrackerTest: test_truth2
94
+ --------------------------------
95
+  (0.1ms) rollback transaction
96
+  (0.3ms) begin transaction
97
+ -------------------------------
98
+ MixpanelTrackerTest: test_truth
99
+ -------------------------------
100
+  (0.1ms) rollback transaction
101
+  (0.1ms) begin transaction
102
+ --------------------------------
103
+ MixpanelTrackerTest: test_truth2
104
+ --------------------------------
105
+  (0.1ms) rollback transaction
106
+  (0.3ms) begin transaction
107
+ -------------------------------
108
+ MixpanelTrackerTest: test_truth
109
+ -------------------------------
110
+  (0.1ms) rollback transaction
111
+  (0.2ms) begin transaction
112
+ --------------------------------
113
+ MixpanelTrackerTest: test_truth2
114
+ --------------------------------
115
+  (0.2ms) rollback transaction
116
+  (0.5ms) begin transaction
117
+ -------------------------------
118
+ MixpanelTrackerTest: test_truth
119
+ -------------------------------
120
+  (0.1ms) rollback transaction
121
+  (0.2ms) begin transaction
122
+ --------------------------------
123
+ MixpanelTrackerTest: test_truth2
124
+ --------------------------------
125
+  (0.1ms) rollback transaction
126
+  (0.3ms) begin transaction
127
+ -------------------------------
128
+ MixpanelTrackerTest: test_truth
129
+ -------------------------------
130
+  (0.1ms) rollback transaction
131
+  (0.1ms) begin transaction
132
+ --------------------------------
133
+ MixpanelTrackerTest: test_truth2
134
+ --------------------------------
135
+  (0.1ms) rollback transaction
136
+  (0.2ms) begin transaction
137
+ -------------------------------
138
+ MixpanelTrackerTest: test_truth
139
+ -------------------------------
140
+  (0.1ms) rollback transaction
141
+  (0.1ms) begin transaction
142
+ --------------------------------
143
+ MixpanelTrackerTest: test_truth2
144
+ --------------------------------
145
+  (0.2ms) rollback transaction
146
+  (0.3ms) begin transaction
147
+ -------------------------------
148
+ MixpanelTrackerTest: test_truth
149
+ -------------------------------
150
+  (0.1ms) rollback transaction
151
+  (0.1ms) begin transaction
152
+ --------------------------------
153
+ MixpanelTrackerTest: test_truth2
154
+ --------------------------------
155
+  (0.1ms) rollback transaction
156
+  (0.3ms) begin transaction
157
+ -------------------------------
158
+ MixpanelTrackerTest: test_truth
159
+ -------------------------------
160
+  (0.1ms) rollback transaction
161
+  (0.1ms) begin transaction
162
+ --------------------------------
163
+ MixpanelTrackerTest: test_truth2
164
+ --------------------------------
165
+  (0.1ms) rollback transaction
166
+  (0.3ms) begin transaction
167
+ -------------------------------
168
+ MixpanelTrackerTest: test_truth
169
+ -------------------------------
170
+  (0.1ms) rollback transaction
171
+  (0.2ms) begin transaction
172
+ --------------------------------
173
+ MixpanelTrackerTest: test_truth2
174
+ --------------------------------
175
+  (0.1ms) rollback transaction
176
+  (0.3ms) begin transaction
177
+ -------------------------------
178
+ MixpanelTrackerTest: test_truth
179
+ -------------------------------
180
+  (0.1ms) rollback transaction
181
+  (0.1ms) begin transaction
182
+ --------------------------------
183
+ MixpanelTrackerTest: test_truth2
184
+ --------------------------------
185
+  (0.1ms) rollback transaction
186
+  (0.2ms) begin transaction
187
+ -------------------------------
188
+ MixpanelTrackerTest: test_truth
189
+ -------------------------------
190
+  (0.1ms) rollback transaction
191
+  (0.1ms) begin transaction
192
+ --------------------------------
193
+ MixpanelTrackerTest: test_truth2
194
+ --------------------------------
195
+  (0.1ms) rollback transaction
@@ -0,0 +1,58 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The page you were looking for doesn't exist (404)</title>
5
+ <style>
6
+ body {
7
+ background-color: #EFEFEF;
8
+ color: #2E2F30;
9
+ text-align: center;
10
+ font-family: arial, sans-serif;
11
+ }
12
+
13
+ div.dialog {
14
+ width: 25em;
15
+ margin: 4em auto 0 auto;
16
+ border: 1px solid #CCC;
17
+ border-right-color: #999;
18
+ border-left-color: #999;
19
+ border-bottom-color: #BBB;
20
+ border-top: #B00100 solid 4px;
21
+ border-top-left-radius: 9px;
22
+ border-top-right-radius: 9px;
23
+ background-color: white;
24
+ padding: 7px 4em 0 4em;
25
+ }
26
+
27
+ h1 {
28
+ font-size: 100%;
29
+ color: #730E15;
30
+ line-height: 1.5em;
31
+ }
32
+
33
+ body > p {
34
+ width: 33em;
35
+ margin: 0 auto 1em;
36
+ padding: 1em 0;
37
+ background-color: #F7F7F7;
38
+ border: 1px solid #CCC;
39
+ border-right-color: #999;
40
+ border-bottom-color: #999;
41
+ border-bottom-left-radius: 4px;
42
+ border-bottom-right-radius: 4px;
43
+ border-top-color: #DADADA;
44
+ color: #666;
45
+ box-shadow:0 3px 8px rgba(50, 50, 50, 0.17);
46
+ }
47
+ </style>
48
+ </head>
49
+
50
+ <body>
51
+ <!-- This file lives in public/404.html -->
52
+ <div class="dialog">
53
+ <h1>The page you were looking for doesn't exist.</h1>
54
+ <p>You may have mistyped the address or the page may have moved.</p>
55
+ </div>
56
+ <p>If you are the application owner check the logs for more information.</p>
57
+ </body>
58
+ </html>
@@ -0,0 +1,58 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The change you wanted was rejected (422)</title>
5
+ <style>
6
+ body {
7
+ background-color: #EFEFEF;
8
+ color: #2E2F30;
9
+ text-align: center;
10
+ font-family: arial, sans-serif;
11
+ }
12
+
13
+ div.dialog {
14
+ width: 25em;
15
+ margin: 4em auto 0 auto;
16
+ border: 1px solid #CCC;
17
+ border-right-color: #999;
18
+ border-left-color: #999;
19
+ border-bottom-color: #BBB;
20
+ border-top: #B00100 solid 4px;
21
+ border-top-left-radius: 9px;
22
+ border-top-right-radius: 9px;
23
+ background-color: white;
24
+ padding: 7px 4em 0 4em;
25
+ }
26
+
27
+ h1 {
28
+ font-size: 100%;
29
+ color: #730E15;
30
+ line-height: 1.5em;
31
+ }
32
+
33
+ body > p {
34
+ width: 33em;
35
+ margin: 0 auto 1em;
36
+ padding: 1em 0;
37
+ background-color: #F7F7F7;
38
+ border: 1px solid #CCC;
39
+ border-right-color: #999;
40
+ border-bottom-color: #999;
41
+ border-bottom-left-radius: 4px;
42
+ border-bottom-right-radius: 4px;
43
+ border-top-color: #DADADA;
44
+ color: #666;
45
+ box-shadow:0 3px 8px rgba(50, 50, 50, 0.17);
46
+ }
47
+ </style>
48
+ </head>
49
+
50
+ <body>
51
+ <!-- This file lives in public/422.html -->
52
+ <div class="dialog">
53
+ <h1>The change you wanted was rejected.</h1>
54
+ <p>Maybe you tried to change something you didn't have access to.</p>
55
+ </div>
56
+ <p>If you are the application owner check the logs for more information.</p>
57
+ </body>
58
+ </html>
@@ -0,0 +1,57 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>We're sorry, but something went wrong (500)</title>
5
+ <style>
6
+ body {
7
+ background-color: #EFEFEF;
8
+ color: #2E2F30;
9
+ text-align: center;
10
+ font-family: arial, sans-serif;
11
+ }
12
+
13
+ div.dialog {
14
+ width: 25em;
15
+ margin: 4em auto 0 auto;
16
+ border: 1px solid #CCC;
17
+ border-right-color: #999;
18
+ border-left-color: #999;
19
+ border-bottom-color: #BBB;
20
+ border-top: #B00100 solid 4px;
21
+ border-top-left-radius: 9px;
22
+ border-top-right-radius: 9px;
23
+ background-color: white;
24
+ padding: 7px 4em 0 4em;
25
+ }
26
+
27
+ h1 {
28
+ font-size: 100%;
29
+ color: #730E15;
30
+ line-height: 1.5em;
31
+ }
32
+
33
+ body > p {
34
+ width: 33em;
35
+ margin: 0 auto 1em;
36
+ padding: 1em 0;
37
+ background-color: #F7F7F7;
38
+ border: 1px solid #CCC;
39
+ border-right-color: #999;
40
+ border-bottom-color: #999;
41
+ border-bottom-left-radius: 4px;
42
+ border-bottom-right-radius: 4px;
43
+ border-top-color: #DADADA;
44
+ color: #666;
45
+ box-shadow:0 3px 8px rgba(50, 50, 50, 0.17);
46
+ }
47
+ </style>
48
+ </head>
49
+
50
+ <body>
51
+ <!-- This file lives in public/500.html -->
52
+ <div class="dialog">
53
+ <h1>We're sorry, but something went wrong.</h1>
54
+ </div>
55
+ <p>If you are the application owner check the logs for more information.</p>
56
+ </body>
57
+ </html>
File without changes
@@ -0,0 +1,12 @@
1
+ require 'test_helper'
2
+
3
+ class MixpanelTrackerTest < ActiveSupport::TestCase
4
+ test "truth" do
5
+ assert_kind_of Module, MixpanelTracker
6
+ end
7
+
8
+ test "truth2" do
9
+ c = ApplicationController.new
10
+ assert_equal c.mixpanel.track("Lol", {}), true
11
+ end
12
+ end
@@ -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
metadata ADDED
@@ -0,0 +1,156 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: mixpanel_tracker
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Anton Zhavoronkov
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-01-19 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rails
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ~>
18
+ - !ruby/object:Gem::Version
19
+ version: 4.0.0
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: 4.0.0
27
+ - !ruby/object:Gem::Dependency
28
+ name: sqlite3
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - '>='
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - '>='
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ description: Allows you to track mixpanel events
42
+ email:
43
+ - anton.zhavoronkov@gmail.com
44
+ executables: []
45
+ extensions: []
46
+ extra_rdoc_files: []
47
+ files:
48
+ - lib/generators/mixpanel_tracker/mixpanel_tracker_generator.rb
49
+ - lib/generators/mixpanel_tracker/templates/initializer.rb
50
+ - lib/mixpanel_tracker/configuration.rb
51
+ - lib/mixpanel_tracker/controller_helpers.rb
52
+ - lib/mixpanel_tracker/event.rb
53
+ - lib/mixpanel_tracker/railtie.rb
54
+ - lib/mixpanel_tracker/tracker.rb
55
+ - lib/mixpanel_tracker/version.rb
56
+ - lib/mixpanel_tracker/view_helpers.rb
57
+ - lib/mixpanel_tracker.rb
58
+ - lib/tasks/mixpanel_tracker_tasks.rake
59
+ - Rakefile
60
+ - README.rdoc
61
+ - test/dummy/app/assets/javascripts/application.js
62
+ - test/dummy/app/assets/stylesheets/application.css
63
+ - test/dummy/app/controllers/application_controller.rb
64
+ - test/dummy/app/helpers/application_helper.rb
65
+ - test/dummy/app/views/layouts/application.html.erb
66
+ - test/dummy/bin/bundle
67
+ - test/dummy/bin/rails
68
+ - test/dummy/bin/rake
69
+ - test/dummy/config/application.rb
70
+ - test/dummy/config/boot.rb
71
+ - test/dummy/config/database.yml
72
+ - test/dummy/config/environment.rb
73
+ - test/dummy/config/environments/development.rb
74
+ - test/dummy/config/environments/production.rb
75
+ - test/dummy/config/environments/test.rb
76
+ - test/dummy/config/initializers/backtrace_silencers.rb
77
+ - test/dummy/config/initializers/filter_parameter_logging.rb
78
+ - test/dummy/config/initializers/inflections.rb
79
+ - test/dummy/config/initializers/mime_types.rb
80
+ - test/dummy/config/initializers/secret_token.rb
81
+ - test/dummy/config/initializers/session_store.rb
82
+ - test/dummy/config/initializers/wrap_parameters.rb
83
+ - test/dummy/config/locales/en.yml
84
+ - test/dummy/config/routes.rb
85
+ - test/dummy/config.ru
86
+ - test/dummy/db/test.sqlite3
87
+ - test/dummy/log/test.log
88
+ - test/dummy/public/404.html
89
+ - test/dummy/public/422.html
90
+ - test/dummy/public/500.html
91
+ - test/dummy/public/favicon.ico
92
+ - test/dummy/Rakefile
93
+ - test/dummy/README.rdoc
94
+ - test/mixpanel_tracker_test.rb
95
+ - test/test_helper.rb
96
+ homepage: https://github.com/AntonZh/mixpanel_tracker
97
+ licenses:
98
+ - MIT
99
+ metadata: {}
100
+ post_install_message:
101
+ rdoc_options: []
102
+ require_paths:
103
+ - lib
104
+ required_ruby_version: !ruby/object:Gem::Requirement
105
+ requirements:
106
+ - - '>='
107
+ - !ruby/object:Gem::Version
108
+ version: '0'
109
+ required_rubygems_version: !ruby/object:Gem::Requirement
110
+ requirements:
111
+ - - '>='
112
+ - !ruby/object:Gem::Version
113
+ version: '0'
114
+ requirements: []
115
+ rubyforge_project:
116
+ rubygems_version: 2.0.6
117
+ signing_key:
118
+ specification_version: 4
119
+ summary: Events tracker for Rails
120
+ test_files:
121
+ - test/dummy/app/assets/javascripts/application.js
122
+ - test/dummy/app/assets/stylesheets/application.css
123
+ - test/dummy/app/controllers/application_controller.rb
124
+ - test/dummy/app/helpers/application_helper.rb
125
+ - test/dummy/app/views/layouts/application.html.erb
126
+ - test/dummy/bin/bundle
127
+ - test/dummy/bin/rails
128
+ - test/dummy/bin/rake
129
+ - test/dummy/config/application.rb
130
+ - test/dummy/config/boot.rb
131
+ - test/dummy/config/database.yml
132
+ - test/dummy/config/environment.rb
133
+ - test/dummy/config/environments/development.rb
134
+ - test/dummy/config/environments/production.rb
135
+ - test/dummy/config/environments/test.rb
136
+ - test/dummy/config/initializers/backtrace_silencers.rb
137
+ - test/dummy/config/initializers/filter_parameter_logging.rb
138
+ - test/dummy/config/initializers/inflections.rb
139
+ - test/dummy/config/initializers/mime_types.rb
140
+ - test/dummy/config/initializers/secret_token.rb
141
+ - test/dummy/config/initializers/session_store.rb
142
+ - test/dummy/config/initializers/wrap_parameters.rb
143
+ - test/dummy/config/locales/en.yml
144
+ - test/dummy/config/routes.rb
145
+ - test/dummy/config.ru
146
+ - test/dummy/db/test.sqlite3
147
+ - test/dummy/log/test.log
148
+ - test/dummy/public/404.html
149
+ - test/dummy/public/422.html
150
+ - test/dummy/public/500.html
151
+ - test/dummy/public/favicon.ico
152
+ - test/dummy/Rakefile
153
+ - test/dummy/README.rdoc
154
+ - test/mixpanel_tracker_test.rb
155
+ - test/test_helper.rb
156
+ has_rdoc: