minor shit updates

This commit is contained in:
Harry Bomrah 2012-09-13 19:02:08 +08:00 committed by Christophe Vilayphiou
parent 29ea95b4c6
commit 73d5074037
2 changed files with 8 additions and 2 deletions

View File

@ -51,7 +51,7 @@ gem 'rb-readline' if RUBY_PLATFORM.downcase.include?("linux")
gem "impressionist", :git => 'git://github.com/charlotte-ruby/impressionist.git'
#gem 'contacts'
gem 'event-calendar', :require => 'event_calendar'
gem 'event-calendar', :require => 'event_calendar'#, :git => 'git://github.com/elevation/event_calendar.git'
gem 'redis','>= 2.1.1'
gem 'chinese_pinyin', '0.4.1'

View File

@ -1,4 +1,10 @@
class Event
include Mongoid::Document
has_event_calendar
include EventCalendar
has_event_calendar
# def self.events_for_date_range(start_d, end_d, find_options = {})
# where(find_options.merge(self.end_at_field.to_sym.lt => end_d.to_time.utc,
# self.start_at_field.to_sym.gt => start_d.to_time.utc)).asc(self.start_at_field)
# end
end