vanity 1.9.3 → 2.0.0.beta

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 (54) hide show
  1. data/.gitignore +0 -1
  2. data/.travis.yml +2 -53
  3. data/Appraisals +3 -12
  4. data/CHANGELOG +1 -5
  5. data/Gemfile +0 -10
  6. data/Gemfile.lock +3 -38
  7. data/README.rdoc +2 -13
  8. data/Rakefile +7 -13
  9. data/bin/vanity +0 -1
  10. data/doc/rails.textile +0 -12
  11. data/gemfiles/rails32.gemfile +2 -4
  12. data/gemfiles/rails32.gemfile.lock +6 -14
  13. data/gemfiles/rails4.gemfile +1 -4
  14. data/gemfiles/rails4.gemfile.lock +5 -15
  15. data/lib/vanity/adapters/active_record_adapter.rb +14 -10
  16. data/lib/vanity/experiment/ab_test.rb +1 -1
  17. data/lib/vanity/frameworks/rails.rb +11 -17
  18. data/lib/vanity/frameworks.rb +3 -10
  19. data/lib/vanity/metric/active_record.rb +20 -19
  20. data/lib/vanity/playground.rb +1 -3
  21. data/lib/vanity/version.rb +1 -1
  22. data/test/adapters/redis_adapter_test.rb +26 -27
  23. data/test/autoconnect_test.rb +19 -17
  24. data/test/cli_test.rb +19 -26
  25. data/test/experiment/ab_test.rb +2 -15
  26. data/test/experiment/base_test.rb +18 -22
  27. data/test/frameworks/rails/action_controller_test.rb +184 -0
  28. data/test/frameworks/rails/action_mailer_test.rb +65 -0
  29. data/test/{rails_helper_test.rb → frameworks/rails/action_view_test.rb} +1 -1
  30. data/test/frameworks/rails/rails_test.rb +285 -0
  31. data/test/helper_test.rb +13 -10
  32. data/test/metric/active_record_test.rb +50 -66
  33. data/test/metric/base_test.rb +39 -41
  34. data/test/metric/google_analytics_test.rb +13 -16
  35. data/test/metric/remote_test.rb +18 -19
  36. data/test/playground_test.rb +1 -1
  37. data/test/test_helper.rb +25 -43
  38. data/test/{rails_dashboard_test.rb → web/rails/dashboard_test.rb} +2 -1
  39. data/vanity.gemspec +3 -2
  40. metadata +33 -33
  41. data/gemfiles/rails3.gemfile +0 -32
  42. data/gemfiles/rails3.gemfile.lock +0 -172
  43. data/gemfiles/rails31.gemfile +0 -32
  44. data/gemfiles/rails31.gemfile.lock +0 -181
  45. data/generators/templates/vanity_migration.rb +0 -54
  46. data/generators/vanity_generator.rb +0 -8
  47. data/test/myapp/app/controllers/application_controller.rb +0 -2
  48. data/test/myapp/app/controllers/main_controller.rb +0 -7
  49. data/test/myapp/config/boot.rb +0 -110
  50. data/test/myapp/config/environment.rb +0 -10
  51. data/test/myapp/config/environments/production.rb +0 -0
  52. data/test/myapp/config/routes.rb +0 -3
  53. data/test/passenger_test.rb +0 -52
  54. data/test/rails_test.rb +0 -554
@@ -1,8 +1,7 @@
1
- require "test/test_helper"
1
+ require "test_helper"
2
2
 
3
-
4
- context "Remote metrics" do
5
- setup do
3
+ describe "Remote metrics" do
4
+ before do
6
5
  FileUtils.mkpath "tmp/config"
7
6
  File.open "tmp/config/vanity.yml", "w" do |f|
8
7
  f.write <<-RUBY
@@ -16,11 +15,11 @@ context "Remote metrics" do
16
15
  end
17
16
  end
18
17
 
19
- test "load from configuration file" do
18
+ it "loads from configuration file" do
20
19
  assert Vanity.playground.metrics[:sandbox]
21
20
  end
22
21
 
