agile-proxy 0.1.5 → 0.1.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/README.md +15 -2
- data/db/seed.rb +1 -1
- data/lib/agile_proxy/version.rb +1 -1
- metadata +2 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 907af22505b2fc36697c915ab321cd086fe44841
|
4
|
+
data.tar.gz: 5ce0623fb02873eeebfb588f4efb58c81b2fea78
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: adf22566936becb8ff1cf8c97019cd618bfff993460d62e15fd167daf9ffe73a930d6870b014b5e57c25ad196477b24c3105adea271dc97167eb57ce8ab4eac1
|
7
|
+
data.tar.gz: 39b846388b7ac3d5aaf84b2a7aaae0a7353aab849e00c443b5f20882792d5d9cdb6c775a6a4c48d85db886c56d881089baea625f4a637bdc902f4e439af3f355
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
[![Build Status](https://travis-ci.org/garytaylor/agileproxy.svg?branch=master)](https://travis-ci.org/garytaylor/agileproxy)
|
2
|
+
[![Gem Version](https://badge.fury.io/rb/agile-proxy.svg)](http://badge.fury.io/rb/agile-proxy)
|
1
3
|
# agile-proxy
|
2
4
|
|
3
5
|
A proxy server intended for use during development or in integration test environments such as selenium.
|
@@ -65,9 +67,19 @@ Thats it - all done.
|
|
65
67
|
|
66
68
|
## Starting the server
|
67
69
|
|
68
|
-
agile_proxy start
|
70
|
+
agile_proxy start 3100
|
69
71
|
|
70
|
-
This will start the server with default options
|
72
|
+
This will start the server with default options on port 3100
|
73
|
+
|
74
|
+
## Using The Built In User Interface
|
75
|
+
|
76
|
+
Goto http://localhost:3020 in your browser
|
77
|
+
|
78
|
+
## Configuring a browser to use the proxy
|
79
|
+
|
80
|
+
The proxy url for the default application is
|
81
|
+
|
82
|
+
http://public-app-1:password@localhost:3100
|
71
83
|
|
72
84
|
## Contributing
|
73
85
|
|
@@ -81,4 +93,5 @@ This will start the server with default options.
|
|
81
93
|
|
82
94
|
1. Asserting requests were made to specific urls and that they contained the correct parameters
|
83
95
|
2. Route matching on URL parameters from the query string
|
96
|
+
3. Multi Application - The current infrastructure supports it, just need UI support - can already be done using REST
|
84
97
|
|
data/db/seed.rb
CHANGED
@@ -15,7 +15,7 @@ module AgileProxy
|
|
15
15
|
end
|
16
16
|
|
17
17
|
def create_default_application
|
18
|
-
Application.create user_id: public_user.id, name: 'Default Application', username:
|
18
|
+
Application.create user_id: public_user.id, name: 'Default Application', username: nil, password: nil, id: 1 if (Application.where(name: 'Default Application').count == 0)
|
19
19
|
end
|
20
20
|
|
21
21
|
def public_user
|
data/lib/agile_proxy/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: agile-proxy
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Gary Taylor
|
@@ -1867,7 +1867,6 @@ files:
|
|
1867
1867
|
- assets/ui/bower_components/angular-restmod/CONTRIBUTE.md
|
1868
1868
|
- assets/ui/bower_components/angular-restmod/LICENSE.md
|
1869
1869
|
- assets/ui/bower_components/angular-restmod/README.md
|
1870
|
-
- assets/ui/bower_components/angular-restmod/authors.md
|
1871
1870
|
- assets/ui/bower_components/angular-restmod/bower.json
|
1872
1871
|
- assets/ui/bower_components/angular-restmod/dist/angular-restmod-bundle.js
|
1873
1872
|
- assets/ui/bower_components/angular-restmod/dist/angular-restmod-bundle.min.js
|
@@ -2194,7 +2193,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
2194
2193
|
version: '0'
|
2195
2194
|
requirements: []
|
2196
2195
|
rubyforge_project:
|
2197
|
-
rubygems_version: 2.
|
2196
|
+
rubygems_version: 2.4.2
|
2198
2197
|
signing_key:
|
2199
2198
|
specification_version: 4
|
2200
2199
|
summary: An agile, programmable, controllable flexible proxy server for development
|