File tree 3 files changed +3
-6
lines changed
3 files changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -28,10 +28,10 @@ $provision = 'vagrant/bootstrap.sh'
28
28
29
29
Vagrant . configure ( VAGRANTFILE_API_VERSION ) do |config |
30
30
31
- config . vm . box = box
32
- # config.vm.box_url = box_url
31
+ config . vm . box = $ box
32
+ config . vm . box_url = $ box_url
33
33
config . vm . provision :shell do |s |
34
- s . path = provision
34
+ s . path = $ provision
35
35
end
36
36
37
37
config . ssh . keep_alive = true
Original file line number Diff line number Diff line change @@ -2,7 +2,5 @@ module TeamSearch
2
2
extend ActiveSupport ::Concern
3
3
included do
4
4
include Elasticsearch ::Model
5
-
6
- #TODO
7
5
end
8
6
end
Original file line number Diff line number Diff line change 1
1
# encoding utf-8
2
2
require 'search'
3
3
4
- #Rename to Team when Mongodb is dropped
5
4
class Team < ActiveRecord ::Base
6
5
DEFAULT_HEX_BRAND = '#343131'
7
6
LEADERBOARD_KEY = 'teams:leaderboard'
You can’t perform that action at this time.
0 commit comments