23
- test "create remote metric from configuration file" do
22
+ it "creates remote metric from configuration file" do
24
23
  stub_request :post, /vanitydash/
25
24
  metric(:sandbox).track!
26
25
  assert_requested :post, /api\.vanitydash\.com/
@@ -28,46 +27,46 @@ context "Remote metrics" do
28
27
  end
29
28
 
30
29
 
31
- context "Remote send" do
32
- setup do
30
+ describe "Remote send" do
31
+ before do
33
32
  @metric = Vanity::Metric.new(Vanity.playground, :sandbox)
34
33
  @metric.remote "http://api.vanitydash.com/metrics/sandbox"
35
34
  Vanity.playground.metrics[:sandbox] = @metric
36
35
  stub_request :post, /vanitydash/
37
36
  end
38
37
 
39
- test "remote send in sequence" do
38
+ it "remote send in sequence" do
40
39
  Vanity.playground.track! :sandbox
41
40
  Vanity.playground.track! :sandbox
42
41
  assert_requested(:post, "http://api.vanitydash.com/metrics/sandbox", :times=>2)
43
42
  end
44
43
 
45
- test "remote sends url-encoded data" do
44
+ it "remote sends url-encoded data" do
46
45
  Vanity.playground.track! :sandbox, 12
47
46
  assert_requested(:post, /api/) { |request| request.headers["Content-Type"] == "application/x-www-form-urlencoded" }
48
47
  end
49
48
 
50
- test "remote sends metric identifier" do
49
+ it "remote sends metric identifier" do
51
50
  Vanity.playground.track! :sandbox, 12
52
51
  assert_requested(:post, /api/) { |request| Rack::Utils.parse_query(request.body)["metric"] == "sandbox" }
53
52
  end
54
53
 
55
- test "remote sends RFC 2616 compliant time stamp" do
54
+ it "remote sends RFC 2616 compliant time stamp" do
56
55
  Vanity.playground.track! :sandbox, 12
57
56
  assert_requested(:post, /api/) { |request| Time.httpdate(Rack::Utils.parse_query(request.body)["timestamp"]) }
58
57
  end
59
58
 
60
- test "remote sends array of values" do
59
+ it "remote sends array of values" do
61
60
  Vanity.playground.track! :sandbox, [1,2,3]
62
61
  assert_requested(:post, /api/) { |request| Rack::Utils.parse_query(request.body)["values[]"] == %w{1 2 3} }
63
62
  end
64
63
 
65
- test "remote sends default of 1" do
64
+ it "remote sends default of 1" do
66
65
  Vanity.playground.track! :sandbox
67
66
  assert_requested(:post, /api/) { |request| Rack::Utils.parse_query(request.body)["values[]"] == "1" }
68
67
  end
69
68
 
70
- test "remote sends current identity" do
69
+ it "remote sends current identity" do
71
70
  Vanity.context = Object.new
72
71
  class << Vanity.context
73
72
  def vanity_identity
@@ -78,13 +77,13 @@ context "Remote send" do
78
77
  assert_requested(:post, /api/) { |request| Rack::Utils.parse_query(request.body)["identity"] == "xkcd" }
79
78
  end
80
79
 
81
- test "remote sends with additional query parameters" do
80
+ it "remote sends with additional query parameters" do
82
81
  @metric.remote "http://api.vanitydash.com/metrics/sandbox?ask=receive"
83
82
  Vanity.playground.track! :sandbox, 12
84
83
  assert_requested(:post, /api/) { |request| Rack::Utils.parse_query(request.body)["ask"] == "receive" }
85
84
  end
86
85
 
87
- test "remote send handles standard error" do
86
+ it "remote send handles standard error" do
88
87
  stub_request(:post, /api/).to_raise(StandardError)
89
88
  Vanity.playground.track! :sandbox
90
89
  stub_request(:post, /api/)
@@ -92,7 +91,7 @@ context "Remote send" do
92
91
  assert_requested(:post, /api/, :times=>2)
93
92
  end
94
93
 
95
- test "remote send handles timeout error" do
94
+ it "remote send handles timeout error" do
96
95
  stub_request(:post, /api/).to_timeout
