This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"always_show_minimap_viewport": true, | |
"atomic_save": false, | |
"auto_complete_commit_on_tab": true, | |
"auto_complete_selector": "source, text", | |
"auto_complete_with_fields": true, | |
"caret_style": "phase", | |
"color_scheme": "Packages/User/Monokai Soda.tmTheme", | |
"ensure_newline_at_eof_on_save": true, | |
"fade_fold_buttons": false, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
source 'https://rubygems.org' | |
gem 'rails', '4.1.0.rc2' | |
gem 'pg' | |
gem 'sass-rails', '~> 4.0.2' | |
gem 'bootstrap-sass', '~> 3.1.1' | |
gem 'uglifier', '>= 1.3.0' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Disable Rails assets and RSpec view and helper specs generators | |
config.generators do |g| | |
g.assets false | |
g.test_framework :rspec, | |
view_specs: false, | |
helper_specs: false | |
end |