-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Trying to deploy
- Loading branch information
0 parents
commit 0bf3b87
Showing
88 changed files
with
3,427 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# EditorConfig helps developers define and maintain consistent | ||
# coding styles between different editors and IDEs | ||
# editorconfig.org | ||
|
||
root = true | ||
|
||
[*] | ||
end_of_line = lf | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true | ||
indent_style = space | ||
indent_size = 2 | ||
|
||
[*.js] | ||
indent_style = space | ||
indent_size = 2 | ||
|
||
[*.rb] | ||
indent_style = space | ||
indent_size = 2 | ||
|
||
[*.hbs] | ||
insert_final_newline = false | ||
indent_style = space | ||
indent_size = 2 | ||
|
||
[*.css] | ||
indent_style = space | ||
indent_size = 2 | ||
|
||
[*.html] | ||
indent_style = space | ||
indent_size = 2 | ||
|
||
[*.{diff,md}] | ||
trim_trailing_whitespace = 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"plugins": { | ||
"remark-lint": { | ||
"blockquote-indentation": "2", | ||
"checkbox-character-style": { | ||
"checked": "x", | ||
"unchecked": " " | ||
}, | ||
"code-block-style": "fenced", | ||
"heading-style": "atx", | ||
"list-item-spacing": false, | ||
"no-html": false, | ||
"no-shortcut-reference-link": true, | ||
"no-undefined-references": true, | ||
"ordered-list-marker-value": "one", | ||
"rule-style": "---", | ||
"unordered-list-marker-style": "-" | ||
} | ||
}, | ||
"settings": { | ||
"commonmark": true | ||
} | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
Style/Documentation: | ||
Exclude: | ||
- 'app/**/*' | ||
- 'db/migrate/**' | ||
|
||
Metrics/BlockLength: | ||
Exclude: | ||
- 'spec/**/*' | ||
|
||
AllCops: | ||
TargetRubyVersion: | ||
2.3 | ||
Exclude: | ||
- 'bin/*' | ||
- 'config/database.yml' | ||
- 'db/schema.rb' | ||
- 'spec/rails_helper.rb' | ||
- 'spec/spec_helper.rb' |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
2.3.1 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# Contributing | ||
|
||
If you would like to contribute, please follow the [style guide](STYLE.md). | ||
Issues labeled ["help | ||
wanted"](https://github.com/ga-wdi-boston/meta/labels/help%20wanted) are a good | ||
place to start! | ||
|
||
To contribute, clone this repository. If you don't have commit access: fork, | ||
clone, then pull request. | ||
|
||
Feel free to comment on any issue, including proposed changes. If you have any | ||
questions or want to discuss a new change, don't hesitate to file an issue. |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# frozen_string_literal: true | ||
# | ||
source 'https://rubygems.org' | ||
ruby '2.3.1' | ||
|
||
gem 'active_model_serializers', '~> 0.10.0' | ||
gem 'bcrypt', '~> 3.1.11' | ||
gem 'pg' | ||
gem 'puma', '~> 3.0' | ||
gem 'rack-cors', require: 'rack/cors' | ||
gem 'rails', '~> 5.0.1' | ||
|
||
group :development, :test do | ||
gem 'byebug', platform: :mri | ||
gem 'dotenv-rails', '~> 2.1', '>= 2.1.1' | ||
gem 'pry', '~> 0.10' | ||
gem 'pry-byebug', '~> 3.3' | ||
gem 'rspec-rails', '~> 3.5' | ||
gem 'rubocop', '~> 0.46' | ||
end | ||
|
||
group :development do | ||
gem 'listen', '~> 3.0.5' | ||
gem 'pry-rails', '~> 0.3.4' | ||
gem 'spring', '~> 1.6' | ||
gem 'spring-commands-rspec', '~> 1.0' | ||
end | ||
|
||
group :production do | ||
gem 'rails_12factor', '~> 0.0.3' | ||
end |
Oops, something went wrong.