97
96
  Vanity.playground.track! :sandbox
98
97
  stub_request(:post, /api/)
@@ -100,7 +99,7 @@ context "Remote send" do
100
99
  assert_requested(:post, /api/, :times=>2)
101
100
  end
102
101
 
103
- test "remote does not send when metrics disabled" do
102
+ it "remote does not send when metrics disabled" do
104
103
  not_collecting!
105
104
  Vanity.playground.track! :sandbox
106
105
  Vanity.playground.track! :sandbox
@@ -1,4 +1,4 @@
1
- require "test/test_helper"
1
+ require "test_helper"
2
2
 
3
3
  class PlaygroundTest < Test::Unit::TestCase
4
4
 
data/test/test_helper.rb CHANGED
@@ -1,12 +1,11 @@
1
- GC.disable
2
1
  $LOAD_PATH.delete_if { |path| path[/gems\/vanity-\d/] }
3
2
  $LOAD_PATH.unshift File.expand_path("../lib", File.dirname(__FILE__))
4
3
  ENV["RACK_ENV"] = "test"
5
4
  ENV["DB"] ||= "redis"
6
5
 
7
- require "test/unit"
6
+ require "minitest/unit"
7
+ require "minitest/spec"
8
8
  require "tmpdir"
9
- require "mocha"
10
9
  require "action_controller"
11
10
  require "action_controller/test_case"
12
11
  require "action_view/test_case"
@@ -17,27 +16,22 @@ begin
17
16
  rescue LoadError
18
17
  end
19
18
 
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
- require "actionmailer"
27
- Rails.configuration = Rails::Configuration.new
28
-
29
- ActionController::Routing::Routes.draw do |map|
30
- map.connect ':controller/:action/:id'
31
- end
32
- require "phusion_passenger/events"
33
- end
19
+ require File.expand_path("../dummy/config/environment.rb", __FILE__)
20
+ require "rails/test_help"
34
21
 
35
- require "lib/vanity"
22
+ require "vanity"
36
23
  require "timecop"
24
+
25
+ if defined?(Mocha::VERSION) && Mocha::VERSION < "0.13.0"
26
+ require "mocha"
27
+ else
28
+ require "mocha/mini_test"
29
+ end
37
30
  require "webmock/test_unit"
38
31
 
39
- #Do to load order differences in Rails boot and test requires we have to manually
40
- #require these
32
+ # Due to load order differences in Rails boot and test requires we have to
33
+ # manually require these
34
+
41
35
  require 'vanity/frameworks/rails'
42
36
  Vanity::Rails.load!
43
37
 
@@ -60,10 +54,6 @@ module VanityTestHelpers
60
54
  "mock"=>"mock:/"
61
55
  }[ENV["DB"]] or raise "No support yet for #{ENV["DB"]}"
62
56
 
63
- def rails3?
64
- defined?(Rails::Railtie)
65
- end
66
-
67
57
  def setup_after
68
58
  FileUtils.mkpath "tmp/experiments/metrics"
69
59
  new_playground
@@ -139,11 +129,20 @@ class Test::Unit::TestCase
139
129
  include VanityTestHelpers
140
130
  end
141
131
 
142
- if defined?(ActiveSupport::TestCase)
143
- class ActiveSupport::TestCase
132
+ class MiniTest::Spec
133
+ include WebMock::API
134
+ include VanityTestHelpers
135
+ end
136
+
137
+ if defined?(MiniTest::Unit::TestCase)
138
+ class MiniTest::Unit::TestCase
144
139
  include WebMock::API
145
140
  include VanityTestHelpers
141
+ end
142
+ end
146
143
 
144
+ if defined?(ActiveSupport::TestCase)
145
+ class ActiveSupport::TestCase
147
146
  self.use_instantiated_fixtures = false if respond_to?(:use_instantiated_fixtures)
148
147
  self.use_transactional_fixtures = false if respond_to?(:use_transactional_fixtures)
149
148
  end
@@ -175,20 +174,3 @@ if ENV["DB"] == "active_record"
175
174
  VanityMigration.up
