Skip to content

Commit e6d5570

Browse files
committed
Fixed typo that was introduced into Vagrantfile
1 parent e5e3006 commit e6d5570

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

Vagrantfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ $provision = 'vagrant/bootstrap.sh'
2828

2929
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
3030

31-
config.vm.box = box
32-
#config.vm.box_url = box_url
31+
config.vm.box = $box
32+
config.vm.box_url = $box_url
3333
config.vm.provision :shell do |s|
34-
s.path = provision
34+
s.path = $provision
3535
end
3636

3737
config.ssh.keep_alive = true

app/models/concerns/team_search.rb

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,5 @@ module TeamSearch
22
extend ActiveSupport::Concern
33
included do
44
include Elasticsearch::Model
5-
6-
#TODO
75
end
86
end

app/models/team.rb

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# encoding utf-8
22
require 'search'
33

4-
#Rename to Team when Mongodb is dropped
54
class Team < ActiveRecord::Base
65
DEFAULT_HEX_BRAND = '#343131'
76
LEADERBOARD_KEY = 'teams:leaderboard'

0 commit comments

Comments
 (0)