web_translate_it 1.7.1.6 → 1.7.1.7

Sign up to get free protection for your applications and to get access to all the features.
data/history.md CHANGED
@@ -1,7 +1,13 @@
1
+ ## Version 1.7.1.7 / 2011-03-07
2
+
3
+ * New: `wti unknow_command` explains how to get help.
4
+ * Upgrade Sinatra to 1.2.0.
5
+ * New: Increase timeout to 30 seconds to accommodate large projects.
6
+
1
7
  ## Version 1.7.1.6 / 2011-02-25
2
8
 
3
9
  * Fix: Make sure `log` directory exists on `wti server` start up.
4
- * New: Upgrade Sinatra to 1.1.3
10
+ * New: Upgrade Sinatra to 1.1.3.
5
11
 
6
12
  ## Version 1.7.1.5 / 2011-02-10
7
13
 
@@ -111,6 +111,10 @@ module WebTranslateIt
111
111
  def server
112
112
  WebTranslateIt::Server.start(options.host, options.port)
113
113
  end
114
+
115
+ def method_missing(m, *args, &block)
116
+ puts "wti: '#{m}' is not a wti command. See 'wti --help'."
117
+ end
114
118
 
115
119
  def fetch_locales_to_pull
116
120
  if options.locale
@@ -31,7 +31,7 @@ module WebTranslateIt
31
31
  http = Net::HTTP::Proxy(proxy.host, proxy.port, proxy.user, proxy.password).new('webtranslateit.com', 443)
32
32
  http.use_ssl = true
33
33
  http.verify_mode = OpenSSL::SSL::VERIFY_NONE
34
- http.open_timeout = http.read_timeout = 20
34
+ http.open_timeout = http.read_timeout = 30
35
35
  yield http
36
36
  end
37
37
 
data/version.yml CHANGED
@@ -2,4 +2,4 @@
2
2
  :major: 1
3
3
  :minor: 7
4
4
  :tiny: 1
5
- :patch: 6
5
+ :patch: 7
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: web_translate_it
3
3
  version: !ruby/object:Gem::Version
4
- hash: 111
4
+ hash: 109
5
5
  prerelease:
6
6
  segments:
7
7
  - 1
8
8
  - 7
9
9
  - 1
10
- - 6
11
- version: 1.7.1.6
10
+ - 7
11
+ version: 1.7.1.7
12
12
  platform: ruby
13
13
  authors:
14
14
  - "\xC3\x89douard Bri\xC3\xA8re"
@@ -16,7 +16,7 @@ autorequire:
16
16
  bindir: bin
17
17
  cert_chain: []
18
18
 
19
- date: 2011-02-25 00:00:00 +01:00
19
+ date: 2011-03-07 00:00:00 +01:00
20
20
  default_executable: wti
21
21
  dependencies:
22
22
  - !ruby/object:Gem::Dependency
@@ -59,12 +59,12 @@ dependencies:
59
59
  requirements:
60
60
  - - ~>
61
61
  - !ruby/object:Gem::Version
62
- hash: 21
62
+ hash: 31
63
63
  segments:
64
64
  - 1
65
- - 1
66
- - 3
67
- version: 1.1.3
65
+ - 2
66
+ - 0
67
+ version: 1.2.0
68
68
  type: :runtime
69
69
  version_requirements: *id003
70
70
  - !ruby/object:Gem::Dependency