176
175
  ActiveRecord::Base.connection_pool.disconnect!
177
176
  end
178
-
179
- # test/spec/mini v3
180
- # Source: http://gist.github.com/25455
181
- def context(*args, &block)
182
- return super unless (name = args.first) && block
183
- parent = Class === self ? self : (defined?(ActiveSupport::TestCase) ? ActiveSupport::TestCase : Test::Unit::TestCase)
184
- klass = Class.new(parent) do
185
- def self.test(name, &block)
186
- define_method("test_#{name.gsub(/\W/,'_')}", &block) if block
187
- end
188
- def self.xtest(*args) end
189
- def self.setup(&block) define_method(:setup) { super() ; instance_eval &block } end
190
- def self.teardown(&block) define_method(:teardown) { super() ; instance_eval &block } end
191
- end
192
- parent.const_set name.split(/\W+/).map(&:capitalize).join, klass
193
- klass.class_eval &block
194
- end
@@ -1,4 +1,4 @@
1
- require "test/test_helper"
1
+ require "test_helper"
2
2
 
3
3
  class VanityController < ActionController::Base
4
4
  include Vanity::Rails::Dashboard
@@ -8,6 +8,7 @@ class RailsDashboardTest < ActionController::TestCase
8
8
  tests VanityController
9
9
 
10
10
  def setup
11
+ super
11
12
  Vanity.playground.collecting = true
12
13
  metric :sugar_high
13
14
  new_ab_test :food do
data/vanity.gemspec CHANGED
@@ -21,7 +21,8 @@ Gem::Specification.new do |spec|
21
21
  spec.rdoc_options = "--title", "Vanity #{spec.version}", "--main", "README.rdoc",
22
22
  "--webcvs", "http://github.com/assaf/#{spec.name}"
23
23
 
24
- spec.required_ruby_version = ">= 1.8.7"
24
+ spec.required_ruby_version = ">= 1.9.3"
25
25
 
26
- spec.add_development_dependency "bundler", ">= 1.0.0"
26
+ spec.add_development_dependency "bundler", ">= 1.0.0"
27
+ spec.add_development_dependency "minitest", ">= 4.2"
27
28
  end
metadata CHANGED
@@ -1,15 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vanity
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.9.3
5
- prerelease:
4
+ version: 2.0.0.beta
5
+ prerelease: 6
6
6
  platform: ruby
7
7
  authors:
8
8
  - Assaf Arkin
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2015-10-06 00:00:00.000000000 Z
12
+ date: 2014-06-26 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: bundler
@@ -27,6 +27,22 @@ dependencies:
27
27
  - - ! '>='
28
28
  - !ruby/object:Gem::Version
29
29
  version: 1.0.0
30
+ - !ruby/object:Gem::Dependency
31
+ name: minitest
32
+ requirement: !ruby/object:Gem::Requirement
33
+ none: false
34
+ requirements:
35
+ - - ! '>='
36
+ - !ruby/object:Gem::Version
37
+ version: '4.2'
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: '4.2'
30
46
  description: Mirror, mirror on the wall ...
31
47
  email: assaf@labnotes.org
32
48
  executables:
@@ -72,16 +88,10 @@ files:
72
88
  - doc/metrics.textile
73
89
  - doc/rails.textile
74
90
  - doc/site.js
75
- - gemfiles/rails3.gemfile
76
- - gemfiles/rails3.gemfile.lock
77
- - gemfiles/rails31.gemfile
78
- - gemfiles/rails31.gemfile.lock
79
91
  - gemfiles/rails32.gemfile
80
92
  - gemfiles/rails32.gemfile.lock
81
93
  - gemfiles/rails4.gemfile
82
94
  - gemfiles/rails4.gemfile.lock
83
- - generators/templates/vanity_migration.rb
84
- - generators/vanity_generator.rb
85
95
  - lib/generators/templates/vanity_migration.rb
86
96
  - lib/generators/vanity_generator.rb
87
97
  - lib/vanity.rb
@@ -157,23 +167,18 @@ files:
157
167
  - test/experiments/metrics/signups.rb
158
168
  - test/experiments/metrics/yawns.rb
