├── .gitignore ├── .rubocop.yml ├── .ruby-version ├── .travis.yml ├── Gemfile ├── Gemfile.lock ├── LICENSE.md ├── Procfile ├── README.md ├── Rakefile ├── app ├── assets │ ├── images │ │ ├── .keep │ │ ├── code-for-america.png │ │ ├── fork-me-on-github.png │ │ └── sign-in-with-twitter.png │ ├── javascripts │ │ ├── application.js │ │ ├── pages │ │ │ └── flashes.js.coffee │ │ ├── polyfills.js │ │ └── vendor │ │ │ └── modernizr.js │ └── stylesheets │ │ ├── application.css │ │ ├── application │ │ ├── _screen.scss │ │ ├── _variables.scss │ │ └── application.scss │ │ └── screen.css ├── controllers │ ├── application_controller.rb │ ├── concerns │ │ └── .keep │ ├── follows_controller.rb │ ├── sessions_controller.rb │ └── welcome_controller.rb ├── helpers │ ├── application_helper.rb │ └── sessions_helper.rb ├── mailers │ ├── .gitkeep │ └── .keep ├── models │ ├── .gitkeep │ ├── .keep │ ├── concerns │ │ └── .keep │ └── user.rb └── views │ ├── layouts │ ├── _flashes.html.haml │ ├── _footer.html.haml │ ├── _github_sash.html.haml │ ├── _head.html.haml │ ├── _header.html.haml │ ├── _javascripts.html.haml │ ├── _main.html.haml │ ├── _stylesheets.html.haml │ └── application.html.haml │ ├── sessions │ └── show.html.haml │ └── welcome │ └── index.html.haml ├── bin ├── bundle ├── rails ├── rake ├── setup └── spring ├── config.ru ├── config ├── application.rb ├── boot.rb ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── assets.rb │ ├── backtrace_silencers.rb │ ├── cookies_serializer.rb │ ├── filter_parameter_logging.rb │ ├── inflections.rb │ ├── mime_types.rb │ ├── omniauth.rb │ ├── secret_token.rb │ ├── session_store.rb │ └── wrap_parameters.rb ├── locales │ └── en.yml ├── routes.rb ├── secrets.yml └── unicorn.rb ├── doc └── README_FOR_APP ├── lib ├── assets │ ├── .gitkeep │ └── .keep └── tasks │ ├── .gitkeep │ ├── .keep │ └── cron.rake ├── log ├── .gitkeep └── .keep ├── public ├── 404.html ├── 422.html ├── 500.html ├── favicon.ico └── robots.txt ├── screenshot.png ├── script └── rails ├── test ├── controllers │ └── .keep ├── fixtures │ ├── .gitkeep │ ├── .keep │ ├── friend_ids.json │ ├── members.json │ ├── user.json │ └── users.json ├── functional │ ├── .gitkeep │ ├── follows_controller_test.rb │ ├── sessions_controller_test.rb │ └── welcome_controller_test.rb ├── helpers │ └── .keep ├── integration │ ├── .gitkeep │ └── .keep ├── mailers │ └── .keep ├── models │ └── .keep ├── test_helper.rb └── unit │ └── .gitkeep ├── twitter-screenshot.png └── vendor ├── assets ├── javascripts │ ├── .gitkeep │ └── .keep └── stylesheets │ ├── .gitkeep │ └── .keep └── plugins └── .gitkeep /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/follow-all/HEAD/.gitignore -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/follow-all/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.3.1 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/follow-all/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/follow-all/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/follow-all/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/follow-all/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: bundle exec puma -p $PORT 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/follow-all/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/follow-all/HEAD/Rakefile -------------------------------------------------------------------------------- /app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/images/code-for-america.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/follow-all/HEAD/app/assets/images/code-for-america.png -------------------------------------------------------------------------------- /app/assets/images/fork-me-on-github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/follow-all/HEAD/app/assets/images/fork-me-on-github.png -------------------------------------------------------------------------------- /app/assets/images/sign-in-with-twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/follow-all/HEAD/app/assets/images/sign-in-with-twitter.png -------------------------------------------------------------------------------- /app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/follow-all/HEAD/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /app/assets/javascripts/pages/flashes.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/follow-all/HEAD/app/assets/javascripts/pages/flashes.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/polyfills.js: -------------------------------------------------------------------------------- 1 | //= require "vendor/modernizr.js" 2 | -------------------------------------------------------------------------------- /app/assets/javascripts/vendor/modernizr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/follow-all/HEAD/app/assets/javascripts/vendor/modernizr.js -------------------------------------------------------------------------------- /app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/follow-all/HEAD/app/assets/stylesheets/application.css -------------------------------------------------------------------------------- /app/assets/stylesheets/application/_screen.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/follow-all/HEAD/app/assets/stylesheets/application/_screen.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/application/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/follow-all/HEAD/app/assets/stylesheets/application/_variables.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/application/application.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/follow-all/HEAD/app/assets/stylesheets/application/application.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/follow-all/HEAD/app/assets/stylesheets/screen.css -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/follow-all/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controllers/follows_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/follow-all/HEAD/app/controllers/follows_controller.rb -------------------------------------------------------------------------------- /app/controllers/sessions_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/follow-all/HEAD/app/controllers/sessions_controller.rb -------------------------------------------------------------------------------- /app/controllers/welcome_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/follow-all/HEAD/app/controllers/welcome_controller.rb -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/sessions_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/follow-all/HEAD/app/helpers/sessions_helper.rb -------------------------------------------------------------------------------- /app/mailers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/follow-all/HEAD/app/models/user.rb -------------------------------------------------------------------------------- /app/views/layouts/_flashes.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/follow-all/HEAD/app/views/layouts/_flashes.html.haml -------------------------------------------------------------------------------- /app/views/layouts/_footer.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/follow-all/HEAD/app/views/layouts/_footer.html.haml -------------------------------------------------------------------------------- /app/views/layouts/_github_sash.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/follow-all/HEAD/app/views/layouts/_github_sash.html.haml -------------------------------------------------------------------------------- /app/views/layouts/_head.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/follow-all/HEAD/app/views/layouts/_head.html.haml -------------------------------------------------------------------------------- /app/views/layouts/_header.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/follow-all/HEAD/app/views/layouts/_header.html.haml -------------------------------------------------------------------------------- /app/views/layouts/_javascripts.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/follow-all/HEAD/app/views/layouts/_javascripts.html.haml -------------------------------------------------------------------------------- /app/views/layouts/_main.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/follow-all/HEAD/app/views/layouts/_main.html.haml -------------------------------------------------------------------------------- /app/views/layouts/_stylesheets.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/follow-all/HEAD/app/views/layouts/_stylesheets.html.haml -------------------------------------------------------------------------------- /app/views/layouts/application.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/follow-all/HEAD/app/views/layouts/application.html.haml -------------------------------------------------------------------------------- /app/views/sessions/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/follow-all/HEAD/app/views/sessions/show.html.haml -------------------------------------------------------------------------------- /app/views/welcome/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/follow-all/HEAD/app/views/welcome/index.html.haml -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/follow-all/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/follow-all/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/follow-all/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/follow-all/HEAD/bin/setup -------------------------------------------------------------------------------- /bin/spring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/follow-all/HEAD/bin/spring -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/follow-all/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/follow-all/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/follow-all/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/follow-all/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/follow-all/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/follow-all/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/follow-all/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/follow-all/HEAD/config/initializers/assets.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/follow-all/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/follow-all/HEAD/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/follow-all/HEAD/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/follow-all/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/follow-all/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/omniauth.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/follow-all/HEAD/config/initializers/omniauth.rb -------------------------------------------------------------------------------- /config/initializers/secret_token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/follow-all/HEAD/config/initializers/secret_token.rb -------------------------------------------------------------------------------- /config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/follow-all/HEAD/config/initializers/session_store.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/follow-all/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/follow-all/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/follow-all/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/follow-all/HEAD/config/secrets.yml -------------------------------------------------------------------------------- /config/unicorn.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/follow-all/HEAD/config/unicorn.rb -------------------------------------------------------------------------------- /doc/README_FOR_APP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/follow-all/HEAD/doc/README_FOR_APP -------------------------------------------------------------------------------- /lib/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/cron.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/follow-all/HEAD/lib/tasks/cron.rake -------------------------------------------------------------------------------- /log/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/follow-all/HEAD/public/404.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/follow-all/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/follow-all/HEAD/public/500.html -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/follow-all/HEAD/public/robots.txt -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/follow-all/HEAD/screenshot.png -------------------------------------------------------------------------------- /script/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/follow-all/HEAD/script/rails -------------------------------------------------------------------------------- /test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/friend_ids.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/follow-all/HEAD/test/fixtures/friend_ids.json -------------------------------------------------------------------------------- /test/fixtures/members.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/follow-all/HEAD/test/fixtures/members.json -------------------------------------------------------------------------------- /test/fixtures/user.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/follow-all/HEAD/test/fixtures/user.json -------------------------------------------------------------------------------- /test/fixtures/users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/follow-all/HEAD/test/fixtures/users.json -------------------------------------------------------------------------------- /test/functional/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/functional/follows_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/follow-all/HEAD/test/functional/follows_controller_test.rb -------------------------------------------------------------------------------- /test/functional/sessions_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/follow-all/HEAD/test/functional/sessions_controller_test.rb -------------------------------------------------------------------------------- /test/functional/welcome_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/follow-all/HEAD/test/functional/welcome_controller_test.rb -------------------------------------------------------------------------------- /test/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/follow-all/HEAD/test/test_helper.rb -------------------------------------------------------------------------------- /test/unit/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /twitter-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/follow-all/HEAD/twitter-screenshot.png -------------------------------------------------------------------------------- /vendor/assets/javascripts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/assets/javascripts/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/assets/stylesheets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/assets/stylesheets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/plugins/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------