David Kimura PRO
Joined 7/18/2015
Drifting Ruby Owner
Ruby Rogues Panelist
David Kimura PRO said over 6 years ago on FullCalendar Events and Scheduling :

It is a Rails application, so you would need to have Ruby installed. Check out https://www.driftingruby.com/episodes/getting-started-ruby-on-rails-development-environment on getting a non-system ruby installed on your environment. 

Then in the app root, you should be able to just do 

gem install bundler #installs bundle cli
bundle # installs gem dependencies
rake db:migrate # creates the SQLite3 Schema
rails s # starts the development server

David Kimura PRO said over 6 years ago on Charts and Graphs :

You might be able to do something like this for a daily count

current_user.impressions.group_by_day(:created_at).count

David Kimura PRO said over 6 years ago on Charts and Graphs :

The methods are within the GroupDate gem https://github.com/ankane/groupdate

The gem's documentation does say that it is compatible with postgres, but I am not sure if there is any additional setup on postgres like there is with MySQL.


David Kimura PRO said over 6 years ago on Plotting Points on a Map from Scratch :

Any JS errors?


David Kimura PRO said over 6 years ago on Client Side Validations :

Their later versions should support Turbolinks and Rails 5. However, they did deprecate the Uniqueness validation as it could be seen as a security risk. You shouldn't have to specify the branch anymore.