├── .gitignore ├── .ruby-version ├── Gemfile ├── Gemfile.lock ├── Procfile ├── README.md ├── Rakefile ├── app ├── assets │ ├── config │ │ └── manifest.js │ ├── images │ │ ├── .keep │ │ ├── favicon │ │ │ ├── android-chrome-192x192.png │ │ │ ├── android-chrome-512x512.png │ │ │ ├── apple-touch-icon.png │ │ │ ├── browserconfig.xml.erb │ │ │ ├── favicon-16x16.png │ │ │ ├── favicon-32x32.png │ │ │ ├── favicon.ico │ │ │ ├── manifest.json.erb │ │ │ ├── mstile-150x150.png │ │ │ └── safari-pinned-tab.svg │ │ └── honeybadger_logo.svg │ ├── javascripts │ │ ├── appear.js │ │ ├── application.js │ │ ├── cable.js │ │ ├── channels │ │ │ └── .keep │ │ ├── fade.js │ │ ├── feed_relative_dates.js │ │ ├── live_reddit_links.js │ │ └── ready.js │ └── stylesheets │ │ ├── app │ │ ├── _about.scss │ │ ├── _grid.scss │ │ ├── _header.scss │ │ ├── _mixins.scss │ │ └── _sources.scss │ │ ├── application.scss │ │ └── bootstrap_local.scss ├── channels │ └── application_cable │ │ ├── channel.rb │ │ └── connection.rb ├── controllers │ ├── aggregator_controller.rb │ ├── application_controller.rb │ ├── concerns │ │ └── .keep │ └── feed_controller.rb ├── helpers │ ├── application_helper.rb │ └── feed_helper.rb ├── jobs │ └── application_job.rb ├── mailers │ └── application_mailer.rb ├── models │ ├── application_record.rb │ ├── concerns │ │ └── .keep │ ├── entry.rb │ └── feed.rb ├── updaters │ ├── body_scrubber.rb │ ├── entry_tweeter.rb │ ├── entry_updater.rb │ ├── feed_updater.rb │ └── updater.rb └── views │ ├── aggregator │ ├── about.html.slim │ ├── index.html.slim │ └── index.rss.builder │ ├── application │ └── _favicon.html.erb │ ├── feed │ ├── index.html.slim │ └── index.opml.builder │ └── layouts │ ├── application.html.erb │ ├── mailer.html.erb │ └── mailer.text.erb ├── bin ├── bundle ├── rails ├── rake ├── setup ├── update └── yarn ├── config.ru ├── config ├── application.rb ├── boot.rb ├── cable.yml ├── database.yml ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── application_controller_renderer.rb │ ├── assets.rb │ ├── backtrace_silencers.rb │ ├── content_security_policy.rb │ ├── cookies_serializer.rb │ ├── feedjira.rb │ ├── filter_parameter_logging.rb │ ├── inflections.rb │ ├── mime_types.rb │ ├── patch_feedjira.rb │ ├── session_store.rb │ └── wrap_parameters.rb ├── locales │ └── en.yml ├── puma.rb ├── routes.rb ├── secrets.yml └── storage.yml ├── db ├── migrate │ ├── 20161029161855_feed.rb │ ├── 20161029162740_entry.rb │ ├── 20161113184854_stricter_data.rb │ └── 20161125191419_entry_tweet_id.rb ├── schema.rb └── seeds.rb ├── lib ├── assets │ └── .keep └── tasks │ ├── .keep │ ├── entries.rake │ └── feeds.rake ├── log └── .keep ├── public ├── 404.html ├── 422.html ├── 500.html ├── apple-touch-icon-precomposed.png ├── apple-touch-icon.png ├── favicon.ico └── robots.txt ├── seed_feeds.txt ├── test ├── controllers │ └── .keep ├── fixtures │ ├── .keep │ └── files │ │ └── .keep ├── helpers │ └── .keep ├── integration │ └── .keep ├── mailers │ └── .keep ├── models │ └── .keep └── test_helper.rb ├── tmp └── .keep └── vendor └── assets ├── javascripts └── .keep └── stylesheets └── .keep /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/.gitignore -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.3.4 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/Rakefile -------------------------------------------------------------------------------- /app/assets/config/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/app/assets/config/manifest.js -------------------------------------------------------------------------------- /app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/images/favicon/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/app/assets/images/favicon/android-chrome-192x192.png -------------------------------------------------------------------------------- /app/assets/images/favicon/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/app/assets/images/favicon/android-chrome-512x512.png -------------------------------------------------------------------------------- /app/assets/images/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/app/assets/images/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /app/assets/images/favicon/browserconfig.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/app/assets/images/favicon/browserconfig.xml.erb -------------------------------------------------------------------------------- /app/assets/images/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/app/assets/images/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /app/assets/images/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/app/assets/images/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /app/assets/images/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/app/assets/images/favicon/favicon.ico -------------------------------------------------------------------------------- /app/assets/images/favicon/manifest.json.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/app/assets/images/favicon/manifest.json.erb -------------------------------------------------------------------------------- /app/assets/images/favicon/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/app/assets/images/favicon/mstile-150x150.png -------------------------------------------------------------------------------- /app/assets/images/favicon/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/app/assets/images/favicon/safari-pinned-tab.svg -------------------------------------------------------------------------------- /app/assets/images/honeybadger_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/app/assets/images/honeybadger_logo.svg -------------------------------------------------------------------------------- /app/assets/javascripts/appear.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/app/assets/javascripts/appear.js -------------------------------------------------------------------------------- /app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /app/assets/javascripts/cable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/app/assets/javascripts/cable.js -------------------------------------------------------------------------------- /app/assets/javascripts/channels/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/javascripts/fade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/app/assets/javascripts/fade.js -------------------------------------------------------------------------------- /app/assets/javascripts/feed_relative_dates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/app/assets/javascripts/feed_relative_dates.js -------------------------------------------------------------------------------- /app/assets/javascripts/live_reddit_links.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/app/assets/javascripts/live_reddit_links.js -------------------------------------------------------------------------------- /app/assets/javascripts/ready.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/app/assets/javascripts/ready.js -------------------------------------------------------------------------------- /app/assets/stylesheets/app/_about.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/app/assets/stylesheets/app/_about.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/app/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/app/assets/stylesheets/app/_grid.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/app/_header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/app/assets/stylesheets/app/_header.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/app/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/app/assets/stylesheets/app/_mixins.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/app/_sources.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/app/assets/stylesheets/app/_sources.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/application.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/app/assets/stylesheets/application.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/bootstrap_local.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/app/assets/stylesheets/bootstrap_local.scss -------------------------------------------------------------------------------- /app/channels/application_cable/channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/app/channels/application_cable/channel.rb -------------------------------------------------------------------------------- /app/channels/application_cable/connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/app/channels/application_cable/connection.rb -------------------------------------------------------------------------------- /app/controllers/aggregator_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/app/controllers/aggregator_controller.rb -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controllers/feed_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/app/controllers/feed_controller.rb -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/app/helpers/application_helper.rb -------------------------------------------------------------------------------- /app/helpers/feed_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/app/helpers/feed_helper.rb -------------------------------------------------------------------------------- /app/jobs/application_job.rb: -------------------------------------------------------------------------------- 1 | class ApplicationJob < ActiveJob::Base 2 | end 3 | -------------------------------------------------------------------------------- /app/mailers/application_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/app/mailers/application_mailer.rb -------------------------------------------------------------------------------- /app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/app/models/application_record.rb -------------------------------------------------------------------------------- /app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/entry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/app/models/entry.rb -------------------------------------------------------------------------------- /app/models/feed.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/app/models/feed.rb -------------------------------------------------------------------------------- /app/updaters/body_scrubber.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/app/updaters/body_scrubber.rb -------------------------------------------------------------------------------- /app/updaters/entry_tweeter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/app/updaters/entry_tweeter.rb -------------------------------------------------------------------------------- /app/updaters/entry_updater.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/app/updaters/entry_updater.rb -------------------------------------------------------------------------------- /app/updaters/feed_updater.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/app/updaters/feed_updater.rb -------------------------------------------------------------------------------- /app/updaters/updater.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/app/updaters/updater.rb -------------------------------------------------------------------------------- /app/views/aggregator/about.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/app/views/aggregator/about.html.slim -------------------------------------------------------------------------------- /app/views/aggregator/index.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/app/views/aggregator/index.html.slim -------------------------------------------------------------------------------- /app/views/aggregator/index.rss.builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/app/views/aggregator/index.rss.builder -------------------------------------------------------------------------------- /app/views/application/_favicon.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/app/views/application/_favicon.html.erb -------------------------------------------------------------------------------- /app/views/feed/index.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/app/views/feed/index.html.slim -------------------------------------------------------------------------------- /app/views/feed/index.opml.builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/app/views/feed/index.opml.builder -------------------------------------------------------------------------------- /app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /app/views/layouts/mailer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/app/views/layouts/mailer.html.erb -------------------------------------------------------------------------------- /app/views/layouts/mailer.text.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> 2 | -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/bin/setup -------------------------------------------------------------------------------- /bin/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/bin/update -------------------------------------------------------------------------------- /bin/yarn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/bin/yarn -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/config/cable.yml -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/config/database.yml -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/application_controller_renderer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/config/initializers/application_controller_renderer.rb -------------------------------------------------------------------------------- /config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/config/initializers/assets.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/content_security_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/config/initializers/content_security_policy.rb -------------------------------------------------------------------------------- /config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /config/initializers/feedjira.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/config/initializers/feedjira.rb -------------------------------------------------------------------------------- /config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/patch_feedjira.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/config/initializers/patch_feedjira.rb -------------------------------------------------------------------------------- /config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/config/initializers/session_store.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/config/puma.rb -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/config/secrets.yml -------------------------------------------------------------------------------- /config/storage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/config/storage.yml -------------------------------------------------------------------------------- /db/migrate/20161029161855_feed.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/db/migrate/20161029161855_feed.rb -------------------------------------------------------------------------------- /db/migrate/20161029162740_entry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/db/migrate/20161029162740_entry.rb -------------------------------------------------------------------------------- /db/migrate/20161113184854_stricter_data.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/db/migrate/20161113184854_stricter_data.rb -------------------------------------------------------------------------------- /db/migrate/20161125191419_entry_tweet_id.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/db/migrate/20161125191419_entry_tweet_id.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/entries.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/lib/tasks/entries.rake -------------------------------------------------------------------------------- /lib/tasks/feeds.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/lib/tasks/feeds.rake -------------------------------------------------------------------------------- /log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/public/404.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/public/500.html -------------------------------------------------------------------------------- /public/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/public/robots.txt -------------------------------------------------------------------------------- /seed_feeds.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/seed_feeds.txt -------------------------------------------------------------------------------- /test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/files/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrochkind/rubyland/HEAD/test/test_helper.rb -------------------------------------------------------------------------------- /tmp/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/assets/javascripts/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/assets/stylesheets/.keep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------