cerberussg
Joined 5/13/2019
cerberussg said almost 5 years ago on Is simple_form still useful in 2019 :
These are all beauties too! I agree here as well use most if not all for all projects minus a few older projects I have out there.

cerberussg said almost 5 years ago on Is simple_form still useful in 2019 :
I agree with all of this here, I guess I was looking for a forum area to post and get feedback from you and your community here, only resource I utilize outside of Google searches and Twitter. Couldnt quite find an answer on simple_form being out of touch these days, found plenty still arguing for it but I think that was in a pre Rails 5.1-5.2 context, now with Rails 6.rc1 out its more so showing its age, especially if you are looking to encorporate a more symantec CSS Framework. I suppose we can close this or remove it, or preserve for others to look over. Your call.

cerberussg said almost 4 years ago on Reusable Ruby on Rails Application Templates :
Just a heads up with the latest ruby and rails installed bundler threw errors but installed. So I investigated on removing or cleaning up the warning about registering. Was a rubygems issue, needed to run gem update --system 3.0.8 && gem update --system, once I did that it cleared up the error but created another issue.

When you got to the generate model if answered yes it would hang. Due to an issue with spring preloader, had to put in under your run 'bundle install',  run 'spring stop'

So the file now looks like:

 gem 'devise'

  run 'bundle install'
  run 'spring stop'
 
  if yes?("Do you want to generate a User Model (first_name, last_name, admin:boolean)?")
    generate(:model, 'user', 'first_name', 'last_name', 'admin:boolean')
 end

 # rails g devise:install
 generate('devise:install')
 generate(:devise, 'User')
 
 environment 'config.action_mailer.default_url_options = { host: "localhost", port: 3000 }', env: 'development'