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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b65104dbcdc2bd0d60f917976c800399926d9468
4
- data.tar.gz: 8052c786aee60f6f2538cae39496e756d8d3e624
3
+ metadata.gz: 907af22505b2fc36697c915ab321cd086fe44841
4
+ data.tar.gz: 5ce0623fb02873eeebfb588f4efb58c81b2fea78
5
5
  SHA512:
6
- metadata.gz: 328d529f559d661538824d790d15ab9519d6085471e0a931d593aa786ab4f2fe4567ebf9e15b6df3f207453473aa0ad79280686c631793792c814579736be1a3
7
- data.tar.gz: 1467d0f528154b9eb106c05a9e639dc841a13ff734496f4f938a360af65ac7c8ab534905b608a16b317a220133e44043c9191145403991cf369bcae226d656a6
6
+ metadata.gz: adf22566936becb8ff1cf8c97019cd618bfff993460d62e15fd167daf9ffe73a930d6870b014b5e57c25ad196477b24c3105adea271dc97167eb57ce8ab4eac1
7
+ data.tar.gz: 39b846388b7ac3d5aaf84b2a7aaae0a7353aab849e00c443b5f20882792d5d9cdb6c775a6a4c48d85db886c56d881089baea625f4a637bdc902f4e439af3f355
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- agile-proxy (0.1.5)
4
+ agile-proxy (0.1.6)
5
5
  activerecord (~> 4.1.6)
6
6
  em-http-request (~> 1.1.2)
7
7
  em-synchrony (~> 1.0.3)
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: 'public-app-1', password: 'password', id: 1 if (Application.where(name: 'Default Application').count == 0)
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
@@ -2,5 +2,5 @@
2
2
  #
3
3
  # The Agile Proxy module is a common namespace for all classes / sub modules.
4
4
  module AgileProxy
5
- VERSION = '0.1.5'
5
+ VERSION = '0.1.6'
6
6
  end
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.5
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.2.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