Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
serivas committed Jan 27, 2020
0 parents commit 7126c6e
Show file tree
Hide file tree
Showing 108 changed files with 10,442 additions and 0 deletions.
1 change: 1 addition & 0 deletions .browserslistrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
defaults
47 changes: 47 additions & 0 deletions .gitignore
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
7 changes: 7 additions & 0 deletions .gitpod.yml
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
8 changes: 8 additions & 0 deletions .pryrc
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
4 changes: 4 additions & 0 deletions .rspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
--color
--format documentation
--order default
--require spec_helper
1 change: 1 addition & 0 deletions .ruby-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ruby-2.6.5
4 changes: 4 additions & 0 deletions .theia/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"editor.autoSave": "on",
"editor.tabSize": 2,
}
14 changes: 14 additions & 0 deletions .theia/tasks.json
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": []
}
]
}
56 changes: 56 additions & 0 deletions Gemfile
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
Loading

0 comments on commit 7126c6e

Please sign in to comment.