generated from appdev-projects/base-rails
-
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.
- Loading branch information
0 parents
commit 7126c6e
Showing
108 changed files
with
10,442 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 @@ | ||
defaults |
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,47 @@ | ||
# See https://help.github.com/articles/ignoring-files for more about ignoring files. | ||
# | ||
# If you find yourself ignoring temporary files generated by your text editor | ||
# or operating system, you probably want to add a global ignore instead: | ||
# git config --global core.excludesfile '~/.gitignore_global' | ||
|
||
# Ignore bundler config. | ||
/.bundle | ||
|
||
# Ignore the default SQLite database. | ||
# /db/*.sqlite3 | ||
# /db/*.sqlite3-journal | ||
|
||
# Ignore all logfiles and tempfiles. | ||
/log/* | ||
/tmp/* | ||
!/log/.keep | ||
!/tmp/.keep | ||
|
||
# Ignore uploaded files in development. | ||
/storage/* | ||
!/storage/.keep | ||
|
||
/public/assets | ||
.byebug_history | ||
|
||
# Ignore master key for decrypting credentials and more. | ||
/config/master.key | ||
|
||
/public/packs | ||
/public/packs-test | ||
/node_modules | ||
/yarn-error.log | ||
yarn-debug.log* | ||
.yarn-integrity | ||
|
||
# Ignore dotenv files | ||
/.env* | ||
|
||
.rbenv-gemsets | ||
examples.txt | ||
whitelist.yml | ||
grades.yml | ||
cloud9_plugins.sh | ||
appdev/ | ||
node_modules | ||
package-lock.json |
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,7 @@ | ||
image: jelaniwoods/appdev-ruby2_6_5 | ||
|
||
tasks: | ||
- init: bin/setup | ||
ports: | ||
- port: 3000 | ||
onOpen: open-preview |
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,8 @@ | ||
Pry.config.print = proc do |output, value, _pry_| | ||
case value | ||
when ActiveRecord::Relation | ||
output.puts "=> #{value.to_s}" | ||
else | ||
Pry::DEFAULT_PRINT.call(output, value, _pry_) | ||
end | ||
end |
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,4 @@ | ||
--color | ||
--format documentation | ||
--order default | ||
--require spec_helper |
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 @@ | ||
ruby-2.6.5 |
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,4 @@ | ||
{ | ||
"editor.autoSave": "on", | ||
"editor.tabSize": 2, | ||
} |
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,14 @@ | ||
{ | ||
"tasks": [ | ||
{ | ||
"label": "ERB formatter", | ||
"type": "shell", | ||
"command": "bin/format_erbs", | ||
"presentation": { | ||
"reveal": "never", | ||
"echo": false | ||
}, | ||
"problemMatcher": [] | ||
} | ||
] | ||
} |
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,56 @@ | ||
source 'https://rubygems.org' | ||
git_source(:github) { |repo| "https://github.com/#{repo}.git" } | ||
|
||
ruby '2.6.5' | ||
|
||
gem 'activeadmin', '2.2.0' | ||
gem 'bcrypt' | ||
gem 'bootsnap', '>= 1.4.2', require: false | ||
gem 'devise' | ||
gem 'http' | ||
gem 'jbuilder', '~> 2.7' | ||
gem 'puma', '~> 3.11' | ||
gem 'rails', '~> 6.0.0' | ||
gem 'sassc-rails' | ||
gem 'webpacker', '~> 4.0' | ||
|
||
group :development do | ||
gem 'listen', '>= 3.0.5', '< 3.2' | ||
gem 'spring-watcher-listen', '~> 2.0.0' | ||
gem 'spring' | ||
gem 'web-console', '>= 3.3.0' | ||
end | ||
|
||
group :development, :test do | ||
gem 'awesome_print' | ||
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw] | ||
gem 'dotenv-rails' | ||
gem 'faker', git: 'https://github.com/faker-ruby/faker.git', branch: 'master' | ||
gem 'grade_runner', github: 'firstdraft/grade_runner' | ||
gem 'pry-rails' | ||
gem 'sqlite3', '~> 1.4' | ||
gem 'table_print' | ||
gem 'web_git', github: 'firstdraft/web_git' | ||
end | ||
|
||
group :development do | ||
gem 'annotate', '< 3.0.0' | ||
gem 'better_errors' | ||
gem 'binding_of_caller' | ||
gem 'draft_generators', github: 'firstdraft/draft_generators', branch: 'summer-2019' | ||
gem 'letter_opener' | ||
gem 'meta_request' | ||
end | ||
|
||
group :test do | ||
gem 'capybara' | ||
gem 'factory_bot_rails' | ||
gem 'rspec-html-matchers' | ||
gem 'rspec-rails' | ||
gem 'webmock' | ||
end | ||
|
||
group :production do | ||
gem 'pg' | ||
gem 'rails_12factor' | ||
end |
Oops, something went wrong.