Skip to content

Commit de1c11a

Browse files
committed
Merge pull request #905 from Vizzuality/staging
Staging
2 parents cb78c41 + 8b7aca5 commit de1c11a

File tree

394 files changed

+40430
-13288
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

394 files changed

+40430
-13288
lines changed

.bowerrc

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"directory": "vendor/assets/bower_components"
3+
}

.editorconfig

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# EditorConfig helps developers define and maintain consistent
2+
# coding styles between different editors and IDEs
3+
# editorconfig.org
4+
5+
root = true
6+
7+
8+
[*]
9+
10+
# Change these settings to your own preference
11+
indent_style = space
12+
indent_size = 2
13+
14+
# We recommend you to keep these unchanged
15+
end_of_line = lf
16+
charset = utf-8
17+
trim_trailing_whitespace = true
18+
insert_final_newline = true
19+
20+
[*.md]
21+
trim_trailing_whitespace = false

.gitignore

+11-1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
/tmp
1717
/media/upload
1818
/public/uploads
19+
/public/media
1920

2021
.DS_Store
2122

@@ -24,6 +25,15 @@
2425
.rvmrc
2526
.env
2627
.idea/
28+
.grunt
29+
node_modules
30+
public/assets
31+
vendor/assets/bower_components
32+
jstest/SpecRunner.html
33+
34+
# Ignore Vagrant
35+
.vagrant
36+
Vagrantfile
2737

2838
# Ingore Sublime project files:
29-
*.sublime-*
39+
*.sublime-*

.jshintrc

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
{
2+
"bitwise": false,
3+
"browser": true,
4+
"jquery": true,
5+
"camelcase": false,
6+
"curly": true,
7+
"eqeqeq": true,
8+
"esnext": true,
9+
"expr": true,
10+
"immed": true,
11+
"indent": 2,
12+
"latedef": true,
13+
"newcap": true,
14+
"noarg": true,
15+
"node": true,
16+
"noempty": true,
17+
"nonstandard": true,
18+
"quotmark": "single",
19+
"regexp": true,
20+
"smarttabs": true,
21+
"strict": true,
22+
"trailing": true,
23+
"undef": true,
24+
"unused": true,
25+
"expr": true,
26+
27+
"predef": [
28+
"define",
29+
"google",
30+
"cdb",
31+
"cartodb"
32+
]
33+
}

Gemfile

+3-4
Original file line numberDiff line numberDiff line change
@@ -13,20 +13,20 @@ gem 'carrierwave'
1313
gem 'fog'
1414
gem 'rmagick', :require => false
1515
gem 'unf'
16+
gem 'requirejs-rails'
1617

1718
group :development, :test do
1819
gem 'rspec-rails', '~> 2.0'
1920
gem 'launchy' # this lets us call save_and_open_page to see what's on a page for debugging capybara tests
2021
gem 'capybara', '2.0.3' # capybara-webkit works with this version
22+
gem 'capybara-screenshot'
2123
gem 'show_me_the_cookies'
2224
gem 'factory_girl_rails'
2325
gem 'shoulda-matchers'
24-
gem 'jasmine-rails'
25-
gem 'guard'
26-
gem 'guard-jasmine-rails'
2726
gem 'database_cleaner'
2827
gem 'debugger'
2928
end
29+
3030
group :development do
3131
gem 'better_errors'
3232
gem 'binding_of_caller'
@@ -35,7 +35,6 @@ group :development do
3535
end
3636

3737
group :production do
38-
gem 'pg'
3938
gem 'rails_12factor'
4039
end
4140

0 commit comments

Comments
 (0)