proxy_manager 0.0.7 → 0.0.8

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: 1d515d7554923a20db6cfc75bac4b44815b1a489
4
- data.tar.gz: ab669bc2ab67d1650accfb40316700cfeecdb8ff
3
+ metadata.gz: 1785202317778f2e76f7b1aac4471fb54f6f5d52
4
+ data.tar.gz: 426b4b2c92c5832bcad06f526eedce5652c47b12
5
5
  SHA512:
6
- metadata.gz: c17eedcf71666db7710c59fa3cbfd83b13a4fbce2cd11d185de0e4336f7bf3275a1b12b0129d2a138a97ba66996f96f92ee699a3b9e20b263c7e9e99171ad909
7
- data.tar.gz: 54248b3e849dfa4f0eede5385b7450ca860eca2e42a3febff912e4a6b3461766abdff572e315793f7a43ceee3b0de159a944582b24a6aa37f3526705bee69703
6
+ metadata.gz: 268c1fa55e8888ce349b6bb7725e79e20e81c3dfb5032eb9a3cc5446e0462be1cd253eb9f2708b85ceb91261aa0178b519251b30534ee5eddbac86ec446b920c
7
+ data.tar.gz: 8e89bf5bd2ae7a59f8e9d554af05ee22712793f4bf0c71bc48b1844a21cd7ef87ee4269da2365a78a5e0da037e13a273cbdeab28b98738027723fe4fcab23080
data/.yardopts CHANGED
@@ -1,3 +1,4 @@
1
1
  --private
2
2
  --protected
3
- -o doc/ruby
3
+ --readme README.md
4
+ --charset utf-8
data/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source "https://rubygems.org"
2
+
3
+ gemspec
data/Gemfile.lock ADDED
@@ -0,0 +1,77 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ proxy_manager (0.0.7)
5
+ net-ping (~> 1.7, >= 1.7.2)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ ansi (1.4.3)
11
+ celluloid (0.15.2)
12
+ timers (~> 1.1.0)
13
+ celluloid-io (0.15.0)
14
+ celluloid (>= 0.15.0)
15
+ nio4r (>= 0.5.0)
16
+ coderay (1.1.0)
17
+ diff-lcs (1.2.5)
18
+ ffi (1.9.3)
19
+ formatador (0.2.4)
20
+ fuubar (1.3.2)
21
+ rspec (>= 2.14.0, < 3.1.0)
22
+ ruby-progressbar (~> 1.3)
23
+ growl (1.0.3)
24
+ guard (2.6.0)
25
+ formatador (>= 0.2.4)
26
+ listen (~> 2.7)
27
+ lumberjack (~> 1.0)
28
+ pry (>= 0.9.12)
29
+ thor (>= 0.18.1)
30
+ guard-rspec (4.2.8)
31
+ guard (~> 2.1)
32
+ rspec (>= 2.14, < 4.0)
33
+ listen (2.7.1)
34
+ celluloid (>= 0.15.2)
35
+ celluloid-io (>= 0.15.0)
36
+ rb-fsevent (>= 0.9.3)
37
+ rb-inotify (>= 0.9)
38
+ lumberjack (1.0.5)
39
+ method_source (0.8.2)
40
+ minitest (4.7.5)
41
+ net-ping (1.7.2)
42
+ nio4r (1.0.0)
43
+ pry (0.9.12.6)
44
+ coderay (~> 1.0)
45
+ method_source (~> 0.8)
46
+ slop (~> 3.4)
47
+ rb-fsevent (0.9.4)
48
+ rb-inotify (0.9.3)
49
+ ffi (>= 0.5.0)
50
+ rspec (2.14.1)
51
+ rspec-core (~> 2.14.0)
52
+ rspec-expectations (~> 2.14.0)
53
+ rspec-mocks (~> 2.14.0)
54
+ rspec-core (2.14.8)
55
+ rspec-expectations (2.14.5)
56
+ diff-lcs (>= 1.1.3, < 2.0)
57
+ rspec-mocks (2.14.6)
58
+ ruby-progressbar (1.4.2)
59
+ slop (3.5.0)
60
+ thor (0.19.1)
61
+ timers (1.1.0)
62
+ turn (0.9.7)
63
+ ansi
64
+ minitest (~> 4)
65
+ yard (0.8.7.4)
66
+
67
+ PLATFORMS
68
+ ruby
69
+
70
+ DEPENDENCIES
71
+ fuubar (~> 1.3, >= 1.3.2)
72
+ growl (~> 1.0, >= 1.0.3)
73
+ guard-rspec (~> 4.2, >= 4.2.8)
74
+ proxy_manager!
75
+ rspec (~> 2.14, >= 2.14.1)
76
+ turn (~> 0.9, >= 0.9.7)
77
+ yard (~> 0.8, >= 0.8.7.4)
data/Guardfile ADDED
@@ -0,0 +1,25 @@
1
+ # A sample Guardfile
2
+ # More info at https://github.com/guard/guard#readme
3
+
4
+ guard :rspec do
5
+ watch(%r{^spec/.+_spec\.rb$})
6
+ watch(%r{^lib/(.+)\.rb$}) { |m| "spec/lib/#{m[1]}_spec.rb" }
7
+ watch('spec/spec_helper.rb') { "spec" }
8
+
9
+ # Rails example
10
+ watch(%r{^app/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" }
11
+ watch(%r{^app/(.*)(\.erb|\.haml|\.slim)$}) { |m| "spec/#{m[1]}#{m[2]}_spec.rb" }
12
+ watch(%r{^app/controllers/(.+)_(controller)\.rb$}) { |m| ["spec/routing/#{m[1]}_routing_spec.rb", "spec/#{m[2]}s/#{m[1]}_#{m[2]}_spec.rb", "spec/acceptance/#{m[1]}_spec.rb"] }
13
+ watch(%r{^spec/support/(.+)\.rb$}) { "spec" }
14
+ watch('config/routes.rb') { "spec/routing" }
15
+ watch('app/controllers/application_controller.rb') { "spec/controllers" }
16
+
17
+ # Capybara features specs
18
+ watch(%r{^app/views/(.+)/.*\.(erb|haml|slim)$}) { |m| "spec/features/#{m[1]}_spec.rb" }
19
+
20
+ # Turnip features and steps
21
+ watch(%r{^spec/acceptance/(.+)\.feature$})
22
+ watch(%r{^spec/acceptance/steps/(.+)_steps\.rb$}) { |m| Dir[File.join("**/#{m[1]}.feature")][0] || 'spec/acceptance' }
23
+ end
24
+
25
+ notification :growl