├── Gemfile ├── Gemfile.lock ├── Procfile ├── config.ru ├── home.rb └── post.rb /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJKinni/GetPosted/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJKinni/GetPosted/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: bundle exec rackup config.ru -p $PORT 2 | -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJKinni/GetPosted/HEAD/config.ru -------------------------------------------------------------------------------- /home.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJKinni/GetPosted/HEAD/home.rb -------------------------------------------------------------------------------- /post.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJKinni/GetPosted/HEAD/post.rb --------------------------------------------------------------------------------