├── .gitignore ├── .ruby-version ├── .vscode └── launch.json ├── Gemfile ├── Gemfile.lock ├── Rakefile ├── _ruby ├── app.rb ├── config.ru ├── config ├── app.config.rb ├── nginx │ └── twtxt.reednj.com.txt ├── twtxt.sql └── user.json ├── deploy.sh ├── lib ├── extensions.rb ├── github-oauth.rb ├── migrations.rb ├── model.rb ├── rake │ ├── rake-nginx_provision.rb │ └── rake-remote_tasks.rb ├── sequel-event-log.rb ├── sinatra-basic-auth.rb ├── sinatra-schema-backup.rb ├── sinatra-twitter-gateway.rb └── twtxt.rb ├── public ├── css │ ├── app.css │ └── normalize.css ├── imgs │ └── logo.128x128.png ├── js │ ├── extensions.js │ ├── jquery-2.1.4.min.js │ └── timeline.js └── twtxt │ └── twtxt.txt ├── scratch.txt ├── sh ├── update-user-data.rb ├── update-user.rb └── user-meta-data.rb └── views ├── _layout.erb ├── _user_actions.erb ├── create_post.erb ├── edit_profile.erb ├── home.erb ├── posts.txt.erb ├── recent.erb ├── timeline.erb └── user.erb /.gitignore: -------------------------------------------------------------------------------- 1 | data 2 | directory.twtxt.txt 3 | -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.2.6 -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reednj/twtxt-directory/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reednj/twtxt-directory/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reednj/twtxt-directory/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reednj/twtxt-directory/HEAD/Rakefile -------------------------------------------------------------------------------- /_ruby: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reednj/twtxt-directory/HEAD/_ruby -------------------------------------------------------------------------------- /app.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reednj/twtxt-directory/HEAD/app.rb -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reednj/twtxt-directory/HEAD/config.ru -------------------------------------------------------------------------------- /config/app.config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reednj/twtxt-directory/HEAD/config/app.config.rb -------------------------------------------------------------------------------- /config/nginx/twtxt.reednj.com.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reednj/twtxt-directory/HEAD/config/nginx/twtxt.reednj.com.txt -------------------------------------------------------------------------------- /config/twtxt.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reednj/twtxt-directory/HEAD/config/twtxt.sql -------------------------------------------------------------------------------- /config/user.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reednj/twtxt-directory/HEAD/config/user.json -------------------------------------------------------------------------------- /deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reednj/twtxt-directory/HEAD/deploy.sh -------------------------------------------------------------------------------- /lib/extensions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reednj/twtxt-directory/HEAD/lib/extensions.rb -------------------------------------------------------------------------------- /lib/github-oauth.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reednj/twtxt-directory/HEAD/lib/github-oauth.rb -------------------------------------------------------------------------------- /lib/migrations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reednj/twtxt-directory/HEAD/lib/migrations.rb -------------------------------------------------------------------------------- /lib/model.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reednj/twtxt-directory/HEAD/lib/model.rb -------------------------------------------------------------------------------- /lib/rake/rake-nginx_provision.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reednj/twtxt-directory/HEAD/lib/rake/rake-nginx_provision.rb -------------------------------------------------------------------------------- /lib/rake/rake-remote_tasks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reednj/twtxt-directory/HEAD/lib/rake/rake-remote_tasks.rb -------------------------------------------------------------------------------- /lib/sequel-event-log.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reednj/twtxt-directory/HEAD/lib/sequel-event-log.rb -------------------------------------------------------------------------------- /lib/sinatra-basic-auth.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reednj/twtxt-directory/HEAD/lib/sinatra-basic-auth.rb -------------------------------------------------------------------------------- /lib/sinatra-schema-backup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reednj/twtxt-directory/HEAD/lib/sinatra-schema-backup.rb -------------------------------------------------------------------------------- /lib/sinatra-twitter-gateway.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reednj/twtxt-directory/HEAD/lib/sinatra-twitter-gateway.rb -------------------------------------------------------------------------------- /lib/twtxt.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reednj/twtxt-directory/HEAD/lib/twtxt.rb -------------------------------------------------------------------------------- /public/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reednj/twtxt-directory/HEAD/public/css/app.css -------------------------------------------------------------------------------- /public/css/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reednj/twtxt-directory/HEAD/public/css/normalize.css -------------------------------------------------------------------------------- /public/imgs/logo.128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reednj/twtxt-directory/HEAD/public/imgs/logo.128x128.png -------------------------------------------------------------------------------- /public/js/extensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reednj/twtxt-directory/HEAD/public/js/extensions.js -------------------------------------------------------------------------------- /public/js/jquery-2.1.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reednj/twtxt-directory/HEAD/public/js/jquery-2.1.4.min.js -------------------------------------------------------------------------------- /public/js/timeline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reednj/twtxt-directory/HEAD/public/js/timeline.js -------------------------------------------------------------------------------- /public/twtxt/twtxt.txt: -------------------------------------------------------------------------------- 1 | 2016-02-10T04:09:23Z Hello, world 2 | -------------------------------------------------------------------------------- /scratch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reednj/twtxt-directory/HEAD/scratch.txt -------------------------------------------------------------------------------- /sh/update-user-data.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reednj/twtxt-directory/HEAD/sh/update-user-data.rb -------------------------------------------------------------------------------- /sh/update-user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reednj/twtxt-directory/HEAD/sh/update-user.rb -------------------------------------------------------------------------------- /sh/user-meta-data.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reednj/twtxt-directory/HEAD/sh/user-meta-data.rb -------------------------------------------------------------------------------- /views/_layout.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reednj/twtxt-directory/HEAD/views/_layout.erb -------------------------------------------------------------------------------- /views/_user_actions.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reednj/twtxt-directory/HEAD/views/_user_actions.erb -------------------------------------------------------------------------------- /views/create_post.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reednj/twtxt-directory/HEAD/views/create_post.erb -------------------------------------------------------------------------------- /views/edit_profile.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reednj/twtxt-directory/HEAD/views/edit_profile.erb -------------------------------------------------------------------------------- /views/home.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reednj/twtxt-directory/HEAD/views/home.erb -------------------------------------------------------------------------------- /views/posts.txt.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reednj/twtxt-directory/HEAD/views/posts.txt.erb -------------------------------------------------------------------------------- /views/recent.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reednj/twtxt-directory/HEAD/views/recent.erb -------------------------------------------------------------------------------- /views/timeline.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reednj/twtxt-directory/HEAD/views/timeline.erb -------------------------------------------------------------------------------- /views/user.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reednj/twtxt-directory/HEAD/views/user.erb --------------------------------------------------------------------------------