159
169
  - test/experiments/null_abc.rb
170
+ - test/frameworks/rails/action_controller_test.rb
171
+ - test/frameworks/rails/action_mailer_test.rb
172
+ - test/frameworks/rails/action_view_test.rb
173
+ - test/frameworks/rails/rails_test.rb
160
174
  - test/helper_test.rb
161
175
  - test/metric/active_record_test.rb
162
176
  - test/metric/base_test.rb
163
177
  - test/metric/google_analytics_test.rb
164
178
  - test/metric/remote_test.rb
165
- - test/myapp/app/controllers/application_controller.rb
166
- - test/myapp/app/controllers/main_controller.rb
167
- - test/myapp/config/boot.rb
168
- - test/myapp/config/environment.rb
169
- - test/myapp/config/environments/production.rb
170
- - test/myapp/config/routes.rb
171
- - test/passenger_test.rb
172
179
  - test/playground_test.rb
173
- - test/rails_dashboard_test.rb
174
- - test/rails_helper_test.rb
175
- - test/rails_test.rb
176
180
  - test/test_helper.rb
181
+ - test/web/rails/dashboard_test.rb
177
182
  - vanity.gemspec
178
183
  homepage: http://vanity.labnotes.org
179
184
  licenses:
@@ -181,7 +186,7 @@ licenses:
181
186
  post_install_message: To get started run vanity --help
182
187
  rdoc_options:
183
188
  - --title
184
- - Vanity 1.9.3
189
+ - Vanity 2.0.0.beta
185
190
  - --main
186
191
  - README.rdoc
187
192
  - --webcvs
@@ -193,13 +198,13 @@ required_ruby_version: !ruby/object:Gem::Requirement
193
198
  requirements:
194
199
  - - ! '>='
195
200
  - !ruby/object:Gem::Version
196
- version: 1.8.7
201
+ version: 1.9.3
197
202
  required_rubygems_version: !ruby/object:Gem::Requirement
198
203
  none: false
199
204
  requirements:
200
- - - ! '>='
205
+ - - ! '>'
201
206
  - !ruby/object:Gem::Version
202
- version: '0'
207
+ version: 1.3.1
203
208
  requirements: []
204
209
  rubyforge_project:
205
210
  rubygems_version: 1.8.23
@@ -242,21 +247,16 @@ test_files:
242
247
  - test/experiments/metrics/signups.rb
243
248
  - test/experiments/metrics/yawns.rb
244
249
  - test/experiments/null_abc.rb
250
+ - test/frameworks/rails/action_controller_test.rb
251
+ - test/frameworks/rails/action_mailer_test.rb
252
+ - test/frameworks/rails/action_view_test.rb
253
+ - test/frameworks/rails/rails_test.rb
245
254
  - test/helper_test.rb
246
255
  - test/metric/active_record_test.rb
247
256
  - test/metric/base_test.rb
248
257
  - test/metric/google_analytics_test.rb
249
258
  - test/metric/remote_test.rb
250
- - test/myapp/app/controllers/application_controller.rb
251
- - test/myapp/app/controllers/main_controller.rb
252
- - test/myapp/config/boot.rb
253
- - test/myapp/config/environment.rb
254
- - test/myapp/config/environments/production.rb
255
- - test/myapp/config/routes.rb
256
- - test/passenger_test.rb
257
259
  - test/playground_test.rb
258
- - test/rails_dashboard_test.rb
259
- - test/rails_helper_test.rb
260
- - test/rails_test.rb
261
260
  - test/test_helper.rb
261
+ - test/web/rails/dashboard_test.rb
262
262
  has_rdoc:
