phearb 1.1.0 → 1.1.1

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: 9e84cc1692610bdae82f05d919ce92d819fe329c
4
- data.tar.gz: 5c2dd78d4b1c9d4f2235e4b4e79337d9583f6bee
3
+ metadata.gz: 138e7b210c9e312f6d8817ec4e25508467ac40dc
4
+ data.tar.gz: 9623993163a3450d2f34943f67953a9215c7441a
5
5
  SHA512:
6
- metadata.gz: c1ea2f12f503cf0670754276979c3e2f84fcc0f2784ebf00381ba985ebadac2664d3376616423a5af1a3b1c57067e1004a39a73c4d20d9ff1614a506491e3236
7
- data.tar.gz: 4e5df816ff94d67f8251b5b9de2d52df5abf2dbbfaf3c4275348345358fc1a6afea3b789940e3e35df2d7a05636bb80565a06ee43fc9c16b606cb1c4e1a45d00
6
+ metadata.gz: 09a9089b29461561e2d9273b09bd47c5a3a0d75d30c9a1a40a260a4e0b31d1c32fab59584711c2bd9a6c599e07d37f038cef1429e3677c80e063b7407920d5b2
7
+ data.tar.gz: 9d40a8faaf34fb6211154403725185f4dc516a7bda4d88d3101c0a966a49fbd9c9edc78fc0bda276ca9fe170536aa57518e46152c4c1f0407df5947404fe18e5
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Phearb
2
2
 
3
- [![Gem Version](https://badge.fury.io/rb/phearb.svg)](https://badge.fury.io/rb/phearb)
3
+ [![Gem Version](https://badge.fury.io/rb/phearb.svg)](https://badge.fury.io/rb/phearb)
4
4
  [![Build Status](https://travis-ci.org/joaquinrulin/phearb.svg?branch=master)](https://travis-ci.org/joaquinrulin/phearb)
5
5
 
6
6
  Phearb is a library for handling connections to [**phear**](https://github.com/Tomtomgo/phearjs) servers. It allows ruby apps to easy fetch sites source code using phear.
@@ -29,7 +29,7 @@ Put these lines in the configuration section of you app. In rails you should pro
29
29
  Phearb.configure do |config|
30
30
  config.host = <host> # Defaults to 'localhost'
31
31
  config.port = <port> # Defaults to 8100
32
- config.timeout <timeout_in_seconds> # Defaults to 5
32
+ config.timeout <timeout_in_seconds> # Defaults to 60
33
33
  end
34
34
  ```
35
35
 
@@ -6,7 +6,7 @@ module Phearb
6
6
 
7
7
  DEFAULT_HOST = 'localhost'
8
8
  DEFAULT_PORT = 8100
9
- DEFAULT_TIMEOUT = 5
9
+ DEFAULT_TIMEOUT = 60
10
10
 
11
11
  def initialize
12
12
  @host = DEFAULT_HOST
@@ -1,3 +1,3 @@
1
1
  module Phearb
2
- VERSION = "1.1.0"
2
+ VERSION = "1.1.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: phearb
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Joaquín Moreira