moses-vanity 1.7.1 → 1.8.0
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.
- data/.gitignore +4 -1
- data/.travis.yml +4 -2
- data/Appraisals +15 -0
- data/CHANGELOG +7 -0
- data/Gemfile +16 -19
- data/Gemfile.lock +110 -0
- data/README.rdoc +10 -9
- data/Rakefile +2 -1
- data/gemfiles/rails3.gemfile +20 -0
- data/gemfiles/rails3.gemfile.lock +135 -0
- data/gemfiles/rails31.gemfile +20 -0
- data/gemfiles/rails31.gemfile.lock +146 -0
- data/gemfiles/rails32.gemfile +20 -0
- data/gemfiles/rails32.gemfile.lock +144 -0
- data/lib/vanity/adapters/active_record_adapter.rb +6 -6
- data/lib/vanity/experiment/base.rb +4 -0
- data/lib/vanity/frameworks/rails.rb +11 -4
- data/lib/vanity/metric/active_record.rb +9 -1
- data/lib/vanity/playground.rb +2 -1
- data/lib/vanity/version.rb +1 -1
- data/test/dummy/Rakefile +7 -0
- data/test/dummy/app/controllers/application_controller.rb +3 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/dummy/config/application.rb +44 -0
- data/test/dummy/config/boot.rb +10 -0
- data/test/dummy/config/database.yml +5 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +26 -0
- data/test/dummy/config/environments/production.rb +49 -0
- data/test/dummy/config/environments/test.rb +35 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/inflections.rb +10 -0
- data/test/dummy/config/initializers/mime_types.rb +5 -0
- data/test/dummy/config/initializers/secret_token.rb +7 -0
- data/test/dummy/config/initializers/session_store.rb +8 -0
- data/test/dummy/config/locales/en.yml +5 -0
- data/test/dummy/config/routes.rb +58 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/log/development.log +0 -0
- data/test/dummy/log/production.log +0 -0
- data/test/dummy/log/server.log +0 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/dummy/public/stylesheets/.gitkeep +0 -0
- data/test/dummy/script/rails +6 -0
- data/test/experiment/ab_test.rb +7 -3
- data/test/experiment/base_test.rb +3 -3
- data/test/metric/active_record_test.rb +46 -16
- data/test/passenger_test.rb +4 -2
- data/test/rails_helper_test.rb +4 -2
- data/test/rails_test.rb +116 -93
- data/test/test_helper.rb +32 -10
- metadata +61 -3
data/.gitignore
CHANGED
data/.travis.yml
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
|
+
language: ruby
|
|
2
|
+
bundler_args: --without development
|
|
3
|
+
script: 'rake appraisal test'
|
|
1
4
|
rvm:
|
|
2
5
|
- 1.8.7
|
|
3
6
|
- 1.9.2
|
|
4
|
-
gemfile:
|
|
5
|
-
- Gemfile
|
|
6
7
|
env:
|
|
7
8
|
- DB=mongodb
|
|
8
9
|
- DB=redis
|
|
@@ -10,4 +11,5 @@ env:
|
|
|
10
11
|
#- DB=postgres
|
|
11
12
|
before_script:
|
|
12
13
|
- "mysql -e 'create database vanity_test;' >/dev/null"
|
|
14
|
+
- "rake appraisal:install"
|
|
13
15
|
#- "psql -c 'create database vanity_test;' -U postgres >/dev/null"
|
data/Appraisals
ADDED
data/CHANGELOG
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
== 1.8.0 (2012-03-12)
|
|
2
|
+
|
|
3
|
+
Improved support for Rails 3.1 and Rails 3.2. Thanks to masverba, Daan and IsaacLewis.
|
|
4
|
+
|
|
5
|
+
Finer Grained Exceptions for Missing Experiments (Nick Barnwell)
|
|
6
|
+
|
|
7
|
+
|
|
1
8
|
== 1.7.1 (2011-09-30)
|
|
2
9
|
|
|
3
10
|
Minor change in locating config file (Ariel Salomon)
|
data/Gemfile
CHANGED
|
@@ -1,28 +1,25 @@
|
|
|
1
1
|
source :rubygems
|
|
2
2
|
gemspec
|
|
3
3
|
|
|
4
|
+
gem "appraisal"
|
|
5
|
+
gem "bson_ext"
|
|
6
|
+
gem "garb"
|
|
7
|
+
gem "mocha"
|
|
8
|
+
gem "mongo"
|
|
9
|
+
gem "bson_ext"
|
|
10
|
+
gem "mysql"
|
|
11
|
+
gem "passenger", "~>2.0"
|
|
12
|
+
gem "pg"
|
|
13
|
+
gem "rails", "~>2.3.8"
|
|
14
|
+
gem "rack"
|
|
15
|
+
gem "shoulda"
|
|
16
|
+
gem "timecop"
|
|
17
|
+
gem "webmock"
|
|
18
|
+
gem "SystemTimer", "1.2.3", :platforms => :mri_18
|
|
19
|
+
|
|
4
20
|
group :development do
|
|
5
21
|
gem "jekyll"
|
|
6
22
|
gem "rake"
|
|
7
23
|
gem "RedCloth"
|
|
8
24
|
gem "yard"
|
|
9
25
|
end
|
|
10
|
-
|
|
11
|
-
group :test do
|
|
12
|
-
gem "bson_ext"
|
|
13
|
-
gem "garb"
|
|
14
|
-
gem "mocha"
|
|
15
|
-
gem "mongo"
|
|
16
|
-
gem "bson_ext"
|
|
17
|
-
gem "mysql"
|
|
18
|
-
gem "passenger", "~>2.0"
|
|
19
|
-
gem "pg"
|
|
20
|
-
gem "rails", "~>2.3.8"
|
|
21
|
-
gem "rack"
|
|
22
|
-
gem "shoulda"
|
|
23
|
-
gem "timecop"
|
|
24
|
-
gem "webmock"
|
|
25
|
-
gem "ruby-debug", :platforms => :mri_18
|
|
26
|
-
gem "ruby-debug19", :platforms => :mri_19
|
|
27
|
-
gem "SystemTimer", "1.2.3", :platforms => :mri_18
|
|
28
|
-
end
|
data/Gemfile.lock
ADDED
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
PATH
|
|
2
|
+
remote: .
|
|
3
|
+
specs:
|
|
4
|
+
vanity (1.8.0)
|
|
5
|
+
redis (~> 2.0)
|
|
6
|
+
redis-namespace (~> 1.0.0)
|
|
7
|
+
|
|
8
|
+
GEM
|
|
9
|
+
remote: http://rubygems.org/
|
|
10
|
+
specs:
|
|
11
|
+
RedCloth (4.2.9)
|
|
12
|
+
SystemTimer (1.2.3)
|
|
13
|
+
actionmailer (2.3.14)
|
|
14
|
+
actionpack (= 2.3.14)
|
|
15
|
+
actionpack (2.3.14)
|
|
16
|
+
activesupport (= 2.3.14)
|
|
17
|
+
rack (~> 1.1.0)
|
|
18
|
+
activerecord (2.3.14)
|
|
19
|
+
activesupport (= 2.3.14)
|
|
20
|
+
activeresource (2.3.14)
|
|
21
|
+
activesupport (= 2.3.14)
|
|
22
|
+
activesupport (2.3.14)
|
|
23
|
+
addressable (2.2.7)
|
|
24
|
+
albino (1.3.3)
|
|
25
|
+
posix-spawn (>= 0.3.6)
|
|
26
|
+
appraisal (0.4.1)
|
|
27
|
+
bundler
|
|
28
|
+
rake
|
|
29
|
+
bson (1.6.0)
|
|
30
|
+
bson_ext (1.6.0)
|
|
31
|
+
bson (= 1.6.0)
|
|
32
|
+
classifier (1.3.3)
|
|
33
|
+
fast-stemmer (>= 1.0.0)
|
|
34
|
+
crack (0.3.1)
|
|
35
|
+
directory_watcher (1.4.1)
|
|
36
|
+
fast-stemmer (1.0.0)
|
|
37
|
+
fastthread (1.0.7)
|
|
38
|
+
garb (0.9.1)
|
|
39
|
+
activesupport (>= 2.2.0)
|
|
40
|
+
crack (>= 0.1.6)
|
|
41
|
+
jekyll (0.11.2)
|
|
42
|
+
albino (~> 1.3)
|
|
43
|
+
classifier (~> 1.3)
|
|
44
|
+
directory_watcher (~> 1.1)
|
|
45
|
+
kramdown (~> 0.13)
|
|
46
|
+
liquid (~> 2.3)
|
|
47
|
+
maruku (~> 0.5)
|
|
48
|
+
kramdown (0.13.5)
|
|
49
|
+
liquid (2.3.0)
|
|
50
|
+
maruku (0.6.0)
|
|
51
|
+
syntax (>= 1.0.0)
|
|
52
|
+
metaclass (0.0.1)
|
|
53
|
+
mocha (0.10.5)
|
|
54
|
+
metaclass (~> 0.0.1)
|
|
55
|
+
mongo (1.6.0)
|
|
56
|
+
bson (= 1.6.0)
|
|
57
|
+
mysql (2.8.1)
|
|
58
|
+
passenger (2.2.15)
|
|
59
|
+
fastthread (>= 1.0.1)
|
|
60
|
+
rack
|
|
61
|
+
rake (>= 0.8.1)
|
|
62
|
+
pg (0.13.2)
|
|
63
|
+
posix-spawn (0.3.6)
|
|
64
|
+
rack (1.1.3)
|
|
65
|
+
rails (2.3.14)
|
|
66
|
+
actionmailer (= 2.3.14)
|
|
67
|
+
actionpack (= 2.3.14)
|
|
68
|
+
activerecord (= 2.3.14)
|
|
69
|
+
activeresource (= 2.3.14)
|
|
70
|
+
activesupport (= 2.3.14)
|
|
71
|
+
rake (>= 0.8.3)
|
|
72
|
+
rake (0.9.2.2)
|
|
73
|
+
redis (2.2.2)
|
|
74
|
+
redis-namespace (1.0.3)
|
|
75
|
+
redis (< 3.0.0)
|
|
76
|
+
shoulda (3.0.1)
|
|
77
|
+
shoulda-context (~> 1.0.0)
|
|
78
|
+
shoulda-matchers (~> 1.0.0)
|
|
79
|
+
shoulda-context (1.0.0)
|
|
80
|
+
shoulda-matchers (1.0.0)
|
|
81
|
+
syntax (1.0.0)
|
|
82
|
+
timecop (0.3.5)
|
|
83
|
+
webmock (1.8.0)
|
|
84
|
+
addressable (>= 2.2.7)
|
|
85
|
+
crack (>= 0.1.7)
|
|
86
|
+
yard (0.7.5)
|
|
87
|
+
|
|
88
|
+
PLATFORMS
|
|
89
|
+
ruby
|
|
90
|
+
|
|
91
|
+
DEPENDENCIES
|
|
92
|
+
RedCloth
|
|
93
|
+
SystemTimer (= 1.2.3)
|
|
94
|
+
appraisal
|
|
95
|
+
bson_ext
|
|
96
|
+
garb
|
|
97
|
+
jekyll
|
|
98
|
+
mocha
|
|
99
|
+
mongo
|
|
100
|
+
mysql
|
|
101
|
+
passenger (~> 2.0)
|
|
102
|
+
pg
|
|
103
|
+
rack
|
|
104
|
+
rails (~> 2.3.8)
|
|
105
|
+
rake
|
|
106
|
+
shoulda
|
|
107
|
+
timecop
|
|
108
|
+
vanity!
|
|
109
|
+
webmock
|
|
110
|
+
yard
|
data/README.rdoc
CHANGED
|
@@ -45,7 +45,7 @@ Add to your application controller:
|
|
|
45
45
|
metrics :signups
|
|
46
46
|
end
|
|
47
47
|
|
|
48
|
-
NOTE: If using a metric as above ("signups"), there needs to be a corresponding ruby file for that metric. Inside the "experiments" directory create a "metrics" directory with a file called "
|
|
48
|
+
NOTE: If using a metric as above ("signups"), there needs to be a corresponding ruby file for that metric. Inside the "experiments" directory create a "metrics" directory with a file called "signups.rb". The contents of the file can describe the signup metric, refer to the "Metrics" Vanity documentation page for an example.
|
|
49
49
|
|
|
50
50
|
<b>Step 3:</b> Present the different options to your users:
|
|
51
51
|
|
|
@@ -72,13 +72,13 @@ Add to your application controller:
|
|
|
72
72
|
|
|
73
73
|
== Rails 3
|
|
74
74
|
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
75
|
+
There is currently an issue with report generation. The vanity-talk Google Group has a couple posts that outline the issue for now. This is one of the posts: http://groups.google.com/group/vanity-talk/browse_thread/thread/343081a72a0cefb6
|
|
76
|
+
|
|
77
|
+
If you are collecting data (in development you need to opt-in to this by setting Vanity.playground.collecting = true in environments/development.rb) you can view experiment results with the vanity dashboard instead of the report.
|
|
78
|
+
|
|
79
|
+
The vanity dashboard setup instructions with Vanity work for Rails 3.x except the route is different. A Rails 3.x-style route would look like this:
|
|
80
|
+
|
|
81
|
+
`match '/vanity(/:action(/:id(.:format)))', :controller=>:vanity`
|
|
82
82
|
|
|
83
83
|
|
|
84
84
|
== Registering participants with Javascript
|
|
@@ -93,8 +93,9 @@ If robots or spiders make up a significant portion of your sites traffic they ca
|
|
|
93
93
|
|
|
94
94
|
* Fork the project
|
|
95
95
|
* Please use a topic branch to make your changes, it's easier to test them that way
|
|
96
|
+
* To set up the test suite run bundler, then run `rake appraisal:install` to prepare the test suite to run against multiple versions of Rails
|
|
96
97
|
* Fix, patch, enhance, document, improve, sprinkle pixie dust
|
|
97
|
-
* At minimum run rake test
|
|
98
|
+
* At minimum run `rake appraisal test`, if possible, please run rake test:all
|
|
98
99
|
* Tests. Please. Run rake test, of if you can, rake test:all
|
|
99
100
|
* Send a pull request on GitHub
|
|
100
101
|
|
data/Rakefile
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
require "rake/testtask"
|
|
2
|
+
require 'appraisal'
|
|
2
3
|
|
|
3
4
|
# -- Building stuff --
|
|
4
5
|
|
|
@@ -77,7 +78,7 @@ task "test:adapters", :adapter do |t, args|
|
|
|
77
78
|
adapters = args.adapter ? [args.adapter] : ADAPTERS
|
|
78
79
|
adapters.each do |adapter|
|
|
79
80
|
puts "** Testing #{adapter} adapter"
|
|
80
|
-
sh "rake test DB=#{adapter} #{'--trace' if Rake.application.options.trace}"
|
|
81
|
+
sh "rake appraisal test DB=#{adapter} #{'--trace' if Rake.application.options.trace}"
|
|
81
82
|
end
|
|
82
83
|
end
|
|
83
84
|
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# This file was generated by Appraisal
|
|
2
|
+
|
|
3
|
+
source :rubygems
|
|
4
|
+
|
|
5
|
+
gem "appraisal"
|
|
6
|
+
gem "garb"
|
|
7
|
+
gem "mocha"
|
|
8
|
+
gem "mongo"
|
|
9
|
+
gem "bson_ext"
|
|
10
|
+
gem "mysql"
|
|
11
|
+
gem "pg"
|
|
12
|
+
gem "rack"
|
|
13
|
+
gem "shoulda"
|
|
14
|
+
gem "timecop"
|
|
15
|
+
gem "webmock"
|
|
16
|
+
gem "SystemTimer", "1.2.3", :platforms=>:mri_18
|
|
17
|
+
gem "rails", "3.0.11"
|
|
18
|
+
gem "passenger", "~>3.0"
|
|
19
|
+
|
|
20
|
+
gemspec :path=>"../"
|
|
@@ -0,0 +1,135 @@
|
|
|
1
|
+
PATH
|
|
2
|
+
remote: /Users/dougcole/workspace/vanity
|
|
3
|
+
specs:
|
|
4
|
+
vanity (1.8.0)
|
|
5
|
+
redis (~> 2.0)
|
|
6
|
+
redis-namespace (~> 1.0.0)
|
|
7
|
+
|
|
8
|
+
GEM
|
|
9
|
+
remote: http://rubygems.org/
|
|
10
|
+
specs:
|
|
11
|
+
SystemTimer (1.2.3)
|
|
12
|
+
abstract (1.0.0)
|
|
13
|
+
actionmailer (3.0.11)
|
|
14
|
+
actionpack (= 3.0.11)
|
|
15
|
+
mail (~> 2.2.19)
|
|
16
|
+
actionpack (3.0.11)
|
|
17
|
+
activemodel (= 3.0.11)
|
|
18
|
+
activesupport (= 3.0.11)
|
|
19
|
+
builder (~> 2.1.2)
|
|
20
|
+
erubis (~> 2.6.6)
|
|
21
|
+
i18n (~> 0.5.0)
|
|
22
|
+
rack (~> 1.2.1)
|
|
23
|
+
rack-mount (~> 0.6.14)
|
|
24
|
+
rack-test (~> 0.5.7)
|
|
25
|
+
tzinfo (~> 0.3.23)
|
|
26
|
+
activemodel (3.0.11)
|
|
27
|
+
activesupport (= 3.0.11)
|
|
28
|
+
builder (~> 2.1.2)
|
|
29
|
+
i18n (~> 0.5.0)
|
|
30
|
+
activerecord (3.0.11)
|
|
31
|
+
activemodel (= 3.0.11)
|
|
32
|
+
activesupport (= 3.0.11)
|
|
33
|
+
arel (~> 2.0.10)
|
|
34
|
+
tzinfo (~> 0.3.23)
|
|
35
|
+
activeresource (3.0.11)
|
|
36
|
+
activemodel (= 3.0.11)
|
|
37
|
+
activesupport (= 3.0.11)
|
|
38
|
+
activesupport (3.0.11)
|
|
39
|
+
addressable (2.2.7)
|
|
40
|
+
appraisal (0.4.1)
|
|
41
|
+
bundler
|
|
42
|
+
rake
|
|
43
|
+
arel (2.0.10)
|
|
44
|
+
bson (1.6.0)
|
|
45
|
+
bson_ext (1.6.0)
|
|
46
|
+
bson (= 1.6.0)
|
|
47
|
+
builder (2.1.2)
|
|
48
|
+
crack (0.3.1)
|
|
49
|
+
daemon_controller (1.0.0)
|
|
50
|
+
erubis (2.6.6)
|
|
51
|
+
abstract (>= 1.0.0)
|
|
52
|
+
fastthread (1.0.7)
|
|
53
|
+
garb (0.9.1)
|
|
54
|
+
activesupport (>= 2.2.0)
|
|
55
|
+
crack (>= 0.1.6)
|
|
56
|
+
i18n (0.5.0)
|
|
57
|
+
json (1.6.5)
|
|
58
|
+
mail (2.2.19)
|
|
59
|
+
activesupport (>= 2.3.6)
|
|
60
|
+
i18n (>= 0.4.0)
|
|
61
|
+
mime-types (~> 1.16)
|
|
62
|
+
treetop (~> 1.4.8)
|
|
63
|
+
metaclass (0.0.1)
|
|
64
|
+
mime-types (1.17.2)
|
|
65
|
+
mocha (0.10.5)
|
|
66
|
+
metaclass (~> 0.0.1)
|
|
67
|
+
mongo (1.6.0)
|
|
68
|
+
bson (= 1.6.0)
|
|
69
|
+
mysql (2.8.1)
|
|
70
|
+
passenger (3.0.11)
|
|
71
|
+
daemon_controller (>= 0.2.5)
|
|
72
|
+
fastthread (>= 1.0.1)
|
|
73
|
+
rack
|
|
74
|
+
rake (>= 0.8.1)
|
|
75
|
+
pg (0.13.2)
|
|
76
|
+
polyglot (0.3.3)
|
|
77
|
+
rack (1.2.5)
|
|
78
|
+
rack-mount (0.6.14)
|
|
79
|
+
rack (>= 1.0.0)
|
|
80
|
+
rack-test (0.5.7)
|
|
81
|
+
rack (>= 1.0)
|
|
82
|
+
rails (3.0.11)
|
|
83
|
+
actionmailer (= 3.0.11)
|
|
84
|
+
actionpack (= 3.0.11)
|
|
85
|
+
activerecord (= 3.0.11)
|
|
86
|
+
activeresource (= 3.0.11)
|
|
87
|
+
activesupport (= 3.0.11)
|
|
88
|
+
bundler (~> 1.0)
|
|
89
|
+
railties (= 3.0.11)
|
|
90
|
+
railties (3.0.11)
|
|
91
|
+
actionpack (= 3.0.11)
|
|
92
|
+
activesupport (= 3.0.11)
|
|
93
|
+
rake (>= 0.8.7)
|
|
94
|
+
rdoc (~> 3.4)
|
|
95
|
+
thor (~> 0.14.4)
|
|
96
|
+
rake (0.9.2.2)
|
|
97
|
+
rdoc (3.12)
|
|
98
|
+
json (~> 1.4)
|
|
99
|
+
redis (2.2.2)
|
|
100
|
+
redis-namespace (1.0.3)
|
|
101
|
+
redis (< 3.0.0)
|
|
102
|
+
shoulda (3.0.1)
|
|
103
|
+
shoulda-context (~> 1.0.0)
|
|
104
|
+
shoulda-matchers (~> 1.0.0)
|
|
105
|
+
shoulda-context (1.0.0)
|
|
106
|
+
shoulda-matchers (1.0.0)
|
|
107
|
+
thor (0.14.6)
|
|
108
|
+
timecop (0.3.5)
|
|
109
|
+
treetop (1.4.10)
|
|
110
|
+
polyglot
|
|
111
|
+
polyglot (>= 0.3.1)
|
|
112
|
+
tzinfo (0.3.31)
|
|
113
|
+
webmock (1.8.0)
|
|
114
|
+
addressable (>= 2.2.7)
|
|
115
|
+
crack (>= 0.1.7)
|
|
116
|
+
|
|
117
|
+
PLATFORMS
|
|
118
|
+
ruby
|
|
119
|
+
|
|
120
|
+
DEPENDENCIES
|
|
121
|
+
SystemTimer (= 1.2.3)
|
|
122
|
+
appraisal
|
|
123
|
+
bson_ext
|
|
124
|
+
garb
|
|
125
|
+
mocha
|
|
126
|
+
mongo
|
|
127
|
+
mysql
|
|
128
|
+
passenger (~> 3.0)
|
|
129
|
+
pg
|
|
130
|
+
rack
|
|
131
|
+
rails (= 3.0.11)
|
|
132
|
+
shoulda
|
|
133
|
+
timecop
|
|
134
|
+
vanity!
|
|
135
|
+
webmock
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# This file was generated by Appraisal
|
|
2
|
+
|
|
3
|
+
source :rubygems
|
|
4
|
+
|
|
5
|
+
gem "appraisal"
|
|
6
|
+
gem "garb"
|
|
7
|
+
gem "mocha"
|
|
8
|
+
gem "mongo"
|
|
9
|
+
gem "bson_ext"
|
|
10
|
+
gem "mysql"
|
|
11
|
+
gem "pg"
|
|
12
|
+
gem "rack"
|
|
13
|
+
gem "shoulda"
|
|
14
|
+
gem "timecop"
|
|
15
|
+
gem "webmock"
|
|
16
|
+
gem "SystemTimer", "1.2.3", :platforms=>:mri_18
|
|
17
|
+
gem "rails", "3.1.3"
|
|
18
|
+
gem "passenger", "~>3.0"
|
|
19
|
+
|
|
20
|
+
gemspec :path=>"../"
|
|
@@ -0,0 +1,146 @@
|
|
|
1
|
+
PATH
|
|
2
|
+
remote: /Users/dougcole/workspace/vanity
|
|
3
|
+
specs:
|
|
4
|
+
vanity (1.8.0)
|
|
5
|
+
redis (~> 2.0)
|
|
6
|
+
redis-namespace (~> 1.0.0)
|
|
7
|
+
|
|
8
|
+
GEM
|
|
9
|
+
remote: http://rubygems.org/
|
|
10
|
+
specs:
|
|
11
|
+
SystemTimer (1.2.3)
|
|
12
|
+
actionmailer (3.1.3)
|
|
13
|
+
actionpack (= 3.1.3)
|
|
14
|
+
mail (~> 2.3.0)
|
|
15
|
+
actionpack (3.1.3)
|
|
16
|
+
activemodel (= 3.1.3)
|
|
17
|
+
activesupport (= 3.1.3)
|
|
18
|
+
builder (~> 3.0.0)
|
|
19
|
+
erubis (~> 2.7.0)
|
|
20
|
+
i18n (~> 0.6)
|
|
21
|
+
rack (~> 1.3.5)
|
|
22
|
+
rack-cache (~> 1.1)
|
|
23
|
+
rack-mount (~> 0.8.2)
|
|
24
|
+
rack-test (~> 0.6.1)
|
|
25
|
+
sprockets (~> 2.0.3)
|
|
26
|
+
activemodel (3.1.3)
|
|
27
|
+
activesupport (= 3.1.3)
|
|
28
|
+
builder (~> 3.0.0)
|
|
29
|
+
i18n (~> 0.6)
|
|
30
|
+
activerecord (3.1.3)
|
|
31
|
+
activemodel (= 3.1.3)
|
|
32
|
+
activesupport (= 3.1.3)
|
|
33
|
+
arel (~> 2.2.1)
|
|
34
|
+
tzinfo (~> 0.3.29)
|
|
35
|
+
activeresource (3.1.3)
|
|
36
|
+
activemodel (= 3.1.3)
|
|
37
|
+
activesupport (= 3.1.3)
|
|
38
|
+
activesupport (3.1.3)
|
|
39
|
+
multi_json (~> 1.0)
|
|
40
|
+
addressable (2.2.7)
|
|
41
|
+
appraisal (0.4.1)
|
|
42
|
+
bundler
|
|
43
|
+
rake
|
|
44
|
+
arel (2.2.3)
|
|
45
|
+
bson (1.6.0)
|
|
46
|
+
bson_ext (1.6.0)
|
|
47
|
+
bson (= 1.6.0)
|
|
48
|
+
builder (3.0.0)
|
|
49
|
+
crack (0.3.1)
|
|
50
|
+
daemon_controller (1.0.0)
|
|
51
|
+
erubis (2.7.0)
|
|
52
|
+
fastthread (1.0.7)
|
|
53
|
+
garb (0.9.1)
|
|
54
|
+
activesupport (>= 2.2.0)
|
|
55
|
+
crack (>= 0.1.6)
|
|
56
|
+
hike (1.2.1)
|
|
57
|
+
i18n (0.6.0)
|
|
58
|
+
json (1.6.5)
|
|
59
|
+
mail (2.3.0)
|
|
60
|
+
i18n (>= 0.4.0)
|
|
61
|
+
mime-types (~> 1.16)
|
|
62
|
+
treetop (~> 1.4.8)
|
|
63
|
+
metaclass (0.0.1)
|
|
64
|
+
mime-types (1.17.2)
|
|
65
|
+
mocha (0.10.5)
|
|
66
|
+
metaclass (~> 0.0.1)
|
|
67
|
+
mongo (1.6.0)
|
|
68
|
+
bson (= 1.6.0)
|
|
69
|
+
multi_json (1.1.0)
|
|
70
|
+
mysql (2.8.1)
|
|
71
|
+
passenger (3.0.11)
|
|
72
|
+
daemon_controller (>= 0.2.5)
|
|
73
|
+
fastthread (>= 1.0.1)
|
|
74
|
+
rack
|
|
75
|
+
rake (>= 0.8.1)
|
|
76
|
+
pg (0.13.2)
|
|
77
|
+
polyglot (0.3.3)
|
|
78
|
+
rack (1.3.6)
|
|
79
|
+
rack-cache (1.1)
|
|
80
|
+
rack (>= 0.4)
|
|
81
|
+
rack-mount (0.8.3)
|
|
82
|
+
rack (>= 1.0.0)
|
|
83
|
+
rack-ssl (1.3.2)
|
|
84
|
+
rack
|
|
85
|
+
rack-test (0.6.1)
|
|
86
|
+
rack (>= 1.0)
|
|
87
|
+
rails (3.1.3)
|
|
88
|
+
actionmailer (= 3.1.3)
|
|
89
|
+
actionpack (= 3.1.3)
|
|
90
|
+
activerecord (= 3.1.3)
|
|
91
|
+
activeresource (= 3.1.3)
|
|
92
|
+
activesupport (= 3.1.3)
|
|
93
|
+
bundler (~> 1.0)
|
|
94
|
+
railties (= 3.1.3)
|
|
95
|
+
railties (3.1.3)
|
|
96
|
+
actionpack (= 3.1.3)
|
|
97
|
+
activesupport (= 3.1.3)
|
|
98
|
+
rack-ssl (~> 1.3.2)
|
|
99
|
+
rake (>= 0.8.7)
|
|
100
|
+
rdoc (~> 3.4)
|
|
101
|
+
thor (~> 0.14.6)
|
|
102
|
+
rake (0.9.2.2)
|
|
103
|
+
rdoc (3.12)
|
|
104
|
+
json (~> 1.4)
|
|
105
|
+
redis (2.2.2)
|
|
106
|
+
redis-namespace (1.0.3)
|
|
107
|
+
redis (< 3.0.0)
|
|
108
|
+
shoulda (3.0.1)
|
|
109
|
+
shoulda-context (~> 1.0.0)
|
|
110
|
+
shoulda-matchers (~> 1.0.0)
|
|
111
|
+
shoulda-context (1.0.0)
|
|
112
|
+
shoulda-matchers (1.0.0)
|
|
113
|
+
sprockets (2.0.3)
|
|
114
|
+
hike (~> 1.2)
|
|
115
|
+
rack (~> 1.0)
|
|
116
|
+
tilt (~> 1.1, != 1.3.0)
|
|
117
|
+
thor (0.14.6)
|
|
118
|
+
tilt (1.3.3)
|
|
119
|
+
timecop (0.3.5)
|
|
120
|
+
treetop (1.4.10)
|
|
121
|
+
polyglot
|
|
122
|
+
polyglot (>= 0.3.1)
|
|
123
|
+
tzinfo (0.3.31)
|
|
124
|
+
webmock (1.8.0)
|
|
125
|
+
addressable (>= 2.2.7)
|
|
126
|
+
crack (>= 0.1.7)
|
|
127
|
+
|
|
128
|
+
PLATFORMS
|
|
129
|
+
ruby
|
|
130
|
+
|
|
131
|
+
DEPENDENCIES
|
|
132
|
+
SystemTimer (= 1.2.3)
|
|
133
|
+
appraisal
|
|
134
|
+
bson_ext
|
|
135
|
+
garb
|
|
136
|
+
mocha
|
|
137
|
+
mongo
|
|
138
|
+
mysql
|
|
139
|
+
passenger (~> 3.0)
|
|
140
|
+
pg
|
|
141
|
+
rack
|
|
142
|
+
rails (= 3.1.3)
|
|
143
|
+
shoulda
|
|
144
|
+
timecop
|
|
145
|
+
vanity!
|
|
146
|
+
webmock
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# This file was generated by Appraisal
|
|
2
|
+
|
|
3
|
+
source :rubygems
|
|
4
|
+
|
|
5
|
+
gem "appraisal"
|
|
6
|
+
gem "garb"
|
|
7
|
+
gem "mocha"
|
|
8
|
+
gem "mongo"
|
|
9
|
+
gem "bson_ext"
|
|
10
|
+
gem "mysql"
|
|
11
|
+
gem "pg"
|
|
12
|
+
gem "rack"
|
|
13
|
+
gem "shoulda"
|
|
14
|
+
gem "timecop"
|
|
15
|
+
gem "webmock"
|
|
16
|
+
gem "SystemTimer", "1.2.3", :platforms=>:mri_18
|
|
17
|
+
gem "rails", "3.2.1"
|
|
18
|
+
gem "passenger", "~>3.0"
|
|
19
|
+
|
|
20
|
+
gemspec :path=>"../"
|