Skip to content
This repository has been archived by the owner on Aug 8, 2018. It is now read-only.

a couple additions for better dev time #2

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.0.0
2.1.0
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm more thinking about killing this file than updating it, I don't want to lock the ruby version for no reason (this repo is supposed to be for brand new projects, no strong dependencies)

17 changes: 11 additions & 6 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,23 +1,26 @@
source 'https://rubygems.org'

# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '4.0.0'
gem 'rails', '4.1'
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It may be better to unlock the rails version and get whatever is the latest when you start a project


# web
# gem 'unicorn'
gem 'puma'

# uncomment for heroku
#gem 'rails_12factor', group: :production

# databases
gem 'pg'
gem 'redis'
gem 'redis-objects'

# Assets:
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.0.0'
gem 'sass-rails', '~> 4.0.0'
gem 'compass-rails', '~> 2.0.alpha.0'
gem 'zurb-foundation', '>= 4.0.0'
gem 'uglifier'
gem 'coffee-rails'
gem 'sass-rails'
gem 'compass-rails'
gem 'foundation-rails', "~> 5.0.0"
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

maybe remove the foundation version too


# Account:

Expand Down Expand Up @@ -61,8 +64,10 @@ group :development do
gem 'guard-livereload'
gem 'rack-livereload'
gem 'foreman'
gem 'quiet_assets'
end

gem 'rails-rename', '~> 1.0.0'
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'd put this in the development group, or nowhere, seems like rails 4+ apps are pretty easy to rename manually

gem 'whenever', require: false

# Use ActiveModel has_secure_password
Expand Down
Loading