diff --git a/README.md b/README.md new file mode 100644 index 0000000..b41a0f7 --- /dev/null +++ b/README.md @@ -0,0 +1,13 @@ +# rails-reverse-proxy + +## Installation + +``` +gem install rails-reverse-proxy +``` + +## Copyright + +Copyright (c) 2015 James Hu. See LICENSE.txt for +further details. + diff --git a/README.rdoc b/README.rdoc deleted file mode 100644 index 9185df3..0000000 --- a/README.rdoc +++ /dev/null @@ -1,19 +0,0 @@ -= rails-reverse-proxy - -Description goes here. - -== Contributing to rails-reverse-proxy - -* Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet. -* Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it. -* Fork the project. -* Start a feature/bugfix branch. -* Commit and push until you are happy with your contribution. -* Make sure to add tests for it. This is important so I don't break it in a future version unintentionally. -* Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it. - -== Copyright - -Copyright (c) 2015 James Hu. See LICENSE.txt for -further details. - diff --git a/test/helper.rb b/test/helper.rb deleted file mode 100644 index c061817..0000000 --- a/test/helper.rb +++ /dev/null @@ -1,34 +0,0 @@ -require 'simplecov' - -module SimpleCov::Configuration - def clean_filters - @filters = [] - end -end - -SimpleCov.configure do - clean_filters - load_adapter 'test_frameworks' -end - -ENV["COVERAGE"] && SimpleCov.start do - add_filter "/.rvm/" -end -require 'rubygems' -require 'bundler' -begin - Bundler.setup(:default, :development) -rescue Bundler::BundlerError => e - $stderr.puts e.message - $stderr.puts "Run `bundle install` to install missing gems" - exit e.status_code -end -require 'test/unit' -require 'shoulda' - -$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib')) -$LOAD_PATH.unshift(File.dirname(__FILE__)) -require 'rails-reverse-proxy' - -class Test::Unit::TestCase -end diff --git a/test/test_rails-reverse-proxy.rb b/test/test_rails-reverse-proxy.rb deleted file mode 100644 index 69a9477..0000000 --- a/test/test_rails-reverse-proxy.rb +++ /dev/null @@ -1,7 +0,0 @@ -require 'helper' - -class TestRailsReverseProxy < Test::Unit::TestCase - should "probably rename this file and start testing for real" do - flunk "hey buddy, you should probably rename this file and start testing for real" - end -end