-
Notifications
You must be signed in to change notification settings - Fork 1.9k
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 48dd163
Showing
71 changed files
with
2,003 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,10 @@ | ||
rottenpotatoes/.bundle/ | ||
rottenpotatoes/.rspec | ||
rottenpotatoes/.ruby-version | ||
rottenpotatoes/coverage/ | ||
rottenpotatoes/db/*.sqlite3 | ||
rottenpotatoes/db/schema.rb | ||
rottenpotatoes/lib/tasks/ | ||
rottenpotatoes/log/ | ||
rottenpotatoes/tmp/ | ||
rottenpotatoes/vendor/bundle |
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.6.6 |
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 @@ | ||
source 'https://rubygems.org' | ||
|
||
ruby '2.6.6' | ||
gem 'rails', '4.2.10' | ||
|
||
# for Heroku deployment | ||
group :development, :test do | ||
gem 'sqlite3', '1.3.11' | ||
gem 'byebug' | ||
gem 'database_cleaner', '1.4.1' | ||
gem 'capybara', '2.4.4' | ||
gem 'launchy' | ||
gem 'rspec-rails', '3.7.2' | ||
gem 'ZenTest', '4.11.2' | ||
end | ||
|
||
group :test do | ||
gem 'cucumber-rails', :require => false | ||
gem 'cucumber-rails-training-wheels' | ||
gem 'simplecov', :require => false | ||
end | ||
group :production do | ||
gem 'pg' | ||
end | ||
|
||
# Gems used only for assets and not required | ||
# in production environments by default. | ||
|
||
gem 'sass-rails', '~> 5.0.3' | ||
gem 'uglifier', '>= 2.7.1' | ||
gem 'jquery-rails' |
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,200 @@ | ||
GEM | ||
remote: https://rubygems.org/ | ||
specs: | ||
ZenTest (4.11.2) | ||
actionmailer (4.2.10) | ||
actionpack (= 4.2.10) | ||
actionview (= 4.2.10) | ||
activejob (= 4.2.10) | ||
mail (~> 2.5, >= 2.5.4) | ||
rails-dom-testing (~> 1.0, >= 1.0.5) | ||
actionpack (4.2.10) | ||
actionview (= 4.2.10) | ||
activesupport (= 4.2.10) | ||
rack (~> 1.6) | ||
rack-test (~> 0.6.2) | ||
rails-dom-testing (~> 1.0, >= 1.0.5) | ||
rails-html-sanitizer (~> 1.0, >= 1.0.2) | ||
actionview (4.2.10) | ||
activesupport (= 4.2.10) | ||
builder (~> 3.1) | ||
erubis (~> 2.7.0) | ||
rails-dom-testing (~> 1.0, >= 1.0.5) | ||
rails-html-sanitizer (~> 1.0, >= 1.0.3) | ||
activejob (4.2.10) | ||
activesupport (= 4.2.10) | ||
globalid (>= 0.3.0) | ||
activemodel (4.2.10) | ||
activesupport (= 4.2.10) | ||
builder (~> 3.1) | ||
activerecord (4.2.10) | ||
activemodel (= 4.2.10) | ||
activesupport (= 4.2.10) | ||
arel (~> 6.0) | ||
activesupport (4.2.10) | ||
i18n (~> 0.7) | ||
minitest (~> 5.1) | ||
thread_safe (~> 0.3, >= 0.3.4) | ||
tzinfo (~> 1.1) | ||
addressable (2.4.0) | ||
arel (6.0.4) | ||
builder (3.2.3) | ||
byebug (9.0.5) | ||
capybara (2.4.4) | ||
mime-types (>= 1.16) | ||
nokogiri (>= 1.3.3) | ||
rack (>= 1.0.0) | ||
rack-test (>= 0.5.4) | ||
xpath (~> 2.0) | ||
concurrent-ruby (1.0.5) | ||
crass (1.0.4) | ||
cucumber (2.4.0) | ||
builder (>= 2.1.2) | ||
cucumber-core (~> 1.5.0) | ||
cucumber-wire (~> 0.0.1) | ||
diff-lcs (>= 1.1.3) | ||
gherkin (~> 4.0) | ||
multi_json (>= 1.7.5, < 2.0) | ||
multi_test (>= 0.1.2) | ||
cucumber-core (1.5.0) | ||
gherkin (~> 4.0) | ||
cucumber-rails (1.4.3) | ||
capybara (>= 1.1.2, < 3) | ||
cucumber (>= 1.3.8, < 3) | ||
mime-types (>= 1.16, < 4) | ||
nokogiri (~> 1.5) | ||
railties (>= 3, < 5) | ||
cucumber-rails-training-wheels (1.0.0) | ||
cucumber-rails (>= 1.1.1) | ||
cucumber-wire (0.0.1) | ||
database_cleaner (1.4.1) | ||
diff-lcs (1.3) | ||
docile (1.3.2) | ||
erubis (2.7.0) | ||
execjs (2.7.0) | ||
gherkin (4.0.0) | ||
globalid (0.4.1) | ||
activesupport (>= 4.2.0) | ||
i18n (0.9.5) | ||
concurrent-ruby (~> 1.0) | ||
jquery-rails (4.1.1) | ||
rails-dom-testing (>= 1, < 3) | ||
railties (>= 4.2.0) | ||
thor (>= 0.14, < 2.0) | ||
launchy (2.4.3) | ||
addressable (~> 2.3) | ||
loofah (2.2.2) | ||
crass (~> 1.0.2) | ||
nokogiri (>= 1.5.9) | ||
mail (2.7.0) | ||
mini_mime (>= 0.1.1) | ||
mime-types (3.1) | ||
mime-types-data (~> 3.2015) | ||
mime-types-data (3.2016.0521) | ||
mini_mime (1.0.0) | ||
mini_portile2 (2.3.0) | ||
minitest (5.11.3) | ||
multi_json (1.12.1) | ||
multi_test (0.1.2) | ||
nokogiri (1.8.4) | ||
mini_portile2 (~> 2.3.0) | ||
pg (1.2.3) | ||
rack (1.6.10) | ||
rack-test (0.6.3) | ||
rack (>= 1.0) | ||
rails (4.2.10) | ||
actionmailer (= 4.2.10) | ||
actionpack (= 4.2.10) | ||
actionview (= 4.2.10) | ||
activejob (= 4.2.10) | ||
activemodel (= 4.2.10) | ||
activerecord (= 4.2.10) | ||
activesupport (= 4.2.10) | ||
bundler (>= 1.3.0, < 2.0) | ||
railties (= 4.2.10) | ||
sprockets-rails | ||
rails-deprecated_sanitizer (1.0.3) | ||
activesupport (>= 4.2.0.alpha) | ||
rails-dom-testing (1.0.9) | ||
activesupport (>= 4.2.0, < 5.0) | ||
nokogiri (~> 1.6) | ||
rails-deprecated_sanitizer (>= 1.0.1) | ||
rails-html-sanitizer (1.0.4) | ||
loofah (~> 2.2, >= 2.2.2) | ||
railties (4.2.10) | ||
actionpack (= 4.2.10) | ||
activesupport (= 4.2.10) | ||
rake (>= 0.8.7) | ||
thor (>= 0.18.1, < 2.0) | ||
rake (12.3.1) | ||
rspec-core (3.7.1) | ||
rspec-support (~> 3.7.0) | ||
rspec-expectations (3.7.0) | ||
diff-lcs (>= 1.2.0, < 2.0) | ||
rspec-support (~> 3.7.0) | ||
rspec-mocks (3.7.0) | ||
diff-lcs (>= 1.2.0, < 2.0) | ||
rspec-support (~> 3.7.0) | ||
rspec-rails (3.7.2) | ||
actionpack (>= 3.0) | ||
activesupport (>= 3.0) | ||
railties (>= 3.0) | ||
rspec-core (~> 3.7.0) | ||
rspec-expectations (~> 3.7.0) | ||
rspec-mocks (~> 3.7.0) | ||
rspec-support (~> 3.7.0) | ||
rspec-support (3.7.1) | ||
sass (3.4.22) | ||
sass-rails (5.0.5) | ||
railties (>= 4.0.0, < 6) | ||
sass (~> 3.1) | ||
sprockets (>= 2.8, < 4.0) | ||
sprockets-rails (>= 2.0, < 4.0) | ||
tilt (>= 1.1, < 3) | ||
simplecov (0.19.1) | ||
docile (~> 1.1) | ||
simplecov-html (~> 0.11) | ||
simplecov-html (0.12.3) | ||
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) | ||
sqlite3 (1.3.11) | ||
thor (0.20.0) | ||
thread_safe (0.3.6) | ||
tilt (2.0.5) | ||
tzinfo (1.2.5) | ||
thread_safe (~> 0.1) | ||
uglifier (3.0.0) | ||
execjs (>= 0.3.0, < 3) | ||
xpath (2.0.0) | ||
nokogiri (~> 1.3) | ||
|
||
PLATFORMS | ||
ruby | ||
|
||
DEPENDENCIES | ||
ZenTest (= 4.11.2) | ||
byebug | ||
capybara (= 2.4.4) | ||
cucumber-rails | ||
cucumber-rails-training-wheels | ||
database_cleaner (= 1.4.1) | ||
jquery-rails | ||
launchy | ||
pg | ||
rails (= 4.2.10) | ||
rspec-rails (= 3.7.2) | ||
sass-rails (~> 5.0.3) | ||
simplecov | ||
sqlite3 (= 1.3.11) | ||
uglifier (>= 2.7.1) | ||
|
||
RUBY VERSION | ||
ruby 2.6.6p146 | ||
|
||
BUNDLED WITH | ||
1.17.3 |
Oops, something went wrong.