Skip to content

Commit

Permalink
Merge pull request #905 from Vizzuality/staging
Browse files Browse the repository at this point in the history
Staging
  • Loading branch information
apercas committed Sep 10, 2014
2 parents cb78c41 + 8b7aca5 commit de1c11a
Show file tree
Hide file tree
Showing 394 changed files with 40,430 additions and 13,288 deletions.
3 changes: 3 additions & 0 deletions .bowerrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"directory": "vendor/assets/bower_components"
}
21 changes: 21 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# EditorConfig helps developers define and maintain consistent
# coding styles between different editors and IDEs
# editorconfig.org

root = true


[*]

# Change these settings to your own preference
indent_style = space
indent_size = 2

# We recommend you to keep these unchanged
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[*.md]
trim_trailing_whitespace = false
12 changes: 11 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
/tmp
/media/upload
/public/uploads
/public/media

.DS_Store

Expand All @@ -24,6 +25,15 @@
.rvmrc
.env
.idea/
.grunt
node_modules
public/assets
vendor/assets/bower_components
jstest/SpecRunner.html

# Ignore Vagrant
.vagrant
Vagrantfile

# Ingore Sublime project files:
*.sublime-*
*.sublime-*
33 changes: 33 additions & 0 deletions .jshintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
"bitwise": false,
"browser": true,
"jquery": true,
"camelcase": false,
"curly": true,
"eqeqeq": true,
"esnext": true,
"expr": true,
"immed": true,
"indent": 2,
"latedef": true,
"newcap": true,
"noarg": true,
"node": true,
"noempty": true,
"nonstandard": true,
"quotmark": "single",
"regexp": true,
"smarttabs": true,
"strict": true,
"trailing": true,
"undef": true,
"unused": true,
"expr": true,

"predef": [
"define",
"google",
"cdb",
"cartodb"
]
}
7 changes: 3 additions & 4 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,20 +13,20 @@ gem 'carrierwave'
gem 'fog'
gem 'rmagick', :require => false
gem 'unf'
gem 'requirejs-rails'

group :development, :test do
gem 'rspec-rails', '~> 2.0'
gem 'launchy' # this lets us call save_and_open_page to see what's on a page for debugging capybara tests
gem 'capybara', '2.0.3' # capybara-webkit works with this version
gem 'capybara-screenshot'
gem 'show_me_the_cookies'
gem 'factory_girl_rails'
gem 'shoulda-matchers'
gem 'jasmine-rails'
gem 'guard'
gem 'guard-jasmine-rails'
gem 'database_cleaner'
gem 'debugger'
end

group :development do
gem 'better_errors'
gem 'binding_of_caller'
Expand All @@ -35,7 +35,6 @@ group :development do
end

group :production do
gem 'pg'
gem 'rails_12factor'
end

Expand Down
Loading

0 comments on commit de1c11a

Please sign in to comment.