@@ -1,32 +0,0 @@
1
- # This file was generated by Appraisal
2
-
3
- source "https://rubygems.org"
4
-
5
- gem "rack"
6
- gem "redis", ">= 2.1"
7
- gem "redis-namespace", ">= 1.1.0"
8
- gem "bson_ext"
9
- gem "mongo"
10
- gem "sqlite3"
11
- gem "backports", :platforms=>:mri_18
12
- gem "integration"
13
- gem "rubystats"
14
- gem "garb"
15
- gem "SystemTimer", "1.2.3", :platforms=>:mri_18
16
- gem "mocha", :require=>false
17
- gem "shoulda", :require=>false
18
- gem "timecop", :require=>false
19
- gem "webmock", :require=>false
20
- gem "rails", "3.0.11"
21
- gem "fastthread", :git=>"git://github.com/zoltankiss/fastthread.git", :platforms=>:mri_20
22
- gem "passenger", "~>3.0"
23
-
24
- group :development do
25
- gem "appraisal", ">= 1.0.0.beta2"
26
- gem "jekyll"
27
- gem "rake"
28
- gem "RedCloth"
29
- gem "yard"
30
- end
31
-
32
- gemspec :path=>".././"
@@ -1,172 +0,0 @@
1
- GIT
2
- remote: git://github.com/zoltankiss/fastthread.git
3
- revision: 56e6ce7c1780797a354d5befe9a9a9869bbc7e3e
4
- specs:
5
- fastthread (1.0.7)
6
-
7
- PATH
8
- remote: ..
9
- specs:
10
- vanity (1.9.3)
11
-
12
- GEM
13
- remote: https://rubygems.org/
14
- specs:
15
- RedCloth (4.2.9)
16
- SystemTimer (1.2.3)
17
- abstract (1.0.0)
18
- actionmailer (3.0.11)
19
- actionpack (= 3.0.11)
20
- mail (~> 2.2.19)
21
- actionpack (3.0.11)
22
- activemodel (= 3.0.11)
23
- activesupport (= 3.0.11)
24
- builder (~> 2.1.2)
25
- erubis (~> 2.6.6)
26
- i18n (~> 0.5.0)
27
- rack (~> 1.2.1)
28
- rack-mount (~> 0.6.14)
29
- rack-test (~> 0.5.7)
30
- tzinfo (~> 0.3.23)
31
- activemodel (3.0.11)
32
- activesupport (= 3.0.11)
33
- builder (~> 2.1.2)
34
- i18n (~> 0.5.0)
35
- activerecord (3.0.11)
36
- activemodel (= 3.0.11)
37
- activesupport (= 3.0.11)
38
- arel (~> 2.0.10)
39
- tzinfo (~> 0.3.23)
40
- activeresource (3.0.11)
41
- activemodel (= 3.0.11)
42
- activesupport (= 3.0.11)
43
- activesupport (3.0.11)
44
- addressable (2.2.7)
45
- albino (1.3.3)
46
- posix-spawn (>= 0.3.6)
47
- appraisal (1.0.0.beta2)
48
- bundler
49
- rake
50
- thor (>= 0.14.0)
51
- arel (2.0.10)
52
- backports (3.3.5)
53
- bson (1.6.0)
54
- bson_ext (1.6.0)
55
- bson (= 1.6.0)
56
- builder (2.1.2)
57
- classifier (1.3.3)
58
- fast-stemmer (>= 1.0.0)
59
- crack (0.3.1)
60
- daemon_controller (1.0.0)
61
- directory_watcher (1.4.1)
62
- erubis (2.6.6)
63
- abstract (>= 1.0.0)
64
- fast-stemmer (1.0.0)
65
- garb (0.9.1)
66
- activesupport (>= 2.2.0)
67
- crack (>= 0.1.6)
68
- i18n (0.5.0)
69
- integration (0.1.0)
70
- jekyll (0.11.2)
71
- albino (~> 1.3)
72
- classifier (~> 1.3)
73
- directory_watcher (~> 1.1)
74
- kramdown (~> 0.13)
75
- liquid (~> 2.3)
76
- maruku (~> 0.5)
77
- json (1.6.5)
78
- kramdown (0.13.5)
79
- liquid (2.3.0)
80
- mail (2.2.19)
81
- activesupport (>= 2.3.6)
82
- i18n (>= 0.4.0)
83
- mime-types (~> 1.16)
84
- treetop (~> 1.4.8)
85
- maruku (0.6.0)
86
- syntax (>= 1.0.0)
87
- metaclass (0.0.1)
88
- mime-types (1.17.2)
89
- mocha (0.10.5)
90
- metaclass (~> 0.0.1)
91
- mongo (1.6.0)
92
- bson (= 1.6.0)
93
- passenger (3.0.11)
94
- daemon_controller (>= 0.2.5)
95
- fastthread (>= 1.0.1)
96
- rack
97
- rake (>= 0.8.1)
98
- polyglot (0.3.3)
99
- posix-spawn (0.3.6)
100
- rack (1.2.5)
101
- rack-mount (0.6.14)
102
- rack (>= 1.0.0)
103
- rack-test (0.5.7)
104
- rack (>= 1.0)
105
- rails (3.0.11)
106
- actionmailer (= 3.0.11)
107
- actionpack (= 3.0.11)
108
- activerecord (= 3.0.11)
109
- activeresource (= 3.0.11)
110
- activesupport (= 3.0.11)
111
- bundler (~> 1.0)
112
- railties (= 3.0.11)
113
- railties (3.0.11)
114
- actionpack (= 3.0.11)
115
- activesupport (= 3.0.11)
116
- rake (>= 0.8.7)
117
- rdoc (~> 3.4)
118
- thor (~> 0.14.4)
119
- rake (0.9.2.2)
120
- rdoc (3.12)
121
- json (~> 1.4)
122
- redis (3.0.6)
123
- redis-namespace (1.3.2)
124
- redis (~> 3.0.4)
125
- rubystats (0.2.3)
126
- shoulda (3.0.1)
127
- shoulda-context (~> 1.0.0)
128
- shoulda-matchers (~> 1.0.0)
129
- shoulda-context (1.0.0)
130
- shoulda-matchers (1.0.0)
131
- sqlite3 (1.3.8)
132
- syntax (1.0.0)
133
- thor (0.14.6)
134
- timecop (0.3.5)
135
- treetop (1.4.10)
136
- polyglot
137
- polyglot (>= 0.3.1)
138
- tzinfo (0.3.31)
139
- webmock (1.8.0)
140
- addressable (>= 2.2.7)
141
- crack (>= 0.1.7)
142
- yard (0.7.5)
143
-
144
- PLATFORMS
145
- ruby
146
-
147
- DEPENDENCIES
148
- RedCloth
149
- SystemTimer (= 1.2.3)
150
- appraisal (>= 1.0.0.beta2)
151
- backports
152
- bson_ext
153
- bundler (>= 1.0.0)
154
- fastthread!
155
- garb
156
- integration
157
- jekyll
158
- mocha
159
- mongo
160
- passenger (~> 3.0)
161
- rack
162
- rails (= 3.0.11)
163
- rake
164
- redis (>= 2.1)
165
- redis-namespace (>= 1.1.0)
166
- rubystats
167
- shoulda
168
- sqlite3
169
- timecop
170
- vanity!
171
- webmock
172
- yard
@@ -1,32 +0,0 @@
1
- # This file was generated by Appraisal
2
-
3
- source "https://rubygems.org"
4
-
5
- gem "rack"
6
- gem "redis", ">= 2.1"
7
- gem "redis-namespace", ">= 1.1.0"
8
- gem "bson_ext"
9
- gem "mongo"
10
- gem "sqlite3"
11
- gem "backports", :platforms=>:mri_18
12
- gem "integration"
13
- gem "rubystats"
14
- gem "garb"
15
- gem "SystemTimer", "1.2.3", :platforms=>:mri_18
16
- gem "mocha", :require=>false
17
- gem "shoulda", :require=>false
18
- gem "timecop", :require=>false
19
- gem "webmock", :require=>false
20
- gem "rails", "3.1.3"
21
- gem "fastthread", :git=>"git://github.com/zoltankiss/fastthread.git", :platforms=>:mri_20
22
- gem "passenger", "~>3.0"
23
-
24
- group :development do
25
- gem "appraisal", ">= 1.0.0.beta2"
26
- gem "jekyll"
27
- gem "rake"
28
- gem "RedCloth"
29
- gem "yard"
30
- end
31
-
32
- gemspec :path=>".././"