├── .gitignore ├── .rspec ├── .ruby-version ├── Capfile ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── Procfile ├── Procfile.development ├── README.md ├── Rakefile ├── app ├── assets │ ├── images │ │ └── .keep │ ├── javascripts │ │ ├── application.js │ │ └── pants.js.coffee │ └── stylesheets │ │ ├── application.css │ │ ├── pantastic.css.scss │ │ └── pantastic │ │ ├── _basics.scss │ │ ├── _coderay.scss │ │ ├── _configuration.scss │ │ ├── _flashes.scss │ │ ├── _forms.scss │ │ ├── _friendships.scss │ │ ├── _grid.scss │ │ ├── _header.scss │ │ ├── _mixins.scss │ │ ├── _posts.scss │ │ ├── _prototypes.scss │ │ ├── _tables.scss │ │ ├── _tabs.scss │ │ ├── _text.scss │ │ ├── _timeline.scss │ │ └── _users.scss ├── controllers │ ├── application_controller.rb │ ├── auth_controller.rb │ ├── concerns │ │ └── .keep │ ├── friendships_controller.rb │ ├── pings_controller.rb │ ├── posts_controller.rb │ ├── server │ │ ├── pings_controller.rb │ │ └── users_controller.rb │ ├── server_controller.rb │ ├── timeline_entries_controller.rb │ └── users_controller.rb ├── helpers │ └── application_helper.rb ├── mailers │ └── .keep ├── models │ ├── .keep │ ├── ability.rb │ ├── concerns │ │ └── .keep │ ├── friendship.rb │ ├── ping.rb │ ├── post.rb │ ├── timeline_entry.rb │ └── user.rb ├── services │ ├── api_tokens.rb │ ├── batch_user_poller.rb │ ├── formatter.rb │ ├── friendship_checker.rb │ ├── friendship_reminder.rb │ ├── http.rb │ ├── post_fetcher.rb │ ├── post_pusher.rb │ ├── post_upserter.rb │ ├── rel_following_checker.rb │ ├── service.rb │ ├── tag_extractor.rb │ ├── user_fetcher.rb │ ├── user_poller.rb │ ├── webmention_handler.rb │ └── webmentioner.rb └── views │ ├── application │ ├── _flashes.html.slim │ ├── _footer.html.slim │ ├── _ga.html.erb │ ├── _gosquared.html.erb │ ├── _header.html.slim │ ├── _navigation.html.slim │ ├── discovery.json.jbuilder │ └── error.html.slim │ ├── auth │ └── login.html.slim │ ├── friendships │ ├── _friendship.html.slim │ └── index.html.slim │ ├── layouts │ └── application.html.slim │ ├── posts │ ├── _form.html.slim │ ├── _miniform.html.slim │ ├── _more.html.slim │ ├── _post.atom.builder │ ├── _post.html.slim │ ├── _post.json.jbuilder │ ├── _post_for_feed.html.slim │ ├── day.html.slim │ ├── edit.html.slim │ ├── index.atom.builder │ ├── index.html.slim │ ├── index.js.coffee │ ├── index.json.jbuilder │ ├── new.html.slim │ ├── show.html.slim │ ├── show.json.jbuilder │ ├── tagged.atom.builder │ ├── tagged.html.slim │ └── tagged.js.coffee │ ├── server │ ├── _navigation.html.slim │ ├── dashboard.html.slim │ ├── pings │ │ ├── _ping.html.slim │ │ └── index.html.slim │ └── users │ │ ├── _form.html.slim │ │ ├── index.html.slim │ │ ├── new.html.slim │ │ └── show.html.slim │ ├── timeline_entries │ ├── _more.html.slim │ ├── _timeline_entry.html.slim │ ├── destroy.js.coffee │ ├── incoming.html.slim │ ├── incoming.js.coffee │ ├── incoming.json.jbuilder │ ├── index.html.slim │ ├── index.js.coffee │ └── index.json.jbuilder │ └── users │ ├── _form.html.slim │ ├── _user.html.slim │ ├── edit.html.slim │ ├── show.css.erb │ ├── show.html.slim │ └── show.json.jbuilder ├── bin ├── bundle ├── rails ├── rake ├── rspec └── spring ├── config.ru ├── config ├── application.rb ├── boot.rb ├── database.yml ├── deploy.rb ├── deploy │ ├── production.rb │ └── staging.rb ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── backtrace_silencers.rb │ ├── cookies_serializer.rb │ ├── dragonfly.rb │ ├── exception_notifications.rb │ ├── filter_parameter_logging.rb │ ├── inflections.rb │ ├── mime_types.rb │ ├── scheduled_tasks.rb │ ├── session_store.rb │ ├── simple_form.rb │ ├── string_ext.rb │ └── wrap_parameters.rb ├── locales │ ├── de.yml │ ├── en.yml │ └── rails.de.yml ├── routes.rb └── secrets.yml ├── db ├── migrate │ ├── 20140620201026_create_posts.rb │ ├── 20140620223408_create_users.rb │ ├── 20140621231330_add_tags_to_posts.rb │ ├── 20140623182103_add_previous_shas_to_posts.rb │ ├── 20140623191528_replace_short_sha_with_slug_in_posts.rb │ ├── 20140623192401_remove_successor_from_posts.rb │ ├── 20140623193018_add_published_at_to_posts.rb │ ├── 20140623195635_add_locale_to_users.rb │ ├── 20140624165926_add_guid_to_posts.rb │ ├── 20140627173045_add_edited_at_to_posts.rb │ ├── 20140627174842_create_timeline_entries.rb │ ├── 20140627181148_add_url_to_posts.rb │ ├── 20140627201619_add_url_to_users.rb │ ├── 20140627205626_add_hosted_to_users.rb │ ├── 20140627210230_add_go_squared_id_to_users.rb │ ├── 20140627212936_add_indices_to_users.rb │ ├── 20140627222454_create_friendships.rb │ ├── 20140628002622_add_from_friend_to_timeline_entries.rb │ ├── 20140628220407_add_image_uid_to_users.rb │ ├── 20140629140215_add_references_to_posts.rb │ ├── 20140629162248_add_google_analytics_id_to_users.rb │ ├── 20140702115301_add_last_polled_at_to_users.rb │ ├── 20140707142641_make_post_guid_index_unique.rb │ ├── 20140707155904_add_hidden_to_timeline_entries.rb │ ├── 20140707220023_add_flair_to_users.rb │ ├── 20140709105913_add_admin_flag_to_users.rb │ ├── 20140711213445_create_pings.rb │ ├── 20140711224951_add_web_links_to_users.rb │ ├── 20140713153708_add_friends_visible_to_users.rb │ ├── 20140714194840_add_title_to_posts.rb │ ├── 20140714204326_add_referenced_by_to_posts.rb │ ├── 20140714224815_drop_sha_columns_from_posts.rb │ ├── 20140717183939_add_number_of_replies_to_posts.rb │ ├── 20140717194847_add_type_to_posts.rb │ ├── 20140719154548_add_data_to_posts.rb │ ├── 20140719202700_add_guids_to_pings.rb │ ├── 20140719203726_remove_post_id_from_pings.rb │ ├── 20140725190039_remove_referenced_by_from_posts.rb │ ├── 20140731122124_add_referenced_url_to_posts.rb │ └── 20140810100333_add_updated_at_to_friendships.rb ├── schema.rb └── seeds.rb ├── lib ├── assets │ └── .keep ├── pants │ └── version.rb └── tasks │ ├── .keep │ └── pants.rake ├── log └── .keep ├── public ├── 404.html ├── 422.html ├── 500.html ├── favicon.ico ├── images │ └── 1x1.png └── robots.txt ├── spec ├── controllers │ ├── auth_controller_spec.rb │ ├── friendships_controller_spec.rb │ ├── pings_controller_spec.rb │ ├── posts_controller_spec.rb │ ├── server │ │ ├── pings_controller_spec.rb │ │ └── users_controller_spec.rb │ ├── timeline_entries_controller_spec.rb │ └── users_controller_spec.rb ├── factories │ ├── friendships.rb │ ├── pings.rb │ ├── posts.rb │ ├── timeline_entries.rb │ └── users.rb ├── models │ ├── friendship_spec.rb │ ├── ping_spec.rb │ ├── post_references_spec.rb │ ├── post_spec.rb │ ├── timeline_entry_spec.rb │ └── user_spec.rb ├── rails_helper.rb ├── services │ ├── post_fetcher_spec.rb │ ├── tag_extractor_spec.rb │ ├── user_fetcher_spec.rb │ └── user_poller_spec.rb ├── spec_helper.rb └── support │ └── factory_girl.rb └── vendor └── assets ├── javascripts └── .keep └── stylesheets └── .keep /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --require spec_helper 3 | -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.1.2 2 | -------------------------------------------------------------------------------- /Capfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/Capfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: bundle exec puma -p $PORT -w 2 -t 2:8 2 | -------------------------------------------------------------------------------- /Procfile.development: -------------------------------------------------------------------------------- 1 | pants: bundle exec rails server -p $PORT 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/Rakefile -------------------------------------------------------------------------------- /app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /app/assets/javascripts/pants.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/assets/javascripts/pants.js.coffee -------------------------------------------------------------------------------- /app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/assets/stylesheets/application.css -------------------------------------------------------------------------------- /app/assets/stylesheets/pantastic.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/assets/stylesheets/pantastic.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/pantastic/_basics.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/assets/stylesheets/pantastic/_basics.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/pantastic/_coderay.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/assets/stylesheets/pantastic/_coderay.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/pantastic/_configuration.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/assets/stylesheets/pantastic/_configuration.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/pantastic/_flashes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/assets/stylesheets/pantastic/_flashes.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/pantastic/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/assets/stylesheets/pantastic/_forms.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/pantastic/_friendships.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/stylesheets/pantastic/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/assets/stylesheets/pantastic/_grid.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/pantastic/_header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/assets/stylesheets/pantastic/_header.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/pantastic/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/assets/stylesheets/pantastic/_mixins.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/pantastic/_posts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/assets/stylesheets/pantastic/_posts.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/pantastic/_prototypes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/assets/stylesheets/pantastic/_prototypes.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/pantastic/_tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/assets/stylesheets/pantastic/_tables.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/pantastic/_tabs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/assets/stylesheets/pantastic/_tabs.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/pantastic/_text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/assets/stylesheets/pantastic/_text.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/pantastic/_timeline.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/assets/stylesheets/pantastic/_timeline.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/pantastic/_users.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/assets/stylesheets/pantastic/_users.scss -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/auth_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/controllers/auth_controller.rb -------------------------------------------------------------------------------- /app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controllers/friendships_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/controllers/friendships_controller.rb -------------------------------------------------------------------------------- /app/controllers/pings_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/controllers/pings_controller.rb -------------------------------------------------------------------------------- /app/controllers/posts_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/controllers/posts_controller.rb -------------------------------------------------------------------------------- /app/controllers/server/pings_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/controllers/server/pings_controller.rb -------------------------------------------------------------------------------- /app/controllers/server/users_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/controllers/server/users_controller.rb -------------------------------------------------------------------------------- /app/controllers/server_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/controllers/server_controller.rb -------------------------------------------------------------------------------- /app/controllers/timeline_entries_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/controllers/timeline_entries_controller.rb -------------------------------------------------------------------------------- /app/controllers/users_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/controllers/users_controller.rb -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/helpers/application_helper.rb -------------------------------------------------------------------------------- /app/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/ability.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/models/ability.rb -------------------------------------------------------------------------------- /app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/friendship.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/models/friendship.rb -------------------------------------------------------------------------------- /app/models/ping.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/models/ping.rb -------------------------------------------------------------------------------- /app/models/post.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/models/post.rb -------------------------------------------------------------------------------- /app/models/timeline_entry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/models/timeline_entry.rb -------------------------------------------------------------------------------- /app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/models/user.rb -------------------------------------------------------------------------------- /app/services/api_tokens.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/services/api_tokens.rb -------------------------------------------------------------------------------- /app/services/batch_user_poller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/services/batch_user_poller.rb -------------------------------------------------------------------------------- /app/services/formatter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/services/formatter.rb -------------------------------------------------------------------------------- /app/services/friendship_checker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/services/friendship_checker.rb -------------------------------------------------------------------------------- /app/services/friendship_reminder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/services/friendship_reminder.rb -------------------------------------------------------------------------------- /app/services/http.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/services/http.rb -------------------------------------------------------------------------------- /app/services/post_fetcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/services/post_fetcher.rb -------------------------------------------------------------------------------- /app/services/post_pusher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/services/post_pusher.rb -------------------------------------------------------------------------------- /app/services/post_upserter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/services/post_upserter.rb -------------------------------------------------------------------------------- /app/services/rel_following_checker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/services/rel_following_checker.rb -------------------------------------------------------------------------------- /app/services/service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/services/service.rb -------------------------------------------------------------------------------- /app/services/tag_extractor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/services/tag_extractor.rb -------------------------------------------------------------------------------- /app/services/user_fetcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/services/user_fetcher.rb -------------------------------------------------------------------------------- /app/services/user_poller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/services/user_poller.rb -------------------------------------------------------------------------------- /app/services/webmention_handler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/services/webmention_handler.rb -------------------------------------------------------------------------------- /app/services/webmentioner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/services/webmentioner.rb -------------------------------------------------------------------------------- /app/views/application/_flashes.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/views/application/_flashes.html.slim -------------------------------------------------------------------------------- /app/views/application/_footer.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/views/application/_footer.html.slim -------------------------------------------------------------------------------- /app/views/application/_ga.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/views/application/_ga.html.erb -------------------------------------------------------------------------------- /app/views/application/_gosquared.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/views/application/_gosquared.html.erb -------------------------------------------------------------------------------- /app/views/application/_header.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/views/application/_header.html.slim -------------------------------------------------------------------------------- /app/views/application/_navigation.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/views/application/_navigation.html.slim -------------------------------------------------------------------------------- /app/views/application/discovery.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/views/application/discovery.json.jbuilder -------------------------------------------------------------------------------- /app/views/application/error.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/views/application/error.html.slim -------------------------------------------------------------------------------- /app/views/auth/login.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/views/auth/login.html.slim -------------------------------------------------------------------------------- /app/views/friendships/_friendship.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/views/friendships/_friendship.html.slim -------------------------------------------------------------------------------- /app/views/friendships/index.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/views/friendships/index.html.slim -------------------------------------------------------------------------------- /app/views/layouts/application.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/views/layouts/application.html.slim -------------------------------------------------------------------------------- /app/views/posts/_form.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/views/posts/_form.html.slim -------------------------------------------------------------------------------- /app/views/posts/_miniform.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/views/posts/_miniform.html.slim -------------------------------------------------------------------------------- /app/views/posts/_more.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/views/posts/_more.html.slim -------------------------------------------------------------------------------- /app/views/posts/_post.atom.builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/views/posts/_post.atom.builder -------------------------------------------------------------------------------- /app/views/posts/_post.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/views/posts/_post.html.slim -------------------------------------------------------------------------------- /app/views/posts/_post.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/views/posts/_post.json.jbuilder -------------------------------------------------------------------------------- /app/views/posts/_post_for_feed.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/views/posts/_post_for_feed.html.slim -------------------------------------------------------------------------------- /app/views/posts/day.html.slim: -------------------------------------------------------------------------------- 1 | h1 = l(@date, format: :long) 2 | = render @posts 3 | -------------------------------------------------------------------------------- /app/views/posts/edit.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/views/posts/edit.html.slim -------------------------------------------------------------------------------- /app/views/posts/index.atom.builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/views/posts/index.atom.builder -------------------------------------------------------------------------------- /app/views/posts/index.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/views/posts/index.html.slim -------------------------------------------------------------------------------- /app/views/posts/index.js.coffee: -------------------------------------------------------------------------------- 1 | $('#more-posts').replaceWith('<%= j render(partial: 'more') %>') 2 | -------------------------------------------------------------------------------- /app/views/posts/index.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/views/posts/index.json.jbuilder -------------------------------------------------------------------------------- /app/views/posts/new.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/views/posts/new.html.slim -------------------------------------------------------------------------------- /app/views/posts/show.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/views/posts/show.html.slim -------------------------------------------------------------------------------- /app/views/posts/show.json.jbuilder: -------------------------------------------------------------------------------- 1 | json.partial! @post 2 | -------------------------------------------------------------------------------- /app/views/posts/tagged.atom.builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/views/posts/tagged.atom.builder -------------------------------------------------------------------------------- /app/views/posts/tagged.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/views/posts/tagged.html.slim -------------------------------------------------------------------------------- /app/views/posts/tagged.js.coffee: -------------------------------------------------------------------------------- 1 | $('#more-posts').replaceWith('<%= j render(partial: 'more') %>') 2 | -------------------------------------------------------------------------------- /app/views/server/_navigation.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/views/server/_navigation.html.slim -------------------------------------------------------------------------------- /app/views/server/dashboard.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/views/server/dashboard.html.slim -------------------------------------------------------------------------------- /app/views/server/pings/_ping.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/views/server/pings/_ping.html.slim -------------------------------------------------------------------------------- /app/views/server/pings/index.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/views/server/pings/index.html.slim -------------------------------------------------------------------------------- /app/views/server/users/_form.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/views/server/users/_form.html.slim -------------------------------------------------------------------------------- /app/views/server/users/index.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/views/server/users/index.html.slim -------------------------------------------------------------------------------- /app/views/server/users/new.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/views/server/users/new.html.slim -------------------------------------------------------------------------------- /app/views/server/users/show.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/views/server/users/show.html.slim -------------------------------------------------------------------------------- /app/views/timeline_entries/_more.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/views/timeline_entries/_more.html.slim -------------------------------------------------------------------------------- /app/views/timeline_entries/_timeline_entry.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/views/timeline_entries/_timeline_entry.html.slim -------------------------------------------------------------------------------- /app/views/timeline_entries/destroy.js.coffee: -------------------------------------------------------------------------------- 1 | $('#<%= dom_id(@timeline_entry) %>').hide() 2 | -------------------------------------------------------------------------------- /app/views/timeline_entries/incoming.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/views/timeline_entries/incoming.html.slim -------------------------------------------------------------------------------- /app/views/timeline_entries/incoming.js.coffee: -------------------------------------------------------------------------------- 1 | $('#more-posts').replaceWith('<%= j render(partial: 'more') %>') 2 | -------------------------------------------------------------------------------- /app/views/timeline_entries/incoming.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/views/timeline_entries/incoming.json.jbuilder -------------------------------------------------------------------------------- /app/views/timeline_entries/index.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/views/timeline_entries/index.html.slim -------------------------------------------------------------------------------- /app/views/timeline_entries/index.js.coffee: -------------------------------------------------------------------------------- 1 | $('#more-posts').replaceWith('<%= j render(partial: 'more') %>') 2 | -------------------------------------------------------------------------------- /app/views/timeline_entries/index.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/views/timeline_entries/index.json.jbuilder -------------------------------------------------------------------------------- /app/views/users/_form.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/views/users/_form.html.slim -------------------------------------------------------------------------------- /app/views/users/_user.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/views/users/_user.html.slim -------------------------------------------------------------------------------- /app/views/users/edit.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/views/users/edit.html.slim -------------------------------------------------------------------------------- /app/views/users/show.css.erb: -------------------------------------------------------------------------------- 1 | /* expect theme support here. */ 2 | -------------------------------------------------------------------------------- /app/views/users/show.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/views/users/show.html.slim -------------------------------------------------------------------------------- /app/views/users/show.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/app/views/users/show.json.jbuilder -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/rspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/bin/rspec -------------------------------------------------------------------------------- /bin/spring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/bin/spring -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/config/database.yml -------------------------------------------------------------------------------- /config/deploy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/config/deploy.rb -------------------------------------------------------------------------------- /config/deploy/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/config/deploy/production.rb -------------------------------------------------------------------------------- /config/deploy/staging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/config/deploy/staging.rb -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /config/initializers/dragonfly.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/config/initializers/dragonfly.rb -------------------------------------------------------------------------------- /config/initializers/exception_notifications.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/config/initializers/exception_notifications.rb -------------------------------------------------------------------------------- /config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/scheduled_tasks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/config/initializers/scheduled_tasks.rb -------------------------------------------------------------------------------- /config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/config/initializers/session_store.rb -------------------------------------------------------------------------------- /config/initializers/simple_form.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/config/initializers/simple_form.rb -------------------------------------------------------------------------------- /config/initializers/string_ext.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/config/initializers/string_ext.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/locales/de.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/config/locales/de.yml -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/locales/rails.de.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/config/locales/rails.de.yml -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/config/secrets.yml -------------------------------------------------------------------------------- /db/migrate/20140620201026_create_posts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/db/migrate/20140620201026_create_posts.rb -------------------------------------------------------------------------------- /db/migrate/20140620223408_create_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/db/migrate/20140620223408_create_users.rb -------------------------------------------------------------------------------- /db/migrate/20140621231330_add_tags_to_posts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/db/migrate/20140621231330_add_tags_to_posts.rb -------------------------------------------------------------------------------- /db/migrate/20140623182103_add_previous_shas_to_posts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/db/migrate/20140623182103_add_previous_shas_to_posts.rb -------------------------------------------------------------------------------- /db/migrate/20140623191528_replace_short_sha_with_slug_in_posts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/db/migrate/20140623191528_replace_short_sha_with_slug_in_posts.rb -------------------------------------------------------------------------------- /db/migrate/20140623192401_remove_successor_from_posts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/db/migrate/20140623192401_remove_successor_from_posts.rb -------------------------------------------------------------------------------- /db/migrate/20140623193018_add_published_at_to_posts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/db/migrate/20140623193018_add_published_at_to_posts.rb -------------------------------------------------------------------------------- /db/migrate/20140623195635_add_locale_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/db/migrate/20140623195635_add_locale_to_users.rb -------------------------------------------------------------------------------- /db/migrate/20140624165926_add_guid_to_posts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/db/migrate/20140624165926_add_guid_to_posts.rb -------------------------------------------------------------------------------- /db/migrate/20140627173045_add_edited_at_to_posts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/db/migrate/20140627173045_add_edited_at_to_posts.rb -------------------------------------------------------------------------------- /db/migrate/20140627174842_create_timeline_entries.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/db/migrate/20140627174842_create_timeline_entries.rb -------------------------------------------------------------------------------- /db/migrate/20140627181148_add_url_to_posts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/db/migrate/20140627181148_add_url_to_posts.rb -------------------------------------------------------------------------------- /db/migrate/20140627201619_add_url_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/db/migrate/20140627201619_add_url_to_users.rb -------------------------------------------------------------------------------- /db/migrate/20140627205626_add_hosted_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/db/migrate/20140627205626_add_hosted_to_users.rb -------------------------------------------------------------------------------- /db/migrate/20140627210230_add_go_squared_id_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/db/migrate/20140627210230_add_go_squared_id_to_users.rb -------------------------------------------------------------------------------- /db/migrate/20140627212936_add_indices_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/db/migrate/20140627212936_add_indices_to_users.rb -------------------------------------------------------------------------------- /db/migrate/20140627222454_create_friendships.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/db/migrate/20140627222454_create_friendships.rb -------------------------------------------------------------------------------- /db/migrate/20140628002622_add_from_friend_to_timeline_entries.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/db/migrate/20140628002622_add_from_friend_to_timeline_entries.rb -------------------------------------------------------------------------------- /db/migrate/20140628220407_add_image_uid_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/db/migrate/20140628220407_add_image_uid_to_users.rb -------------------------------------------------------------------------------- /db/migrate/20140629140215_add_references_to_posts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/db/migrate/20140629140215_add_references_to_posts.rb -------------------------------------------------------------------------------- /db/migrate/20140629162248_add_google_analytics_id_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/db/migrate/20140629162248_add_google_analytics_id_to_users.rb -------------------------------------------------------------------------------- /db/migrate/20140702115301_add_last_polled_at_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/db/migrate/20140702115301_add_last_polled_at_to_users.rb -------------------------------------------------------------------------------- /db/migrate/20140707142641_make_post_guid_index_unique.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/db/migrate/20140707142641_make_post_guid_index_unique.rb -------------------------------------------------------------------------------- /db/migrate/20140707155904_add_hidden_to_timeline_entries.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/db/migrate/20140707155904_add_hidden_to_timeline_entries.rb -------------------------------------------------------------------------------- /db/migrate/20140707220023_add_flair_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/db/migrate/20140707220023_add_flair_to_users.rb -------------------------------------------------------------------------------- /db/migrate/20140709105913_add_admin_flag_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/db/migrate/20140709105913_add_admin_flag_to_users.rb -------------------------------------------------------------------------------- /db/migrate/20140711213445_create_pings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/db/migrate/20140711213445_create_pings.rb -------------------------------------------------------------------------------- /db/migrate/20140711224951_add_web_links_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/db/migrate/20140711224951_add_web_links_to_users.rb -------------------------------------------------------------------------------- /db/migrate/20140713153708_add_friends_visible_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/db/migrate/20140713153708_add_friends_visible_to_users.rb -------------------------------------------------------------------------------- /db/migrate/20140714194840_add_title_to_posts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/db/migrate/20140714194840_add_title_to_posts.rb -------------------------------------------------------------------------------- /db/migrate/20140714204326_add_referenced_by_to_posts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/db/migrate/20140714204326_add_referenced_by_to_posts.rb -------------------------------------------------------------------------------- /db/migrate/20140714224815_drop_sha_columns_from_posts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/db/migrate/20140714224815_drop_sha_columns_from_posts.rb -------------------------------------------------------------------------------- /db/migrate/20140717183939_add_number_of_replies_to_posts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/db/migrate/20140717183939_add_number_of_replies_to_posts.rb -------------------------------------------------------------------------------- /db/migrate/20140717194847_add_type_to_posts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/db/migrate/20140717194847_add_type_to_posts.rb -------------------------------------------------------------------------------- /db/migrate/20140719154548_add_data_to_posts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/db/migrate/20140719154548_add_data_to_posts.rb -------------------------------------------------------------------------------- /db/migrate/20140719202700_add_guids_to_pings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/db/migrate/20140719202700_add_guids_to_pings.rb -------------------------------------------------------------------------------- /db/migrate/20140719203726_remove_post_id_from_pings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/db/migrate/20140719203726_remove_post_id_from_pings.rb -------------------------------------------------------------------------------- /db/migrate/20140725190039_remove_referenced_by_from_posts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/db/migrate/20140725190039_remove_referenced_by_from_posts.rb -------------------------------------------------------------------------------- /db/migrate/20140731122124_add_referenced_url_to_posts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/db/migrate/20140731122124_add_referenced_url_to_posts.rb -------------------------------------------------------------------------------- /db/migrate/20140810100333_add_updated_at_to_friendships.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/db/migrate/20140810100333_add_updated_at_to_friendships.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/pants/version.rb: -------------------------------------------------------------------------------- 1 | module Pants 2 | VERSION = "r105" 3 | end 4 | -------------------------------------------------------------------------------- /lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/pants.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/lib/tasks/pants.rake -------------------------------------------------------------------------------- /log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/public/404.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/public/500.html -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/1x1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/public/images/1x1.png -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/public/robots.txt -------------------------------------------------------------------------------- /spec/controllers/auth_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/spec/controllers/auth_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/friendships_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/spec/controllers/friendships_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/pings_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/spec/controllers/pings_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/posts_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/spec/controllers/posts_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/server/pings_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/spec/controllers/server/pings_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/server/users_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/spec/controllers/server/users_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/timeline_entries_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/spec/controllers/timeline_entries_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/users_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/spec/controllers/users_controller_spec.rb -------------------------------------------------------------------------------- /spec/factories/friendships.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/spec/factories/friendships.rb -------------------------------------------------------------------------------- /spec/factories/pings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/spec/factories/pings.rb -------------------------------------------------------------------------------- /spec/factories/posts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/spec/factories/posts.rb -------------------------------------------------------------------------------- /spec/factories/timeline_entries.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/spec/factories/timeline_entries.rb -------------------------------------------------------------------------------- /spec/factories/users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/spec/factories/users.rb -------------------------------------------------------------------------------- /spec/models/friendship_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/spec/models/friendship_spec.rb -------------------------------------------------------------------------------- /spec/models/ping_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/spec/models/ping_spec.rb -------------------------------------------------------------------------------- /spec/models/post_references_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/spec/models/post_references_spec.rb -------------------------------------------------------------------------------- /spec/models/post_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/spec/models/post_spec.rb -------------------------------------------------------------------------------- /spec/models/timeline_entry_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/spec/models/timeline_entry_spec.rb -------------------------------------------------------------------------------- /spec/models/user_spec.rb: -------------------------------------------------------------------------------- 1 | require 'rails_helper' 2 | 3 | RSpec.describe User, :type => :model do 4 | end 5 | -------------------------------------------------------------------------------- /spec/rails_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/spec/rails_helper.rb -------------------------------------------------------------------------------- /spec/services/post_fetcher_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/spec/services/post_fetcher_spec.rb -------------------------------------------------------------------------------- /spec/services/tag_extractor_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/spec/services/tag_extractor_spec.rb -------------------------------------------------------------------------------- /spec/services/user_fetcher_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/spec/services/user_fetcher_spec.rb -------------------------------------------------------------------------------- /spec/services/user_poller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/spec/services/user_poller_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/factory_girl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmans/pants/HEAD/spec/support/factory_girl.rb -------------------------------------------------------------------------------- /vendor/assets/javascripts/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/assets/stylesheets/.keep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------