forked from rubymem/rubymem.com
-
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 9451a6b
Showing
114 changed files
with
3,407 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,21 @@ | ||
# 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 Byebug command history file. | ||
.byebug_history |
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.3 |
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 @@ | ||
# Load DSL and Setup Up Stages | ||
require 'capistrano/setup' | ||
|
||
# Includes default deployment tasks | ||
require 'capistrano/deploy' | ||
# Includes tasks from other gems included in your Gemfile | ||
|
||
require 'capistrano/deploytags' | ||
|
||
require 'capistrano/rails/console' | ||
|
||
# | ||
# For documentation on these, see for example: | ||
# | ||
# https://github.com/capistrano/rvm | ||
# https://github.com/capistrano/rbenv | ||
# https://github.com/capistrano/chruby | ||
# https://github.com/capistrano/bundler | ||
# https://github.com/capistrano/rails | ||
# | ||
# require 'capistrano/rvm' | ||
# require 'capistrano/rbenv' | ||
# require 'capistrano/chruby' | ||
require 'capistrano/bundler' | ||
# require 'capistrano/npm' | ||
require 'capistrano/rails/assets' | ||
require 'capistrano/rails/migrations' | ||
require "whenever/capistrano" | ||
|
||
# Loads custom tasks from `lib/capistrano/tasks' if you have any defined. | ||
Dir.glob('lib/capistrano/tasks/*.rake').each { |r| import r } |
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) do |repo_name| | ||
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/") | ||
"https://github.com/#{repo_name}.git" | ||
end | ||
|
||
gem 'rails', '~> 5.0.1' | ||
|
||
gem 'puma', '~> 4.0' | ||
gem 'pg' | ||
gem 'sass-rails', '~> 5.0' | ||
gem 'uglifier', '>= 1.3.0' | ||
gem 'jquery-rails' | ||
gem 'turbolinks', '~> 5' | ||
gem 'jbuilder', '~> 2.5' | ||
|
||
# views | ||
gem 'bootstrap-sass' | ||
gem "font-awesome-rails" | ||
gem 'will_paginate' | ||
gem 'will_paginate-bootstrap' | ||
|
||
gem 'whenever', :require => false | ||
|
||
# deployment | ||
gem 'capistrano', '~> 3.4.0' | ||
gem 'capistrano-rails', '~> 1.1' | ||
gem 'capistrano-bundler', '~> 1.1.2' | ||
gem 'capistrano-rails-console' | ||
gem 'capistrano-deploytags', '~> 1.0.0' | ||
|
||
group :development, :test do | ||
# Call 'byebug' anywhere in the code to stop execution and get a debugger console | ||
gem 'rb-readline' | ||
gem 'pry-byebug' | ||
gem 'better_errors' | ||
|
||
gem 'pry-rails' | ||
gem 'binding_of_caller' | ||
|
||
gem 'minitest-spec-rails' | ||
gem 'minitest-reporters' | ||
gem 'faker' | ||
gem 'factory_girl_rails' | ||
gem 'bundler-audit' | ||
end | ||
|
||
group :development do | ||
gem 'listen', '~> 3.0.5' | ||
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring | ||
gem 'spring' | ||
gem 'spring-watcher-listen', '~> 2.0.0' | ||
gem 'letter_opener' | ||
gem 'annotate' | ||
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,267 @@ | ||
GEM | ||
remote: https://rubygems.org/ | ||
specs: | ||
actioncable (5.0.7.2) | ||
actionpack (= 5.0.7.2) | ||
nio4r (>= 1.2, < 3.0) | ||
websocket-driver (~> 0.6.1) | ||
actionmailer (5.0.7.2) | ||
actionpack (= 5.0.7.2) | ||
actionview (= 5.0.7.2) | ||
activejob (= 5.0.7.2) | ||
mail (~> 2.5, >= 2.5.4) | ||
rails-dom-testing (~> 2.0) | ||
actionpack (5.0.7.2) | ||
actionview (= 5.0.7.2) | ||
activesupport (= 5.0.7.2) | ||
rack (~> 2.0) | ||
rack-test (~> 0.6.3) | ||
rails-dom-testing (~> 2.0) | ||
rails-html-sanitizer (~> 1.0, >= 1.0.2) | ||
actionview (5.0.7.2) | ||
activesupport (= 5.0.7.2) | ||
builder (~> 3.1) | ||
erubis (~> 2.7.0) | ||
rails-dom-testing (~> 2.0) | ||
rails-html-sanitizer (~> 1.0, >= 1.0.3) | ||
activejob (5.0.7.2) | ||
activesupport (= 5.0.7.2) | ||
globalid (>= 0.3.6) | ||
activemodel (5.0.7.2) | ||
activesupport (= 5.0.7.2) | ||
activerecord (5.0.7.2) | ||
activemodel (= 5.0.7.2) | ||
activesupport (= 5.0.7.2) | ||
arel (~> 7.0) | ||
activesupport (5.0.7.2) | ||
concurrent-ruby (~> 1.0, >= 1.0.2) | ||
i18n (>= 0.7, < 2) | ||
minitest (~> 5.1) | ||
tzinfo (~> 1.1) | ||
addressable (2.6.0) | ||
public_suffix (>= 2.0.2, < 4.0) | ||
annotate (2.7.5) | ||
activerecord (>= 3.2, < 7.0) | ||
rake (>= 10.4, < 13.0) | ||
ansi (1.5.0) | ||
arel (7.1.4) | ||
autoprefixer-rails (9.6.1) | ||
execjs | ||
better_errors (2.5.1) | ||
coderay (>= 1.0.0) | ||
erubi (>= 1.0.0) | ||
rack (>= 0.9.0) | ||
binding_of_caller (0.8.0) | ||
debug_inspector (>= 0.0.1) | ||
bootstrap-sass (3.4.1) | ||
autoprefixer-rails (>= 5.2.1) | ||
sassc (>= 2.0.0) | ||
builder (3.2.3) | ||
bundler-audit (0.6.1) | ||
bundler (>= 1.2.0, < 3) | ||
thor (~> 0.18) | ||
byebug (11.0.1) | ||
capistrano (3.4.1) | ||
i18n | ||
rake (>= 10.0.0) | ||
sshkit (~> 1.3) | ||
capistrano-bundler (1.1.4) | ||
capistrano (~> 3.1) | ||
sshkit (~> 1.2) | ||
capistrano-deploytags (1.0.6) | ||
capistrano (>= 3.2.0) | ||
capistrano-rails (1.4.0) | ||
capistrano (~> 3.1) | ||
capistrano-bundler (~> 1.1) | ||
capistrano-rails-console (1.0.2) | ||
capistrano (>= 3.1.0, < 4.0.0) | ||
chronic (0.10.2) | ||
coderay (1.1.2) | ||
concurrent-ruby (1.1.5) | ||
crass (1.0.4) | ||
debug_inspector (0.0.3) | ||
erubi (1.8.0) | ||
erubis (2.7.0) | ||
execjs (2.7.0) | ||
factory_girl (4.9.0) | ||
activesupport (>= 3.0.0) | ||
factory_girl_rails (4.9.0) | ||
factory_girl (~> 4.9.0) | ||
railties (>= 3.0.0) | ||
faker (1.9.6) | ||
i18n (>= 0.7) | ||
ffi (1.11.1) | ||
font-awesome-rails (4.7.0.5) | ||
railties (>= 3.2, < 6.1) | ||
globalid (0.4.2) | ||
activesupport (>= 4.2.0) | ||
i18n (1.6.0) | ||
concurrent-ruby (~> 1.0) | ||
jbuilder (2.9.1) | ||
activesupport (>= 4.2.0) | ||
jquery-rails (4.3.5) | ||
rails-dom-testing (>= 1, < 3) | ||
railties (>= 4.2.0) | ||
thor (>= 0.14, < 2.0) | ||
launchy (2.4.3) | ||
addressable (~> 2.3) | ||
letter_opener (1.7.0) | ||
launchy (~> 2.2) | ||
listen (3.0.8) | ||
rb-fsevent (~> 0.9, >= 0.9.4) | ||
rb-inotify (~> 0.9, >= 0.9.7) | ||
loofah (2.2.3) | ||
crass (~> 1.0.2) | ||
nokogiri (>= 1.5.9) | ||
mail (2.7.1) | ||
mini_mime (>= 0.1.1) | ||
method_source (0.9.2) | ||
mini_mime (1.0.2) | ||
mini_portile2 (2.4.0) | ||
minitest (5.11.3) | ||
minitest-reporters (1.3.6) | ||
ansi | ||
builder | ||
minitest (>= 5.0) | ||
ruby-progressbar | ||
minitest-spec-rails (5.5.0) | ||
minitest (~> 5.0) | ||
rails (>= 4.1) | ||
net-scp (2.0.0) | ||
net-ssh (>= 2.6.5, < 6.0.0) | ||
net-ssh (5.2.0) | ||
nio4r (2.4.0) | ||
nokogiri (1.10.3) | ||
mini_portile2 (~> 2.4.0) | ||
pg (1.1.4) | ||
pry (0.12.2) | ||
coderay (~> 1.1.0) | ||
method_source (~> 0.9.0) | ||
pry-byebug (3.7.0) | ||
byebug (~> 11.0) | ||
pry (~> 0.10) | ||
pry-rails (0.3.9) | ||
pry (>= 0.10.4) | ||
public_suffix (3.1.1) | ||
puma (4.0.1) | ||
nio4r (~> 2.0) | ||
rack (2.0.7) | ||
rack-test (0.6.3) | ||
rack (>= 1.0) | ||
rails (5.0.7.2) | ||
actioncable (= 5.0.7.2) | ||
actionmailer (= 5.0.7.2) | ||
actionpack (= 5.0.7.2) | ||
actionview (= 5.0.7.2) | ||
activejob (= 5.0.7.2) | ||
activemodel (= 5.0.7.2) | ||
activerecord (= 5.0.7.2) | ||
activesupport (= 5.0.7.2) | ||
bundler (>= 1.3.0) | ||
railties (= 5.0.7.2) | ||
sprockets-rails (>= 2.0.0) | ||
rails-dom-testing (2.0.3) | ||
activesupport (>= 4.2.0) | ||
nokogiri (>= 1.6) | ||
rails-html-sanitizer (1.0.4) | ||
loofah (~> 2.2, >= 2.2.2) | ||
railties (5.0.7.2) | ||
actionpack (= 5.0.7.2) | ||
activesupport (= 5.0.7.2) | ||
method_source | ||
rake (>= 0.8.7) | ||
thor (>= 0.18.1, < 2.0) | ||
rake (12.3.2) | ||
rb-fsevent (0.10.3) | ||
rb-inotify (0.10.0) | ||
ffi (~> 1.0) | ||
rb-readline (0.5.5) | ||
ruby-progressbar (1.10.1) | ||
sass (3.7.4) | ||
sass-listen (~> 4.0.0) | ||
sass-listen (4.0.0) | ||
rb-fsevent (~> 0.9, >= 0.9.4) | ||
rb-inotify (~> 0.9, >= 0.9.7) | ||
sass-rails (5.0.7) | ||
railties (>= 4.0.0, < 6) | ||
sass (~> 3.1) | ||
sprockets (>= 2.8, < 4.0) | ||
sprockets-rails (>= 2.0, < 4.0) | ||
tilt (>= 1.1, < 3) | ||
sassc (2.0.1) | ||
ffi (~> 1.9) | ||
rake | ||
spring (2.0.2) | ||
activesupport (>= 4.2) | ||
spring-watcher-listen (2.0.1) | ||
listen (>= 2.7, < 4.0) | ||
spring (>= 1.2, < 3.0) | ||
sprockets (3.7.2) | ||
concurrent-ruby (~> 1.0) | ||
rack (> 1, < 3) | ||
sprockets-rails (3.2.1) | ||
actionpack (>= 4.0) | ||
activesupport (>= 4.0) | ||
sprockets (>= 3.0.0) | ||
sshkit (1.19.1) | ||
net-scp (>= 1.1.2) | ||
net-ssh (>= 2.8.0) | ||
thor (0.20.3) | ||
thread_safe (0.3.6) | ||
tilt (2.0.9) | ||
turbolinks (5.2.0) | ||
turbolinks-source (~> 5.2) | ||
turbolinks-source (5.2.0) | ||
tzinfo (1.2.5) | ||
thread_safe (~> 0.1) | ||
uglifier (4.1.20) | ||
execjs (>= 0.3.0, < 3) | ||
websocket-driver (0.6.5) | ||
websocket-extensions (>= 0.1.0) | ||
websocket-extensions (0.1.4) | ||
whenever (1.0.0) | ||
chronic (>= 0.6.3) | ||
will_paginate (3.1.7) | ||
will_paginate-bootstrap (1.0.2) | ||
will_paginate (>= 3.0.3) | ||
|
||
PLATFORMS | ||
ruby | ||
|
||
DEPENDENCIES | ||
annotate | ||
better_errors | ||
binding_of_caller | ||
bootstrap-sass | ||
bundler-audit | ||
capistrano (~> 3.4.0) | ||
capistrano-bundler (~> 1.1.2) | ||
capistrano-deploytags (~> 1.0.0) | ||
capistrano-rails (~> 1.1) | ||
capistrano-rails-console | ||
factory_girl_rails | ||
faker | ||
font-awesome-rails | ||
jbuilder (~> 2.5) | ||
jquery-rails | ||
letter_opener | ||
listen (~> 3.0.5) | ||
minitest-reporters | ||
minitest-spec-rails | ||
pg | ||
pry-byebug | ||
pry-rails | ||
puma (~> 4.0) | ||
rails (~> 5.0.1) | ||
rb-readline | ||
sass-rails (~> 5.0) | ||
spring | ||
spring-watcher-listen (~> 2.0.0) | ||
turbolinks (~> 5) | ||
uglifier (>= 1.3.0) | ||
whenever | ||
will_paginate | ||
will_paginate-bootstrap | ||
|
||
BUNDLED WITH | ||
2.0.2 |
Oops, something went wrong.