lookout-vanity 1.8.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (128) hide show
  1. data/.autotest +22 -0
  2. data/.gitignore +10 -0
  3. data/.rvmrc +3 -0
  4. data/.travis.yml +15 -0
  5. data/Appraisals +15 -0
  6. data/CHANGELOG +381 -0
  7. data/Gemfile +25 -0
  8. data/Gemfile.lock +110 -0
  9. data/MIT-LICENSE +21 -0
  10. data/README.rdoc +109 -0
  11. data/Rakefile +169 -0
  12. data/bin/vanity +16 -0
  13. data/doc/_config.yml +2 -0
  14. data/doc/_layouts/_header.html +34 -0
  15. data/doc/_layouts/page.html +47 -0
  16. data/doc/_metrics.textile +12 -0
  17. data/doc/ab_testing.textile +210 -0
  18. data/doc/configuring.textile +45 -0
  19. data/doc/contributing.textile +93 -0
  20. data/doc/credits.textile +23 -0
  21. data/doc/css/page.css +83 -0
  22. data/doc/css/print.css +43 -0
  23. data/doc/css/syntax.css +7 -0
  24. data/doc/email.textile +129 -0
  25. data/doc/experimental.textile +31 -0
  26. data/doc/faq.textile +8 -0
  27. data/doc/identity.textile +43 -0
  28. data/doc/images/ab_in_dashboard.png +0 -0
  29. data/doc/images/clear_winner.png +0 -0
  30. data/doc/images/price_options.png +0 -0
  31. data/doc/images/sidebar_test.png +0 -0
  32. data/doc/images/signup_metric.png +0 -0
  33. data/doc/images/vanity.png +0 -0
  34. data/doc/index.textile +91 -0
  35. data/doc/metrics.textile +231 -0
  36. data/doc/rails.textile +89 -0
  37. data/doc/site.js +27 -0
  38. data/gemfiles/rails3.gemfile +20 -0
  39. data/gemfiles/rails3.gemfile.lock +135 -0
  40. data/gemfiles/rails31.gemfile +20 -0
  41. data/gemfiles/rails31.gemfile.lock +146 -0
  42. data/gemfiles/rails32.gemfile +20 -0
  43. data/gemfiles/rails32.gemfile.lock +144 -0
  44. data/generators/templates/vanity_migration.rb +53 -0
  45. data/generators/vanity_generator.rb +8 -0
  46. data/lib/generators/templates/vanity_migration.rb +53 -0
  47. data/lib/generators/vanity_generator.rb +15 -0
  48. data/lib/vanity.rb +36 -0
  49. data/lib/vanity/adapters/abstract_adapter.rb +145 -0
  50. data/lib/vanity/adapters/active_record_adapter.rb +263 -0
  51. data/lib/vanity/adapters/mock_adapter.rb +157 -0
  52. data/lib/vanity/adapters/mongodb_adapter.rb +178 -0
  53. data/lib/vanity/adapters/redis_adapter.rb +160 -0
  54. data/lib/vanity/backport.rb +26 -0
  55. data/lib/vanity/commands/list.rb +21 -0
  56. data/lib/vanity/commands/report.rb +64 -0
  57. data/lib/vanity/commands/upgrade.rb +34 -0
  58. data/lib/vanity/experiment/ab_test.rb +582 -0
  59. data/lib/vanity/experiment/base.rb +218 -0
  60. data/lib/vanity/frameworks.rb +16 -0
  61. data/lib/vanity/frameworks/rails.rb +325 -0
  62. data/lib/vanity/helpers.rb +71 -0
  63. data/lib/vanity/images/x.gif +0 -0
  64. data/lib/vanity/metric/active_record.rb +93 -0
  65. data/lib/vanity/metric/base.rb +244 -0
  66. data/lib/vanity/metric/google_analytics.rb +83 -0
  67. data/lib/vanity/metric/remote.rb +53 -0
  68. data/lib/vanity/playground.rb +408 -0
  69. data/lib/vanity/templates/_ab_test.erb +28 -0
  70. data/lib/vanity/templates/_experiment.erb +5 -0
  71. data/lib/vanity/templates/_experiments.erb +7 -0
  72. data/lib/vanity/templates/_metric.erb +14 -0
  73. data/lib/vanity/templates/_metrics.erb +13 -0
  74. data/lib/vanity/templates/_report.erb +27 -0
  75. data/lib/vanity/templates/_vanity.js.erb +20 -0
  76. data/lib/vanity/templates/flot.min.js +1 -0
  77. data/lib/vanity/templates/jquery.min.js +19 -0
  78. data/lib/vanity/templates/vanity.css +26 -0
  79. data/lib/vanity/templates/vanity.js +82 -0
  80. data/lib/vanity/version.rb +11 -0
  81. data/lookout-vanity.gemspec +26 -0
  82. data/test/adapters/redis_adapter_test.rb +17 -0
  83. data/test/dummy/Rakefile +7 -0
  84. data/test/dummy/app/controllers/application_controller.rb +3 -0
  85. data/test/dummy/app/helpers/application_helper.rb +2 -0
  86. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  87. data/test/dummy/config.ru +4 -0
  88. data/test/dummy/config/application.rb +44 -0
  89. data/test/dummy/config/boot.rb +10 -0
  90. data/test/dummy/config/database.yml +5 -0
  91. data/test/dummy/config/environment.rb +5 -0
  92. data/test/dummy/config/environments/development.rb +26 -0
  93. data/test/dummy/config/environments/production.rb +49 -0
  94. data/test/dummy/config/environments/test.rb +35 -0
  95. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  96. data/test/dummy/config/initializers/inflections.rb +10 -0
  97. data/test/dummy/config/initializers/mime_types.rb +5 -0
  98. data/test/dummy/config/initializers/secret_token.rb +7 -0
  99. data/test/dummy/config/initializers/session_store.rb +8 -0
  100. data/test/dummy/config/locales/en.yml +5 -0
  101. data/test/dummy/config/routes.rb +58 -0
  102. data/test/dummy/public/favicon.ico +0 -0
  103. data/test/dummy/public/stylesheets/.gitkeep +0 -0
  104. data/test/dummy/script/rails +6 -0
  105. data/test/experiment/ab_test.rb +859 -0
  106. data/test/experiment/base_test.rb +150 -0
  107. data/test/experiments/age_and_zipcode.rb +19 -0
  108. data/test/experiments/metrics/cheers.rb +3 -0
  109. data/test/experiments/metrics/signups.rb +2 -0
  110. data/test/experiments/metrics/yawns.rb +3 -0
  111. data/test/experiments/null_abc.rb +5 -0
  112. data/test/metric/active_record_test.rb +307 -0
  113. data/test/metric/base_test.rb +293 -0
  114. data/test/metric/google_analytics_test.rb +104 -0
  115. data/test/metric/remote_test.rb +109 -0
  116. data/test/myapp/app/controllers/application_controller.rb +2 -0
  117. data/test/myapp/app/controllers/main_controller.rb +7 -0
  118. data/test/myapp/config/boot.rb +110 -0
  119. data/test/myapp/config/environment.rb +10 -0
  120. data/test/myapp/config/environments/production.rb +0 -0
  121. data/test/myapp/config/routes.rb +3 -0
  122. data/test/passenger_test.rb +45 -0
  123. data/test/playground_test.rb +26 -0
  124. data/test/rails_dashboard_test.rb +37 -0
  125. data/test/rails_helper_test.rb +38 -0
  126. data/test/rails_test.rb +412 -0
  127. data/test/test_helper.rb +168 -0
  128. metadata +268 -0
