├── .gitignore ├── .rspec ├── .ruby-version ├── .travis.yml ├── Dockerfile ├── Gemfile ├── Gemfile.lock ├── Procfile ├── README.md ├── Rakefile ├── SUMMARY.md ├── app.json ├── app ├── assets │ ├── images │ │ └── .keep │ ├── javascripts │ │ └── application.js │ └── stylesheets │ │ ├── application.css │ │ └── indiepants.css.scss ├── controllers │ ├── application_controller.rb │ ├── concerns │ │ └── .keep │ └── pants │ │ ├── auth_controller.rb │ │ ├── documents_controller.rb │ │ ├── setup_controller.rb │ │ ├── users_controller.rb │ │ └── webmentions_controller.rb ├── helpers │ └── application_helper.rb ├── mailers │ └── .keep ├── models │ ├── .keep │ ├── concerns │ │ ├── .keep │ │ ├── document_deduplication.rb │ │ ├── document_fetching.rb │ │ ├── document_links.rb │ │ ├── document_type_support.rb │ │ ├── scopes.rb │ │ └── user_fetching.rb │ ├── pants.rb │ └── pants │ │ ├── binary.rb │ │ ├── document.rb │ │ ├── link.rb │ │ ├── post.rb │ │ └── user.rb ├── services │ ├── background.rb │ ├── fetch.rb │ └── formatter.rb └── views │ ├── application │ ├── _flashes.html.slim │ └── render_404.html.slim │ ├── layouts │ └── application.html.slim │ └── pants │ ├── auth │ └── login.html.slim │ ├── documents │ ├── _document.atom.builder │ ├── _document.html.slim │ ├── _document.json.jbuilder │ ├── _form.html.slim │ ├── _reactions.html.slim │ ├── edit.html.slim │ ├── index.atom.builder │ ├── index.html.slim │ ├── index.json.jbuilder │ ├── new.html.slim │ ├── show.html.slim │ └── show.json.jbuilder │ ├── posts │ └── _form.html.slim │ ├── setup │ └── setup.html.slim │ └── users │ ├── _form.html.slim │ ├── _user.json.jbuilder │ ├── edit.html.slim │ ├── export.html.slim │ ├── export.json.jbuilder │ └── show.json.jbuilder ├── bin ├── bundle ├── heroku_bootstrap.sh ├── heroku_update.sh ├── rails ├── rake ├── rspec ├── setup └── spring ├── config.ru ├── config ├── application.rb ├── boot.rb ├── database.yml ├── database.yml.travis ├── docker │ ├── nginx-site.conf │ └── nginx.conf ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── action_mailer.rb │ ├── assets.rb │ ├── background_processing.rb │ ├── backtrace_silencers.rb │ ├── cookies_serializer.rb │ ├── dragonfly.rb │ ├── filter_parameter_logging.rb │ ├── indiepants.rb │ ├── inflections.rb │ ├── jbuilder_prettify.rb │ ├── mime_types.rb │ ├── multijson.rb │ ├── session_store.rb │ ├── simple_form.rb │ └── wrap_parameters.rb ├── locales │ ├── en.yml │ ├── rails.en.yml │ └── simple_form.en.yml ├── routes.rb └── secrets.yml ├── db ├── migrate │ ├── 20150201100000_enable_extensions.rb │ ├── 20150201100216_create_users.rb │ ├── 20150201105121_create_documents.rb │ ├── 20150216180849_create_pants_links.rb │ └── 20150228082847_create_pants_binaries.rb ├── schema.rb └── seeds.rb ├── fig.yml ├── lib ├── assets │ └── .keep └── tasks │ ├── .keep │ ├── docker.rake │ └── indiepants.rake ├── log └── .keep ├── public ├── 404.html ├── 422.html ├── 500.html ├── favicon.ico └── robots.txt ├── spec ├── controllers │ └── pants │ │ ├── auth_controller_spec.rb │ │ ├── documents_controller_spec.rb │ │ ├── setup_controller_spec.rb │ │ ├── users_controller_spec.rb │ │ └── webmentions_controller_spec.rb ├── factories │ ├── documents.rb │ ├── pants_links.rb │ ├── pants_posts.rb │ └── users.rb ├── features │ ├── claiming_a_site_spec.rb │ ├── creating_a_post_spec.rb │ ├── editing_a_post_spec.rb │ ├── export_feature_spec.rb │ └── rendering_documents_spec.rb ├── models │ └── pants │ │ ├── document_deduplication_spec.rb │ │ ├── document_fetching_spec.rb │ │ ├── document_links_spec.rb │ │ ├── document_spec.rb │ │ ├── link_spec.rb │ │ ├── post_spec.rb │ │ └── user_spec.rb ├── rails_helper.rb ├── requests │ ├── atom_feed_spec.rb │ ├── document_json_spec.rb │ └── webmention_endpoint_spec.rb ├── services │ └── fetch_spec.rb ├── spec_helper.rb └── support │ ├── common_helpers.rb │ ├── feature_helpers.rb │ └── request_helpers.rb └── vendor └── assets ├── javascripts └── .keep └── stylesheets └── .keep /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --require spec_helper 3 | -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.2.2 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/Dockerfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/Rakefile -------------------------------------------------------------------------------- /SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/SUMMARY.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/app.json -------------------------------------------------------------------------------- /app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/app/assets/stylesheets/application.css -------------------------------------------------------------------------------- /app/assets/stylesheets/indiepants.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/app/assets/stylesheets/indiepants.css.scss -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controllers/pants/auth_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/app/controllers/pants/auth_controller.rb -------------------------------------------------------------------------------- /app/controllers/pants/documents_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/app/controllers/pants/documents_controller.rb -------------------------------------------------------------------------------- /app/controllers/pants/setup_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/app/controllers/pants/setup_controller.rb -------------------------------------------------------------------------------- /app/controllers/pants/users_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/app/controllers/pants/users_controller.rb -------------------------------------------------------------------------------- /app/controllers/pants/webmentions_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/app/controllers/pants/webmentions_controller.rb -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/app/helpers/application_helper.rb -------------------------------------------------------------------------------- /app/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/concerns/document_deduplication.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/app/models/concerns/document_deduplication.rb -------------------------------------------------------------------------------- /app/models/concerns/document_fetching.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/app/models/concerns/document_fetching.rb -------------------------------------------------------------------------------- /app/models/concerns/document_links.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/app/models/concerns/document_links.rb -------------------------------------------------------------------------------- /app/models/concerns/document_type_support.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/app/models/concerns/document_type_support.rb -------------------------------------------------------------------------------- /app/models/concerns/scopes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/app/models/concerns/scopes.rb -------------------------------------------------------------------------------- /app/models/concerns/user_fetching.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/app/models/concerns/user_fetching.rb -------------------------------------------------------------------------------- /app/models/pants.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/app/models/pants.rb -------------------------------------------------------------------------------- /app/models/pants/binary.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/app/models/pants/binary.rb -------------------------------------------------------------------------------- /app/models/pants/document.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/app/models/pants/document.rb -------------------------------------------------------------------------------- /app/models/pants/link.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/app/models/pants/link.rb -------------------------------------------------------------------------------- /app/models/pants/post.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/app/models/pants/post.rb -------------------------------------------------------------------------------- /app/models/pants/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/app/models/pants/user.rb -------------------------------------------------------------------------------- /app/services/background.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/app/services/background.rb -------------------------------------------------------------------------------- /app/services/fetch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/app/services/fetch.rb -------------------------------------------------------------------------------- /app/services/formatter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/app/services/formatter.rb -------------------------------------------------------------------------------- /app/views/application/_flashes.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/app/views/application/_flashes.html.slim -------------------------------------------------------------------------------- /app/views/application/render_404.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/app/views/application/render_404.html.slim -------------------------------------------------------------------------------- /app/views/layouts/application.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/app/views/layouts/application.html.slim -------------------------------------------------------------------------------- /app/views/pants/auth/login.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/app/views/pants/auth/login.html.slim -------------------------------------------------------------------------------- /app/views/pants/documents/_document.atom.builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/app/views/pants/documents/_document.atom.builder -------------------------------------------------------------------------------- /app/views/pants/documents/_document.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/app/views/pants/documents/_document.html.slim -------------------------------------------------------------------------------- /app/views/pants/documents/_document.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/app/views/pants/documents/_document.json.jbuilder -------------------------------------------------------------------------------- /app/views/pants/documents/_form.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/app/views/pants/documents/_form.html.slim -------------------------------------------------------------------------------- /app/views/pants/documents/_reactions.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/app/views/pants/documents/_reactions.html.slim -------------------------------------------------------------------------------- /app/views/pants/documents/edit.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/app/views/pants/documents/edit.html.slim -------------------------------------------------------------------------------- /app/views/pants/documents/index.atom.builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/app/views/pants/documents/index.atom.builder -------------------------------------------------------------------------------- /app/views/pants/documents/index.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/app/views/pants/documents/index.html.slim -------------------------------------------------------------------------------- /app/views/pants/documents/index.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/app/views/pants/documents/index.json.jbuilder -------------------------------------------------------------------------------- /app/views/pants/documents/new.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/app/views/pants/documents/new.html.slim -------------------------------------------------------------------------------- /app/views/pants/documents/show.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/app/views/pants/documents/show.html.slim -------------------------------------------------------------------------------- /app/views/pants/documents/show.json.jbuilder: -------------------------------------------------------------------------------- 1 | json.partial! @document 2 | -------------------------------------------------------------------------------- /app/views/pants/posts/_form.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/app/views/pants/posts/_form.html.slim -------------------------------------------------------------------------------- /app/views/pants/setup/setup.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/app/views/pants/setup/setup.html.slim -------------------------------------------------------------------------------- /app/views/pants/users/_form.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/app/views/pants/users/_form.html.slim -------------------------------------------------------------------------------- /app/views/pants/users/_user.json.jbuilder: -------------------------------------------------------------------------------- 1 | json.(@user, :name, :url) 2 | -------------------------------------------------------------------------------- /app/views/pants/users/edit.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/app/views/pants/users/edit.html.slim -------------------------------------------------------------------------------- /app/views/pants/users/export.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/app/views/pants/users/export.html.slim -------------------------------------------------------------------------------- /app/views/pants/users/export.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/app/views/pants/users/export.json.jbuilder -------------------------------------------------------------------------------- /app/views/pants/users/show.json.jbuilder: -------------------------------------------------------------------------------- 1 | json.partial! @user 2 | -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/heroku_bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/bin/heroku_bootstrap.sh -------------------------------------------------------------------------------- /bin/heroku_update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/bin/heroku_update.sh -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/rspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/bin/rspec -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/bin/setup -------------------------------------------------------------------------------- /bin/spring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/bin/spring -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/config/database.yml -------------------------------------------------------------------------------- /config/database.yml.travis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/config/database.yml.travis -------------------------------------------------------------------------------- /config/docker/nginx-site.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/config/docker/nginx-site.conf -------------------------------------------------------------------------------- /config/docker/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/config/docker/nginx.conf -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/action_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/config/initializers/action_mailer.rb -------------------------------------------------------------------------------- /config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/config/initializers/assets.rb -------------------------------------------------------------------------------- /config/initializers/background_processing.rb: -------------------------------------------------------------------------------- 1 | if Rails.env.production? 2 | Background.mode = :threads 3 | end 4 | -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /config/initializers/dragonfly.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/config/initializers/dragonfly.rb -------------------------------------------------------------------------------- /config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /config/initializers/indiepants.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/config/initializers/indiepants.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/jbuilder_prettify.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/config/initializers/jbuilder_prettify.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- 1 | Mime::Type.register "image/jpeg", :jpg 2 | -------------------------------------------------------------------------------- /config/initializers/multijson.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/config/initializers/multijson.rb -------------------------------------------------------------------------------- /config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/config/initializers/session_store.rb -------------------------------------------------------------------------------- /config/initializers/simple_form.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/config/initializers/simple_form.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/locales/rails.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/config/locales/rails.en.yml -------------------------------------------------------------------------------- /config/locales/simple_form.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/config/locales/simple_form.en.yml -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/config/secrets.yml -------------------------------------------------------------------------------- /db/migrate/20150201100000_enable_extensions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/db/migrate/20150201100000_enable_extensions.rb -------------------------------------------------------------------------------- /db/migrate/20150201100216_create_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/db/migrate/20150201100216_create_users.rb -------------------------------------------------------------------------------- /db/migrate/20150201105121_create_documents.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/db/migrate/20150201105121_create_documents.rb -------------------------------------------------------------------------------- /db/migrate/20150216180849_create_pants_links.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/db/migrate/20150216180849_create_pants_links.rb -------------------------------------------------------------------------------- /db/migrate/20150228082847_create_pants_binaries.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/db/migrate/20150228082847_create_pants_binaries.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /fig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/fig.yml -------------------------------------------------------------------------------- /lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/docker.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/lib/tasks/docker.rake -------------------------------------------------------------------------------- /lib/tasks/indiepants.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/lib/tasks/indiepants.rake -------------------------------------------------------------------------------- /log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/public/404.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/public/500.html -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/public/robots.txt -------------------------------------------------------------------------------- /spec/controllers/pants/auth_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/spec/controllers/pants/auth_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/pants/documents_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/spec/controllers/pants/documents_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/pants/setup_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/spec/controllers/pants/setup_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/pants/users_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/spec/controllers/pants/users_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/pants/webmentions_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/spec/controllers/pants/webmentions_controller_spec.rb -------------------------------------------------------------------------------- /spec/factories/documents.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/spec/factories/documents.rb -------------------------------------------------------------------------------- /spec/factories/pants_links.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/spec/factories/pants_links.rb -------------------------------------------------------------------------------- /spec/factories/pants_posts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/spec/factories/pants_posts.rb -------------------------------------------------------------------------------- /spec/factories/users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/spec/factories/users.rb -------------------------------------------------------------------------------- /spec/features/claiming_a_site_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/spec/features/claiming_a_site_spec.rb -------------------------------------------------------------------------------- /spec/features/creating_a_post_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/spec/features/creating_a_post_spec.rb -------------------------------------------------------------------------------- /spec/features/editing_a_post_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/spec/features/editing_a_post_spec.rb -------------------------------------------------------------------------------- /spec/features/export_feature_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/spec/features/export_feature_spec.rb -------------------------------------------------------------------------------- /spec/features/rendering_documents_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/spec/features/rendering_documents_spec.rb -------------------------------------------------------------------------------- /spec/models/pants/document_deduplication_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/spec/models/pants/document_deduplication_spec.rb -------------------------------------------------------------------------------- /spec/models/pants/document_fetching_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/spec/models/pants/document_fetching_spec.rb -------------------------------------------------------------------------------- /spec/models/pants/document_links_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/spec/models/pants/document_links_spec.rb -------------------------------------------------------------------------------- /spec/models/pants/document_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/spec/models/pants/document_spec.rb -------------------------------------------------------------------------------- /spec/models/pants/link_spec.rb: -------------------------------------------------------------------------------- 1 | require 'rails_helper' 2 | 3 | RSpec.describe Pants::Link, type: :model do 4 | end 5 | -------------------------------------------------------------------------------- /spec/models/pants/post_spec.rb: -------------------------------------------------------------------------------- 1 | require 'rails_helper' 2 | 3 | RSpec.describe Pants::Post, :type => :model do 4 | end 5 | -------------------------------------------------------------------------------- /spec/models/pants/user_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/spec/models/pants/user_spec.rb -------------------------------------------------------------------------------- /spec/rails_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/spec/rails_helper.rb -------------------------------------------------------------------------------- /spec/requests/atom_feed_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/spec/requests/atom_feed_spec.rb -------------------------------------------------------------------------------- /spec/requests/document_json_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/spec/requests/document_json_spec.rb -------------------------------------------------------------------------------- /spec/requests/webmention_endpoint_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/spec/requests/webmention_endpoint_spec.rb -------------------------------------------------------------------------------- /spec/services/fetch_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/spec/services/fetch_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/common_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/spec/support/common_helpers.rb -------------------------------------------------------------------------------- /spec/support/feature_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/spec/support/feature_helpers.rb -------------------------------------------------------------------------------- /spec/support/request_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/indiepants/HEAD/spec/support/request_helpers.rb -------------------------------------------------------------------------------- /vendor/assets/javascripts/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/assets/stylesheets/.keep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------