vanity 2.0.0.beta7 → 2.0.0.beta8
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/.travis.yml +8 -14
- data/Appraisals +4 -3
- data/Gemfile +12 -4
- data/Gemfile.lock +76 -24
- data/README.rdoc +20 -2
- data/Rakefile +8 -8
- data/gemfiles/rails32.gemfile +19 -10
- data/gemfiles/rails32.gemfile.lock +136 -81
- data/gemfiles/rails4.gemfile +17 -9
- data/gemfiles/rails4.gemfile.lock +18 -11
- data/gemfiles/rails41.gemfile +17 -9
- data/gemfiles/rails41.gemfile.lock +62 -31
- data/gemfiles/rails42.gemfile +17 -9
- data/gemfiles/rails42.gemfile.lock +32 -19
- data/lib/vanity/experiment/ab_test.rb +12 -20
- data/lib/vanity/version.rb +1 -1
- data/test/cli_test.rb +15 -13
- data/test/experiment/ab_test.rb +37 -2
- data/test/helper_test.rb +13 -3
- data/test/test_helper.rb +1 -6
- metadata +3 -3
data/.travis.yml
CHANGED
|
@@ -7,15 +7,15 @@ services:
|
|
|
7
7
|
- mongodb
|
|
8
8
|
- redis-server
|
|
9
9
|
rvm:
|
|
10
|
-
- 1.9.3
|
|
11
|
-
- 2.0.0
|
|
12
|
-
- 2.1.0
|
|
13
|
-
- 2.2.0
|
|
14
|
-
-
|
|
10
|
+
- 1.9.3
|
|
11
|
+
- 2.0.0
|
|
12
|
+
- 2.1.0
|
|
13
|
+
- 2.2.0
|
|
14
|
+
- jruby-19mode
|
|
15
15
|
env:
|
|
16
|
-
- DB=mongodb
|
|
17
|
-
- DB=redis
|
|
18
|
-
- DB=active_record
|
|
16
|
+
- DB=mongodb
|
|
17
|
+
- DB=redis
|
|
18
|
+
- DB=active_record
|
|
19
19
|
gemfile:
|
|
20
20
|
- gemfiles/rails32.gemfile
|
|
21
21
|
- gemfiles/rails4.gemfile
|
|
@@ -23,9 +23,3 @@ gemfile:
|
|
|
23
23
|
- gemfiles/rails42.gemfile
|
|
24
24
|
before_script:
|
|
25
25
|
- 'echo ''gem: --no-ri --no-rdoc'' > ~/.gemrc' # skip installing docs for gems
|
|
26
|
-
matrix:
|
|
27
|
-
exclude:
|
|
28
|
-
- rvm: 2.2.0
|
|
29
|
-
gemfile: gemfiles/rails32.gemfile
|
|
30
|
-
allow_failures:
|
|
31
|
-
- rvm: ruby-head
|
data/Appraisals
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
appraise "rails32" do
|
|
2
|
-
gem "mocha", "~> 0
|
|
2
|
+
gem "mocha", "~> 1.0", :require=>false
|
|
3
3
|
gem "minitest", "~>4.2.0"
|
|
4
|
-
gem "
|
|
4
|
+
gem "test-unit", "~> 3.0"
|
|
5
|
+
gem "rails", "3.2.22"
|
|
5
6
|
gem "fastthread", :git => "git://github.com/zoltankiss/fastthread.git", :platforms => :mri_20
|
|
6
7
|
gem "passenger", "~>3.0"
|
|
7
8
|
end
|
|
@@ -26,4 +27,4 @@ appraise "rails42" do
|
|
|
26
27
|
gem "rails", "4.2.0"
|
|
27
28
|
gem "fastthread", :git => "git://github.com/zoltankiss/fastthread.git", :platforms => :mri_20
|
|
28
29
|
gem "passenger", "~>3.0"
|
|
29
|
-
end
|
|
30
|
+
end
|
data/Gemfile
CHANGED
|
@@ -7,9 +7,7 @@ gem "rack"
|
|
|
7
7
|
# Persistence
|
|
8
8
|
gem "redis", ">= 2.1"
|
|
9
9
|
gem "redis-namespace", ">= 1.1.0"
|
|
10
|
-
gem "bson_ext"
|
|
11
10
|
gem "mongo"
|
|
12
|
-
gem "sqlite3"
|
|
13
11
|
|
|
14
12
|
# Math libraries
|
|
15
13
|
gem "integration", "<= 0.1.0"
|
|
@@ -22,10 +20,20 @@ gem "garb", "< 0.9.2" # API changes at this version
|
|
|
22
20
|
gem "timecop", :require=>false
|
|
23
21
|
gem "webmock", :require=>false
|
|
24
22
|
|
|
23
|
+
platform :ruby do
|
|
24
|
+
gem "bson_ext"
|
|
25
|
+
gem "sqlite3", "~> 1.3.10"
|
|
26
|
+
end
|
|
27
|
+
|
|
28
|
+
platform :jruby do
|
|
29
|
+
gem "activerecord-jdbc-adapter"
|
|
30
|
+
gem "jdbc-sqlite3"
|
|
31
|
+
end
|
|
32
|
+
|
|
25
33
|
group :development do
|
|
26
|
-
gem "appraisal", "
|
|
34
|
+
gem "appraisal", "~> 1.0.2" # For setting up test Gemfiles
|
|
27
35
|
|
|
28
|
-
gem "jekyll"
|
|
36
|
+
gem "jekyll", platform: :ruby
|
|
29
37
|
gem "rake"
|
|
30
38
|
gem "RedCloth"
|
|
31
39
|
gem "yard"
|
data/Gemfile.lock
CHANGED
|
@@ -1,74 +1,126 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
vanity (2.0.0.
|
|
4
|
+
vanity (2.0.0.beta8)
|
|
5
5
|
i18n
|
|
6
6
|
|
|
7
7
|
GEM
|
|
8
8
|
remote: https://rubygems.org/
|
|
9
9
|
specs:
|
|
10
10
|
RedCloth (4.2.9)
|
|
11
|
+
RedCloth (4.2.9-java)
|
|
12
|
+
activerecord (2.3.14)
|
|
13
|
+
activesupport (= 2.3.14)
|
|
14
|
+
activerecord-jdbc-adapter (1.3.15)
|
|
15
|
+
activerecord (>= 2.2)
|
|
11
16
|
activesupport (2.3.14)
|
|
12
17
|
addressable (2.2.7)
|
|
13
|
-
|
|
14
|
-
posix-spawn (>= 0.3.6)
|
|
15
|
-
appraisal (1.0.0.beta2)
|
|
18
|
+
appraisal (1.0.3)
|
|
16
19
|
bundler
|
|
17
20
|
rake
|
|
18
21
|
thor (>= 0.14.0)
|
|
22
|
+
blankslate (2.1.2.4)
|
|
19
23
|
bson (1.6.0)
|
|
24
|
+
bson (1.6.0-java)
|
|
20
25
|
bson_ext (1.6.0)
|
|
21
26
|
bson (= 1.6.0)
|
|
22
|
-
|
|
23
|
-
|
|
27
|
+
celluloid (0.16.0)
|
|
28
|
+
timers (~> 4.0.0)
|
|
29
|
+
classifier-reborn (2.0.3)
|
|
30
|
+
fast-stemmer (~> 1.0)
|
|
31
|
+
coffee-script (2.4.1)
|
|
32
|
+
coffee-script-source
|
|
33
|
+
execjs
|
|
34
|
+
coffee-script-source (1.9.1)
|
|
35
|
+
colorator (0.1)
|
|
24
36
|
crack (0.3.1)
|
|
25
|
-
|
|
26
|
-
fast-stemmer (1.0.
|
|
37
|
+
execjs (2.5.2)
|
|
38
|
+
fast-stemmer (1.0.2)
|
|
39
|
+
ffi (1.9.8)
|
|
27
40
|
garb (0.9.1)
|
|
28
41
|
activesupport (>= 2.2.0)
|
|
29
42
|
crack (>= 0.1.6)
|
|
43
|
+
hitimes (1.2.2)
|
|
30
44
|
i18n (0.7.0)
|
|
31
45
|
integration (0.1.0)
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
classifier (~>
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
46
|
+
jdbc-sqlite3 (3.8.7)
|
|
47
|
+
jekyll (2.5.3)
|
|
48
|
+
classifier-reborn (~> 2.0)
|
|
49
|
+
colorator (~> 0.1)
|
|
50
|
+
jekyll-coffeescript (~> 1.0)
|
|
51
|
+
jekyll-gist (~> 1.0)
|
|
52
|
+
jekyll-paginate (~> 1.0)
|
|
53
|
+
jekyll-sass-converter (~> 1.0)
|
|
54
|
+
jekyll-watch (~> 1.1)
|
|
55
|
+
kramdown (~> 1.3)
|
|
56
|
+
liquid (~> 2.6.1)
|
|
57
|
+
mercenary (~> 0.3.3)
|
|
58
|
+
pygments.rb (~> 0.6.0)
|
|
59
|
+
redcarpet (~> 3.1)
|
|
60
|
+
safe_yaml (~> 1.0)
|
|
61
|
+
toml (~> 0.1.0)
|
|
62
|
+
jekyll-coffeescript (1.0.1)
|
|
63
|
+
coffee-script (~> 2.2)
|
|
64
|
+
jekyll-gist (1.2.1)
|
|
65
|
+
jekyll-paginate (1.1.0)
|
|
66
|
+
jekyll-sass-converter (1.3.0)
|
|
67
|
+
sass (~> 3.2)
|
|
68
|
+
jekyll-watch (1.2.1)
|
|
69
|
+
listen (~> 2.7)
|
|
70
|
+
kramdown (1.6.0)
|
|
71
|
+
liquid (2.6.2)
|
|
72
|
+
listen (2.10.0)
|
|
73
|
+
celluloid (~> 0.16.0)
|
|
74
|
+
rb-fsevent (>= 0.9.3)
|
|
75
|
+
rb-inotify (>= 0.9)
|
|
76
|
+
mercenary (0.3.5)
|
|
43
77
|
minitest (4.7.5)
|
|
44
78
|
mongo (1.6.0)
|
|
45
79
|
bson (= 1.6.0)
|
|
46
|
-
|
|
80
|
+
parslet (1.5.0)
|
|
81
|
+
blankslate (~> 2.0)
|
|
82
|
+
posix-spawn (0.3.11)
|
|
83
|
+
pygments.rb (0.6.3)
|
|
84
|
+
posix-spawn (~> 0.3.6)
|
|
85
|
+
yajl-ruby (~> 1.2.0)
|
|
47
86
|
rack (1.1.3)
|
|
48
87
|
rake (10.1.0)
|
|
88
|
+
rb-fsevent (0.9.4)
|
|
89
|
+
rb-inotify (0.9.5)
|
|
90
|
+
ffi (>= 0.5.0)
|
|
91
|
+
redcarpet (3.2.3)
|
|
49
92
|
redis (3.0.6)
|
|
50
93
|
redis-namespace (1.3.2)
|
|
51
94
|
redis (~> 3.0.4)
|
|
52
95
|
rubystats (0.2.3)
|
|
96
|
+
safe_yaml (1.0.4)
|
|
97
|
+
sass (3.4.13)
|
|
53
98
|
sqlite3 (1.3.10)
|
|
54
|
-
|
|
55
|
-
thor (0.18.1)
|
|
99
|
+
thor (0.19.1)
|
|
56
100
|
timecop (0.3.5)
|
|
101
|
+
timers (4.0.1)
|
|
102
|
+
hitimes
|
|
103
|
+
toml (0.1.2)
|
|
104
|
+
parslet (~> 1.5.0)
|
|
57
105
|
webmock (1.8.0)
|
|
58
106
|
addressable (>= 2.2.7)
|
|
59
107
|
crack (>= 0.1.7)
|
|
108
|
+
yajl-ruby (1.2.1)
|
|
60
109
|
yard (0.7.5)
|
|
61
110
|
|
|
62
111
|
PLATFORMS
|
|
112
|
+
java
|
|
63
113
|
ruby
|
|
64
114
|
|
|
65
115
|
DEPENDENCIES
|
|
66
116
|
RedCloth
|
|
67
|
-
|
|
117
|
+
activerecord-jdbc-adapter
|
|
118
|
+
appraisal (~> 1.0.2)
|
|
68
119
|
bson_ext
|
|
69
120
|
bundler (>= 1.0.0)
|
|
70
121
|
garb (< 0.9.2)
|
|
71
122
|
integration (<= 0.1.0)
|
|
123
|
+
jdbc-sqlite3
|
|
72
124
|
jekyll
|
|
73
125
|
minitest (>= 4.2)
|
|
74
126
|
mongo
|
|
@@ -77,7 +129,7 @@ DEPENDENCIES
|
|
|
77
129
|
redis (>= 2.1)
|
|
78
130
|
redis-namespace (>= 1.1.0)
|
|
79
131
|
rubystats
|
|
80
|
-
sqlite3
|
|
132
|
+
sqlite3 (~> 1.3.10)
|
|
81
133
|
timecop
|
|
82
134
|
vanity!
|
|
83
135
|
webmock
|
data/README.rdoc
CHANGED
|
@@ -6,7 +6,7 @@ Vanity is an A/B testing framework for Rails that is datastore agnostic.
|
|
|
6
6
|
* All about Vanity: http://vanity.labnotes.org
|
|
7
7
|
* On Github: http://github.com/assaf/vanity
|
|
8
8
|
|
|
9
|
-
{<img src="https://raw.githubusercontent.com/assaf/vanity/
|
|
9
|
+
{<img src="https://raw.githubusercontent.com/assaf/vanity/master/doc/images/sidebar_test.png" alt="Dashbarod" />}[http://github.com/assaf/vanity]
|
|
10
10
|
|
|
11
11
|
== A/B Testing With Rails
|
|
12
12
|
|
|
@@ -43,6 +43,11 @@ A sample <code>config/vanity.yml</code> might look like:
|
|
|
43
43
|
adapter: redis
|
|
44
44
|
connection: redis://<%= ENV["REDIS_USER"] %>:<%= ENV["REDIS_PASSWORD"] %>@<%= ENV["REDIS_HOST"] %>:<%= ENV["REDIS_PORT"] %>/0
|
|
45
45
|
|
|
46
|
+
If you want to use your test environment with RSpec you will need to add an adapter to test:
|
|
47
|
+
|
|
48
|
+
test:
|
|
49
|
+
adapter: redis
|
|
50
|
+
collecting: false
|
|
46
51
|
|
|
47
52
|
===== MongoDB Setup
|
|
48
53
|
|
|
@@ -182,7 +187,9 @@ Here's what's tested and known to work:
|
|
|
182
187
|
Rails: 3.2, 4.x
|
|
183
188
|
Ruby 2.2
|
|
184
189
|
Persistence: Redis, Mongo, ActiveRecord
|
|
185
|
-
Rails: 4.
|
|
190
|
+
Rails: 3.2, 4.x
|
|
191
|
+
|
|
192
|
+
If you receive 'a warning: circular argument reference - score' this was fixed in [2.0.7 beta](https://github.com/assaf/vanity/commit/1b5bf18636caa5eae279e2aef2e24c923e63b141)
|
|
186
193
|
|
|
187
194
|
== Testing
|
|
188
195
|
|
|
@@ -190,6 +197,17 @@ For view tests/specs or integration testing, it's handy to set the outcome of an
|
|
|
190
197
|
|
|
191
198
|
Vanity.playground.experiment(:price_options).chooses(19)
|
|
192
199
|
|
|
200
|
+
== Updating documentation
|
|
201
|
+
|
|
202
|
+
Documenation is written in the textile format in the [docs](docs/) directory, and is hosted on Github Pages. To update the docs commit changes to the master branch in this repository, then:
|
|
203
|
+
|
|
204
|
+
bundle exec rake docs # output HTML files into html/
|
|
205
|
+
git checkout gh-pages
|
|
206
|
+
mv html/* . # Move generated html to the top of the repo
|
|
207
|
+
git commit # Add, commit and push any changes!
|
|
208
|
+
|
|
209
|
+
Go ahead and target a pull request against the `gh-pages` branch.
|
|
210
|
+
|
|
193
211
|
== Contributing
|
|
194
212
|
|
|
195
213
|
* Fork the project
|
data/Rakefile
CHANGED
|
@@ -8,7 +8,7 @@ desc "Test everything"
|
|
|
8
8
|
task "test:all"=>"test:adapters"
|
|
9
9
|
|
|
10
10
|
# Ruby versions we're testing with.
|
|
11
|
-
RUBIES = %w{1.9.3 2.0.0}
|
|
11
|
+
RUBIES = %w{1.9.3 2.0.0 jruby-1.7.13}
|
|
12
12
|
|
|
13
13
|
# Use rake test:rubies to run all combination of tests (see test:adapters) using
|
|
14
14
|
# all the versions of Ruby specified in RUBIES. Or to test a specific version of
|
|
@@ -24,10 +24,10 @@ task "test:rubies", :ruby do |t, args|
|
|
|
24
24
|
rubies.each do |ruby|
|
|
25
25
|
puts "** Setup #{ruby}"
|
|
26
26
|
sh "env rvm_install_on_use_flag=1 rvm_gemset_create_on_use_flag=1 rvm use #{ruby}@vanity"
|
|
27
|
-
sh "rvm #{ruby}@vanity rake test:setup"
|
|
27
|
+
sh "rvm #{ruby}@vanity do rake test:setup"
|
|
28
28
|
puts
|
|
29
29
|
puts "** Test using #{ruby}"
|
|
30
|
-
sh "rvm #{ruby}@vanity
|
|
30
|
+
sh "rvm #{ruby}@vanity do rake test:adapters #{'--trace' if Rake.application.options.trace}"
|
|
31
31
|
end
|
|
32
32
|
end
|
|
33
33
|
|
|
@@ -38,11 +38,11 @@ task "test:setup" do
|
|
|
38
38
|
rescue LoadError
|
|
39
39
|
sh "gem install bundler"
|
|
40
40
|
end
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
41
|
+
|
|
42
|
+
# Make sure we got all the dependencies
|
|
43
|
+
sh "bundle check || bundle install"
|
|
44
|
+
|
|
45
|
+
sh "appraisal install" # Make sure that all of the gemsets are set up
|
|
46
46
|
end
|
|
47
47
|
|
|
48
48
|
# These are all the adapters we're going to test with.
|
data/gemfiles/rails32.gemfile
CHANGED
|
@@ -5,26 +5,35 @@ source "https://rubygems.org"
|
|
|
5
5
|
gem "rack"
|
|
6
6
|
gem "redis", ">= 2.1"
|
|
7
7
|
gem "redis-namespace", ">= 1.1.0"
|
|
8
|
-
gem "bson_ext"
|
|
9
8
|
gem "mongo"
|
|
10
|
-
gem "sqlite3"
|
|
11
9
|
gem "integration", "<= 0.1.0"
|
|
12
10
|
gem "rubystats"
|
|
13
11
|
gem "garb", "< 0.9.2"
|
|
14
|
-
gem "timecop", :require=>false
|
|
15
|
-
gem "webmock", :require=>false
|
|
16
|
-
gem "mocha", "~> 0
|
|
12
|
+
gem "timecop", :require => false
|
|
13
|
+
gem "webmock", :require => false
|
|
14
|
+
gem "mocha", "~> 1.0", :require => false
|
|
17
15
|
gem "minitest", "~>4.2.0"
|
|
18
|
-
gem "
|
|
19
|
-
gem "
|
|
16
|
+
gem "test-unit", "~> 3.0"
|
|
17
|
+
gem "rails", "3.2.22"
|
|
18
|
+
gem "fastthread", :git => "git://github.com/zoltankiss/fastthread.git", :platforms => :mri_20
|
|
20
19
|
gem "passenger", "~>3.0"
|
|
21
20
|
|
|
22
21
|
group :development do
|
|
23
|
-
gem "appraisal", "
|
|
24
|
-
gem "jekyll"
|
|
22
|
+
gem "appraisal", "~> 1.0.2"
|
|
23
|
+
gem "jekyll", :platform => :ruby
|
|
25
24
|
gem "rake"
|
|
26
25
|
gem "RedCloth"
|
|
27
26
|
gem "yard"
|
|
28
27
|
end
|
|
29
28
|
|
|
30
|
-
|
|
29
|
+
platforms :ruby do
|
|
30
|
+
gem "bson_ext"
|
|
31
|
+
gem "sqlite3", "~> 1.3.10"
|
|
32
|
+
end
|
|
33
|
+
|
|
34
|
+
platforms :jruby do
|
|
35
|
+
gem "activerecord-jdbc-adapter"
|
|
36
|
+
gem "jdbc-sqlite3"
|
|
37
|
+
end
|
|
38
|
+
|
|
39
|
+
gemspec :path => "../"
|
|
@@ -7,167 +7,222 @@ GIT
|
|
|
7
7
|
PATH
|
|
8
8
|
remote: ..
|
|
9
9
|
specs:
|
|
10
|
-
vanity (2.0.0.
|
|
10
|
+
vanity (2.0.0.beta8)
|
|
11
11
|
i18n
|
|
12
12
|
|
|
13
13
|
GEM
|
|
14
14
|
remote: https://rubygems.org/
|
|
15
15
|
specs:
|
|
16
16
|
RedCloth (4.2.9)
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
17
|
+
RedCloth (4.2.9-java)
|
|
18
|
+
actionmailer (3.2.22)
|
|
19
|
+
actionpack (= 3.2.22)
|
|
20
|
+
mail (~> 2.5.4)
|
|
21
|
+
actionpack (3.2.22)
|
|
22
|
+
activemodel (= 3.2.22)
|
|
23
|
+
activesupport (= 3.2.22)
|
|
23
24
|
builder (~> 3.0.0)
|
|
24
25
|
erubis (~> 2.7.0)
|
|
25
|
-
journey (~> 1.0.
|
|
26
|
-
rack (~> 1.4.
|
|
27
|
-
rack-cache (~> 1.
|
|
26
|
+
journey (~> 1.0.4)
|
|
27
|
+
rack (~> 1.4.5)
|
|
28
|
+
rack-cache (~> 1.2)
|
|
28
29
|
rack-test (~> 0.6.1)
|
|
29
|
-
sprockets (~> 2.1
|
|
30
|
-
activemodel (3.2.
|
|
31
|
-
activesupport (= 3.2.
|
|
30
|
+
sprockets (~> 2.2.1)
|
|
31
|
+
activemodel (3.2.22)
|
|
32
|
+
activesupport (= 3.2.22)
|
|
32
33
|
builder (~> 3.0.0)
|
|
33
|
-
activerecord (3.2.
|
|
34
|
-
activemodel (= 3.2.
|
|
35
|
-
activesupport (= 3.2.
|
|
36
|
-
arel (~> 3.0.
|
|
34
|
+
activerecord (3.2.22)
|
|
35
|
+
activemodel (= 3.2.22)
|
|
36
|
+
activesupport (= 3.2.22)
|
|
37
|
+
arel (~> 3.0.2)
|
|
37
38
|
tzinfo (~> 0.3.29)
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
39
|
+
activerecord-jdbc-adapter (1.3.15)
|
|
40
|
+
activerecord (>= 2.2)
|
|
41
|
+
activeresource (3.2.22)
|
|
42
|
+
activemodel (= 3.2.22)
|
|
43
|
+
activesupport (= 3.2.22)
|
|
44
|
+
activesupport (3.2.22)
|
|
45
|
+
i18n (~> 0.6, >= 0.6.4)
|
|
43
46
|
multi_json (~> 1.0)
|
|
44
47
|
addressable (2.2.7)
|
|
45
|
-
|
|
46
|
-
posix-spawn (>= 0.3.6)
|
|
47
|
-
appraisal (1.0.0.beta2)
|
|
48
|
+
appraisal (1.0.3)
|
|
48
49
|
bundler
|
|
49
50
|
rake
|
|
50
51
|
thor (>= 0.14.0)
|
|
51
|
-
arel (3.0.
|
|
52
|
+
arel (3.0.3)
|
|
53
|
+
blankslate (2.1.2.4)
|
|
52
54
|
bson (1.6.0)
|
|
55
|
+
bson (1.6.0-java)
|
|
53
56
|
bson_ext (1.6.0)
|
|
54
57
|
bson (= 1.6.0)
|
|
55
|
-
builder (3.0.
|
|
56
|
-
|
|
57
|
-
|
|
58
|
+
builder (3.0.4)
|
|
59
|
+
celluloid (0.16.0)
|
|
60
|
+
timers (~> 4.0.0)
|
|
61
|
+
classifier-reborn (2.0.3)
|
|
62
|
+
fast-stemmer (~> 1.0)
|
|
63
|
+
coffee-script (2.4.1)
|
|
64
|
+
coffee-script-source
|
|
65
|
+
execjs
|
|
66
|
+
coffee-script-source (1.9.1)
|
|
67
|
+
colorator (0.1)
|
|
58
68
|
crack (0.3.1)
|
|
59
69
|
daemon_controller (1.0.0)
|
|
60
|
-
directory_watcher (1.4.1)
|
|
61
70
|
erubis (2.7.0)
|
|
62
|
-
|
|
71
|
+
execjs (2.5.2)
|
|
72
|
+
fast-stemmer (1.0.2)
|
|
73
|
+
ffi (1.9.8)
|
|
63
74
|
garb (0.9.1)
|
|
64
75
|
activesupport (>= 2.2.0)
|
|
65
76
|
crack (>= 0.1.6)
|
|
66
|
-
hike (1.2.
|
|
67
|
-
|
|
77
|
+
hike (1.2.3)
|
|
78
|
+
hitimes (1.2.2)
|
|
79
|
+
i18n (0.7.0)
|
|
68
80
|
integration (0.1.0)
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
classifier (~>
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
81
|
+
jdbc-sqlite3 (3.8.7)
|
|
82
|
+
jekyll (2.5.3)
|
|
83
|
+
classifier-reborn (~> 2.0)
|
|
84
|
+
colorator (~> 0.1)
|
|
85
|
+
jekyll-coffeescript (~> 1.0)
|
|
86
|
+
jekyll-gist (~> 1.0)
|
|
87
|
+
jekyll-paginate (~> 1.0)
|
|
88
|
+
jekyll-sass-converter (~> 1.0)
|
|
89
|
+
jekyll-watch (~> 1.1)
|
|
90
|
+
kramdown (~> 1.3)
|
|
91
|
+
liquid (~> 2.6.1)
|
|
92
|
+
mercenary (~> 0.3.3)
|
|
93
|
+
pygments.rb (~> 0.6.0)
|
|
94
|
+
redcarpet (~> 3.1)
|
|
95
|
+
safe_yaml (~> 1.0)
|
|
96
|
+
toml (~> 0.1.0)
|
|
97
|
+
jekyll-coffeescript (1.0.1)
|
|
98
|
+
coffee-script (~> 2.2)
|
|
99
|
+
jekyll-gist (1.2.1)
|
|
100
|
+
jekyll-paginate (1.1.0)
|
|
101
|
+
jekyll-sass-converter (1.3.0)
|
|
102
|
+
sass (~> 3.2)
|
|
103
|
+
jekyll-watch (1.2.1)
|
|
104
|
+
listen (~> 2.7)
|
|
105
|
+
journey (1.0.4)
|
|
106
|
+
json (1.8.3)
|
|
107
|
+
json (1.8.3-java)
|
|
108
|
+
kramdown (1.6.0)
|
|
109
|
+
liquid (2.6.2)
|
|
110
|
+
listen (2.10.0)
|
|
111
|
+
celluloid (~> 0.16.0)
|
|
112
|
+
rb-fsevent (>= 0.9.3)
|
|
113
|
+
rb-inotify (>= 0.9)
|
|
114
|
+
mail (2.5.4)
|
|
82
115
|
mime-types (~> 1.16)
|
|
83
116
|
treetop (~> 1.4.8)
|
|
84
|
-
|
|
85
|
-
syntax (>= 1.0.0)
|
|
117
|
+
mercenary (0.3.5)
|
|
86
118
|
metaclass (0.0.4)
|
|
87
|
-
mime-types (1.
|
|
119
|
+
mime-types (1.25.1)
|
|
88
120
|
minitest (4.2.0)
|
|
89
|
-
mocha (
|
|
121
|
+
mocha (1.1.0)
|
|
90
122
|
metaclass (~> 0.0.1)
|
|
91
123
|
mongo (1.6.0)
|
|
92
124
|
bson (= 1.6.0)
|
|
93
|
-
multi_json (1.1
|
|
125
|
+
multi_json (1.11.1)
|
|
126
|
+
parslet (1.5.0)
|
|
127
|
+
blankslate (~> 2.0)
|
|
94
128
|
passenger (3.0.11)
|
|
95
129
|
daemon_controller (>= 0.2.5)
|
|
96
130
|
fastthread (>= 1.0.1)
|
|
97
131
|
rack
|
|
98
132
|
rake (>= 0.8.1)
|
|
99
|
-
polyglot (0.3.
|
|
100
|
-
posix-spawn (0.3.
|
|
101
|
-
|
|
102
|
-
|
|
133
|
+
polyglot (0.3.5)
|
|
134
|
+
posix-spawn (0.3.11)
|
|
135
|
+
power_assert (0.2.2)
|
|
136
|
+
pygments.rb (0.6.3)
|
|
137
|
+
posix-spawn (~> 0.3.6)
|
|
138
|
+
yajl-ruby (~> 1.2.0)
|
|
139
|
+
rack (1.4.7)
|
|
140
|
+
rack-cache (1.2)
|
|
103
141
|
rack (>= 0.4)
|
|
104
|
-
rack-ssl (1.3.
|
|
142
|
+
rack-ssl (1.3.4)
|
|
105
143
|
rack
|
|
106
|
-
rack-test (0.6.
|
|
144
|
+
rack-test (0.6.3)
|
|
107
145
|
rack (>= 1.0)
|
|
108
|
-
rails (3.2.
|
|
109
|
-
actionmailer (= 3.2.
|
|
110
|
-
actionpack (= 3.2.
|
|
111
|
-
activerecord (= 3.2.
|
|
112
|
-
activeresource (= 3.2.
|
|
113
|
-
activesupport (= 3.2.
|
|
146
|
+
rails (3.2.22)
|
|
147
|
+
actionmailer (= 3.2.22)
|
|
148
|
+
actionpack (= 3.2.22)
|
|
149
|
+
activerecord (= 3.2.22)
|
|
150
|
+
activeresource (= 3.2.22)
|
|
151
|
+
activesupport (= 3.2.22)
|
|
114
152
|
bundler (~> 1.0)
|
|
115
|
-
railties (= 3.2.
|
|
116
|
-
railties (3.2.
|
|
117
|
-
actionpack (= 3.2.
|
|
118
|
-
activesupport (= 3.2.
|
|
153
|
+
railties (= 3.2.22)
|
|
154
|
+
railties (3.2.22)
|
|
155
|
+
actionpack (= 3.2.22)
|
|
156
|
+
activesupport (= 3.2.22)
|
|
119
157
|
rack-ssl (~> 1.3.2)
|
|
120
158
|
rake (>= 0.8.7)
|
|
121
159
|
rdoc (~> 3.4)
|
|
122
|
-
thor (
|
|
123
|
-
rake (
|
|
124
|
-
|
|
160
|
+
thor (>= 0.14.6, < 2.0)
|
|
161
|
+
rake (10.4.2)
|
|
162
|
+
rb-fsevent (0.9.4)
|
|
163
|
+
rb-inotify (0.9.5)
|
|
164
|
+
ffi (>= 0.5.0)
|
|
165
|
+
rdoc (3.12.2)
|
|
125
166
|
json (~> 1.4)
|
|
167
|
+
redcarpet (3.2.3)
|
|
126
168
|
redis (3.0.6)
|
|
127
169
|
redis-namespace (1.3.2)
|
|
128
170
|
redis (~> 3.0.4)
|
|
129
171
|
rubystats (0.2.3)
|
|
130
|
-
|
|
172
|
+
safe_yaml (1.0.4)
|
|
173
|
+
sass (3.4.13)
|
|
174
|
+
sprockets (2.2.3)
|
|
131
175
|
hike (~> 1.2)
|
|
176
|
+
multi_json (~> 1.0)
|
|
132
177
|
rack (~> 1.0)
|
|
133
178
|
tilt (~> 1.1, != 1.3.0)
|
|
134
|
-
sqlite3 (1.3.
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
179
|
+
sqlite3 (1.3.10)
|
|
180
|
+
test-unit (3.0.9)
|
|
181
|
+
power_assert
|
|
182
|
+
thor (0.19.1)
|
|
183
|
+
tilt (1.4.1)
|
|
138
184
|
timecop (0.3.5)
|
|
139
|
-
|
|
185
|
+
timers (4.0.1)
|
|
186
|
+
hitimes
|
|
187
|
+
toml (0.1.2)
|
|
188
|
+
parslet (~> 1.5.0)
|
|
189
|
+
treetop (1.4.15)
|
|
140
190
|
polyglot
|
|
141
191
|
polyglot (>= 0.3.1)
|
|
142
|
-
tzinfo (0.3.
|
|
192
|
+
tzinfo (0.3.44)
|
|
143
193
|
webmock (1.8.0)
|
|
144
194
|
addressable (>= 2.2.7)
|
|
145
195
|
crack (>= 0.1.7)
|
|
196
|
+
yajl-ruby (1.2.1)
|
|
146
197
|
yard (0.7.5)
|
|
147
198
|
|
|
148
199
|
PLATFORMS
|
|
200
|
+
java
|
|
149
201
|
ruby
|
|
150
202
|
|
|
151
203
|
DEPENDENCIES
|
|
152
204
|
RedCloth
|
|
153
|
-
|
|
205
|
+
activerecord-jdbc-adapter
|
|
206
|
+
appraisal (~> 1.0.2)
|
|
154
207
|
bson_ext
|
|
155
208
|
bundler (>= 1.0.0)
|
|
156
209
|
fastthread!
|
|
157
210
|
garb (< 0.9.2)
|
|
158
211
|
integration (<= 0.1.0)
|
|
212
|
+
jdbc-sqlite3
|
|
159
213
|
jekyll
|
|
160
214
|
minitest (~> 4.2.0)
|
|
161
|
-
mocha (~> 0
|
|
215
|
+
mocha (~> 1.0)
|
|
162
216
|
mongo
|
|
163
217
|
passenger (~> 3.0)
|
|
164
218
|
rack
|
|
165
|
-
rails (= 3.2.
|
|
219
|
+
rails (= 3.2.22)
|
|
166
220
|
rake
|
|
167
221
|
redis (>= 2.1)
|
|
168
222
|
redis-namespace (>= 1.1.0)
|
|
169
223
|
rubystats
|
|
170
|
-
sqlite3
|
|
224
|
+
sqlite3 (~> 1.3.10)
|
|
225
|
+
test-unit (~> 3.0)
|
|
171
226
|
timecop
|
|
172
227
|
vanity!
|
|
173
228
|
webmock
|