Initial commit

This commit is contained in:
James Hu 2015-06-04 19:24:05 -07:00
parent 9aeab345d7
commit 057b1ecc7a
4 changed files with 13 additions and 60 deletions

13
README.md Normal file
View File

@ -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.

View File

@ -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.

View File

@ -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

View File

@ -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