@@ -0,0 +1,168 @@
1
+ GC.disable
2
+ $LOAD_PATH.delete_if { |path| path[/gems\/vanity-\d/] }
3
+ $LOAD_PATH.unshift File.expand_path("../lib", File.dirname(__FILE__))
4
+ ENV["RACK_ENV"] = "test"
5
+ ENV["DB"] ||= "redis"
6
+
7
+ require "test/unit"
8
+ require "mocha"
9
+ require "shoulda"
10
+ require "action_controller"
11
+ require "action_controller/test_case"
12
+ require "action_view/test_case"
13
+ require "active_record"
14
+
15
+ begin
16
+ require "rails"
17
+ rescue LoadError
18
+ end
19
+
20
+ if defined?(Rails::Railtie)
21
+ require File.expand_path("../dummy/config/environment.rb", __FILE__)
22
+ require "rails/test_help"
23
+ else
24
+ RAILS_ROOT = File.expand_path("..")
25
+ require "initializer"
26
+ Rails.configuration = Rails::Configuration.new
27
+
28
+ ActionController::Routing::Routes.draw do |map|
29
+ map.connect ':controller/:action/:id'
30
+ end
31
+ require "phusion_passenger/events"
32
+ end
33
+
34
+ require "lib/vanity"
35
+ require "timecop"
36
+ require "webmock/test_unit"
37
+
38
+ #Do to load order differences in Rails boot and test requires we have to manually
39
+ #require these
40
+ require 'vanity/frameworks/rails'
41
+ Vanity::Rails.load!
42
+
43
+ if $VERBOSE
44
+ $logger = Logger.new(STDOUT)
45
+ $logger.level = Logger::DEBUG
46
+ end
47
+
48
+
49
+ class Test::Unit::TestCase
50
+ include WebMock::API
51
+
52
+ # We go destructive on the database at the end of each run, so make sure we
53
+ # don't use databases you care about. For Redis, we pick database 15
54
+ # (default is 0).
55
+ DATABASE = {
56
+ "redis"=>"redis://localhost/15",
57
+ "mongodb"=>"mongodb://localhost/vanity",
58
+ "mysql"=> { "adapter"=>"active_record", "active_record_adapter"=>"mysql", "database"=>"vanity_test" },
59
+ "postgres"=> { "adapter"=>"active_record", "active_record_adapter"=>"postgresql", "database"=>"vanity_test", "username"=>"postgres" },
60
+ "mock"=>"mock:/"
61
+ }[ENV["DB"]] or raise "No support yet for #{ENV["DB"]}"
62
+
63
+ def rails3?
64
+ defined?(Rails::Railtie)
65
+ end
66
+
67
+ def setup
68
+ FileUtils.mkpath "tmp/experiments/metrics"
69
+ new_playground
70
+ end
71
+
72
+ # Call this on teardown. It wipes put the playground and any state held in it
73
+ # (mostly experiments), resets vanity ID, and clears database of all experiments.
74
+ def nuke_playground
75
+ Vanity.playground.connection.flushdb
76
+ new_playground
77
+ end
78
+
79
+ # Call this if you need a new playground, e.g. to re-define the same experiment,
80
+ # or reload an experiment (saved by the previous playground).
81
+ def new_playground
82
+ Vanity.playground = Vanity::Playground.new(:logger=>$logger, :load_path=>"tmp/experiments")
83
+ Vanity.playground.establish_connection DATABASE
84
+ end
85
+
86
+ # Defines the specified metrics (one or more names). Returns metric, or array
87
+ # of metric (if more than one argument).
88
+ def metric(*names)
89
+ metrics = names.map do |name|
90
+ id = name.to_s.downcase.gsub(/\W+/, '_').to_sym
91
+ Vanity.playground.metrics[id] ||= Vanity::Metric.new(Vanity.playground, name)
92
+ end
93
+ names.size == 1 ? metrics.first : metrics
94
+ end
95
+
96
+ # Defines an A/B experiment.
97
+ def new_ab_test(name, &block)
98
+ id = name.to_s.downcase.gsub(/\W/, "_").to_sym
99
+ experiment = Vanity::Experiment::AbTest.new(Vanity.playground, id, name)
100
+ experiment.instance_eval &block
101
+ experiment.save
102
+ Vanity.playground.experiments[id] = experiment
103
+ end
104
+
105
+ # Returns named experiment.
106
+ def experiment(name)
107
+ Vanity.playground.experiment(name)
108
+ end
109
+
110
+ def today
111
+ @today ||= Date.today
112
+ end
113
+
114
+ def not_collecting!
115
+ Vanity.playground.collecting = false
116
+ Vanity.playground.stubs(:connection).returns(stub(:flushdb=>nil))
117
+ end
118
+
119
+ def teardown
120
+ Vanity.context = nil
121
+ FileUtils.rm_rf "tmp"
122
+ Vanity.playground.connection.flushdb if Vanity.playground.connected?
123
+ WebMock.reset!
124
+ end
125
+
126
+ end
127
+
128
+
129
+ if ENV["DB"] == "postgres"
130
+ ActiveRecord::Base.establish_connection :adapter=>"postgresql", :database=>"vanity_test"
131
+ else
132
+ ActiveRecord::Base.establish_connection :adapter=>"mysql", :database=>"vanity_test"
133
+ end
134
+ ActiveRecord::Base.logger = $logger
135
+
136
+ if ENV["DB"] == "mysql" || ENV["DB"] == "postgres"
137
+ require "generators/templates/vanity_migration"
138
+ VanityMigration.down rescue nil
139
+ VanityMigration.up
140
+ end
141
+
142
+
143
+ class Array
144
+ # Not in Ruby 1.8.6.
145
+ unless method_defined?(:shuffle)
146
+ def shuffle
147
+ copy = clone
148
+ Array.new(size) { copy.delete_at(Kernel.rand(copy.size)) }
149
+ end
150
+ end
151
+ end
152
+
153
+
154
+ # Source: http://gist.github.com/25455
155
+ def context(*args, &block)
156
+ return super unless (name = args.first) && block
157
+ parent = Class === self ? self : (defined?(ActiveSupport::TestCase) ? ActiveSupport::TestCase : Test::Unit::TestCase)
158
+ klass = Class.new(parent) do
159
+ def self.test(name, &block)
160
+ define_method("test_#{name.gsub(/\W/,'_')}", &block) if block
161
+ end
162
+ def self.xtest(*args) end
163
+ def self.setup(&block) define_method(:setup) { super() ; instance_eval &block } end
164
+ def self.teardown(&block) define_method(:teardown) { super() ; instance_eval &block } end
165
+ end
166
+ parent.const_set name.split(/\W+/).map(&:capitalize).join, klass
167
+ klass.class_eval &block
168
+ end
metadata ADDED
@@ -0,0 +1,268 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: lookout-vanity
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.8.2
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Assaf Arkin
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2012-10-08 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: redis
16
+ requirement: !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ~>
20
+ - !ruby/object:Gem::Version
21
+ version: '2.0'
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: '2.0'
30
+ - !ruby/object:Gem::Dependency
31
+ name: redis-namespace
32
+ requirement: !ruby/object:Gem::Requirement
33
+ none: false
34
+ requirements:
35
+ - - ~>
36
+ - !ruby/object:Gem::Version
37
+ version: 1.0.0
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: 1.0.0
46
+ description: Mirror, mirror on the wall ...
47
+ email: assaf@labnotes.org
48
+ executables:
49
+ - vanity
50
+ extensions: []
51
+ extra_rdoc_files:
52
+ - README.rdoc
53
+ - CHANGELOG
54
+ files:
55
+ - .autotest
56
+ - .gitignore
57
+ - .rvmrc
58
+ - .travis.yml
59
+ - Appraisals
60
+ - CHANGELOG
61
+ - Gemfile
62
+ - Gemfile.lock
63
+ - MIT-LICENSE
64
+ - README.rdoc
65
+ - Rakefile
66
+ - bin/vanity
67
+ - doc/_config.yml
68
+ - doc/_layouts/_header.html
69
+ - doc/_layouts/page.html
70
+ - doc/_metrics.textile
71
+ - doc/ab_testing.textile
72
+ - doc/configuring.textile
73
+ - doc/contributing.textile
74
+ - doc/credits.textile
75
+ - doc/css/page.css
76
+ - doc/css/print.css
77
+ - doc/css/syntax.css
78
+ - doc/email.textile
79
+ - doc/experimental.textile
80
+ - doc/faq.textile
81
+ - doc/identity.textile
82
+ - doc/images/ab_in_dashboard.png
83
+ - doc/images/clear_winner.png
84
+ - doc/images/price_options.png
85
+ - doc/images/sidebar_test.png
86
+ - doc/images/signup_metric.png
87
+ - doc/images/vanity.png
88
+ - doc/index.textile
89
+ - doc/metrics.textile
90
+ - doc/rails.textile
91
+ - doc/site.js
92
+ - gemfiles/rails3.gemfile
93
+ - gemfiles/rails3.gemfile.lock
94
+ - gemfiles/rails31.gemfile
95
+ - gemfiles/rails31.gemfile.lock
96
+ - gemfiles/rails32.gemfile
97
+ - gemfiles/rails32.gemfile.lock
98
+ - generators/templates/vanity_migration.rb
99
+ - generators/vanity_generator.rb
100
+ - lib/generators/templates/vanity_migration.rb
101
+ - lib/generators/vanity_generator.rb
102
+ - lib/vanity.rb
103
+ - lib/vanity/adapters/abstract_adapter.rb
104
+ - lib/vanity/adapters/active_record_adapter.rb
105
+ - lib/vanity/adapters/mock_adapter.rb
106
+ - lib/vanity/adapters/mongodb_adapter.rb
107
+ - lib/vanity/adapters/redis_adapter.rb
108
+ - lib/vanity/backport.rb
109
+ - lib/vanity/commands/list.rb
110
+ - lib/vanity/commands/report.rb
111
+ - lib/vanity/commands/upgrade.rb
112
+ - lib/vanity/experiment/ab_test.rb
113
+ - lib/vanity/experiment/base.rb
114
+ - lib/vanity/frameworks.rb
115
+ - lib/vanity/frameworks/rails.rb
116
+ - lib/vanity/helpers.rb
117
+ - lib/vanity/images/x.gif
118
+ - lib/vanity/metric/active_record.rb
119
+ - lib/vanity/metric/base.rb
120
+ - lib/vanity/metric/google_analytics.rb
121
+ - lib/vanity/metric/remote.rb
122
+ - lib/vanity/playground.rb
123
+ - lib/vanity/templates/_ab_test.erb
124
+ - lib/vanity/templates/_experiment.erb
125
+ - lib/vanity/templates/_experiments.erb
126
+ - lib/vanity/templates/_metric.erb
127
+ - lib/vanity/templates/_metrics.erb
128
+ - lib/vanity/templates/_report.erb
129
+ - lib/vanity/templates/_vanity.js.erb
130
+ - lib/vanity/templates/flot.min.js
131
+ - lib/vanity/templates/jquery.min.js
132
+ - lib/vanity/templates/vanity.css
133
+ - lib/vanity/templates/vanity.js
134
+ - lib/vanity/version.rb
135
+ - lookout-vanity.gemspec
136
+ - test/adapters/redis_adapter_test.rb
137
+ - test/dummy/Rakefile
138
+ - test/dummy/app/controllers/application_controller.rb
139
+ - test/dummy/app/helpers/application_helper.rb
140
+ - test/dummy/app/views/layouts/application.html.erb
141
+ - test/dummy/config.ru
142
+ - test/dummy/config/application.rb
143
+ - test/dummy/config/boot.rb
144
+ - test/dummy/config/database.yml
145
+ - test/dummy/config/environment.rb
146
+ - test/dummy/config/environments/development.rb
147
+ - test/dummy/config/environments/production.rb
148
+ - test/dummy/config/environments/test.rb
149
+ - test/dummy/config/initializers/backtrace_silencers.rb
150
+ - test/dummy/config/initializers/inflections.rb
151
+ - test/dummy/config/initializers/mime_types.rb
152
+ - test/dummy/config/initializers/secret_token.rb
153
+ - test/dummy/config/initializers/session_store.rb
154
+ - test/dummy/config/locales/en.yml
155
+ - test/dummy/config/routes.rb
156
+ - test/dummy/log/development.log
157
+ - test/dummy/log/production.log
158
+ - test/dummy/log/server.log
159
+ - test/dummy/public/favicon.ico
160
+ - test/dummy/public/stylesheets/.gitkeep
161
+ - test/dummy/script/rails
162
+ - test/experiment/ab_test.rb
163
+ - test/experiment/base_test.rb
164
+ - test/experiments/age_and_zipcode.rb
165
+ - test/experiments/metrics/cheers.rb
166
+ - test/experiments/metrics/signups.rb
167
+ - test/experiments/metrics/yawns.rb
168
+ - test/experiments/null_abc.rb
169
+ - test/metric/active_record_test.rb
170
+ - test/metric/base_test.rb
171
+ - test/metric/google_analytics_test.rb
172
+ - test/metric/remote_test.rb
173
+ - test/myapp/app/controllers/application_controller.rb
174
+ - test/myapp/app/controllers/main_controller.rb
175
+ - test/myapp/config/boot.rb
176
+ - test/myapp/config/environment.rb
177
+ - test/myapp/config/environments/production.rb
178
+ - test/myapp/config/routes.rb
179
+ - test/passenger_test.rb
180
+ - test/playground_test.rb
181
+ - test/rails_dashboard_test.rb
182
+ - test/rails_helper_test.rb
183
+ - test/rails_test.rb
184
+ - test/test_helper.rb
185
+ homepage: http://vanity.labnotes.org
186
+ licenses: []
187
+ post_install_message: To get started run vanity --help
188
+ rdoc_options:
189
+ - --title
190
+ - Vanity 1.8.2
191
+ - --main
192
+ - README.rdoc
193
+ - --webcvs
194
+ - http://github.com/assaf/lookout-vanity
195
+ require_paths:
196
+ - lib
197
+ required_ruby_version: !ruby/object:Gem::Requirement
198
+ none: false
199
+ requirements:
200
+ - - ! '>='
201
+ - !ruby/object:Gem::Version
202
+ version: 1.8.7
203
+ required_rubygems_version: !ruby/object:Gem::Requirement
204
+ none: false
205
+ requirements:
206
+ - - ! '>='
207
+ - !ruby/object:Gem::Version
208
+ version: '0'
209
+ segments:
210
+ - 0
211
+ hash: -1082075672334141830
212
+ requirements: []
213
+ rubyforge_project:
214
+ rubygems_version: 1.8.24
215
+ signing_key:
216
+ specification_version: 3
217
+ summary: Experience Driven Development framework for Ruby
218
+ test_files:
219
+ - test/adapters/redis_adapter_test.rb
220
+ - test/dummy/Rakefile
221
+ - test/dummy/app/controllers/application_controller.rb
222
+ - test/dummy/app/helpers/application_helper.rb
223
+ - test/dummy/app/views/layouts/application.html.erb
224
+ - test/dummy/config.ru
225
+ - test/dummy/config/application.rb
226
+ - test/dummy/config/boot.rb
227
+ - test/dummy/config/database.yml
228
+ - test/dummy/config/environment.rb
229
+ - test/dummy/config/environments/development.rb
230
+ - test/dummy/config/environments/production.rb
231
+ - test/dummy/config/environments/test.rb
232
+ - test/dummy/config/initializers/backtrace_silencers.rb
233
+ - test/dummy/config/initializers/inflections.rb
234
+ - test/dummy/config/initializers/mime_types.rb
235
+ - test/dummy/config/initializers/secret_token.rb
236
+ - test/dummy/config/initializers/session_store.rb
237
+ - test/dummy/config/locales/en.yml
238
+ - test/dummy/config/routes.rb
239
+ - test/dummy/log/development.log
240
+ - test/dummy/log/production.log
241
+ - test/dummy/log/server.log
242
+ - test/dummy/public/favicon.ico
243
+ - test/dummy/public/stylesheets/.gitkeep
244
+ - test/dummy/script/rails
245
+ - test/experiment/ab_test.rb
246
+ - test/experiment/base_test.rb
247
+ - test/experiments/age_and_zipcode.rb
248
+ - test/experiments/metrics/cheers.rb
249
+ - test/experiments/metrics/signups.rb
250
+ - test/experiments/metrics/yawns.rb
251
+ - test/experiments/null_abc.rb
252
+ - test/metric/active_record_test.rb
253
+ - test/metric/base_test.rb
254
+ - test/metric/google_analytics_test.rb
255
+ - test/metric/remote_test.rb
256
+ - test/myapp/app/controllers/application_controller.rb
257
+ - test/myapp/app/controllers/main_controller.rb
258
+ - test/myapp/config/boot.rb
259
+ - test/myapp/config/environment.rb
260
+ - test/myapp/config/environments/production.rb
261
+ - test/myapp/config/routes.rb
262
+ - test/passenger_test.rb
263
+ - test/playground_test.rb
264
+ - test/rails_dashboard_test.rb
265
+ - test/rails_helper_test.rb
266
+ - test/rails_test.rb
267
+ - test/test_helper.rb
268
+ has_rdoc: