xftp 0.4.2 → 0.4.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2f601423be046224ed203e2acb44cb993114ab3e
4
- data.tar.gz: d1bccf7e9c9ceada5f2db9d2f297f68b307f5efe
3
+ metadata.gz: e768d83254ecadbe4e9b2daaf7919f672d13599b
4
+ data.tar.gz: 6d720a26f9b5aabd4ff13e16a7b881593a4533b8
5
5
  SHA512:
6
- metadata.gz: 0583a79eb3b60152916e2e8fbc7a86c95a4cf0b1cb6979e7d627ebb70e48857fab24adc5c3594761475205135d68898832eefcccec0bb83600a913e1712b9e55
7
- data.tar.gz: 83b276150721e726e55377973b151814459a5f84a990836f5d6ea319318c99680da12fd7bbcb8bac5875abd96c9c808f2b2918a07ca99448050bd1037bc7d6ef
6
+ metadata.gz: 88cab8b46b807cf6471935e2f34b81204427e6d63c769829d38fd0476aa1a446d5e8061e3472d4a29c9389ebc59fcdb4bb2809099a243f6dd9580b5fc898388d
7
+ data.tar.gz: 6262b14266142474e49c3405747cf3b3588fff9ad8716511c99fb2d22103c41f3151a6a884b66c913bcea85c8340ab896c5641c0cc17cf956c057c15859640f3
@@ -6,8 +6,6 @@ require 'xftp/version'
6
6
  require 'xftp/errors'
7
7
  require 'xftp/client'
8
8
 
9
- require_relative 'initializers/i18n'
10
-
11
9
  # Interface unification for FTP/SFTP protocols
12
10
  module XFTP
13
11
  # Config accessor
@@ -3,7 +3,7 @@ module XFTP
3
3
  module VERSION
4
4
  MAJOR = 0
5
5
  MINOR = 4
6
- PATCH = 2
6
+ PATCH = 3
7
7
  SUFFIX = ''
8
8
 
9
9
  NUMBER = [MAJOR, MINOR, PATCH].compact.join('.')
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: xftp
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.2
4
+ version: 0.4.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Vasiliy Yorkin
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2015-04-29 00:00:00.000000000 Z
11
+ date: 2015-06-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -112,26 +112,6 @@ dependencies:
112
112
  - - ">="
113
113
  - !ruby/object:Gem::Version
114
114
  version: 0.9.2
115
- - !ruby/object:Gem::Dependency
116
- name: i18n
117
- requirement: !ruby/object:Gem::Requirement
118
- requirements:
119
- - - "~>"
120
- - !ruby/object:Gem::Version
121
- version: '0.6'
122
- - - ">="
123
- - !ruby/object:Gem::Version
124
- version: 0.6.0
125
- type: :runtime
126
- prerelease: false
127
- version_requirements: !ruby/object:Gem::Requirement
128
- requirements:
129
- - - "~>"
130
- - !ruby/object:Gem::Version
131
- version: '0.6'
132
- - - ">="
133
- - !ruby/object:Gem::Version
134
- version: 0.6.0
135
115
  - !ruby/object:Gem::Dependency
136
116
  name: net-sftp
137
117
  requirement: !ruby/object:Gem::Requirement
@@ -203,7 +183,6 @@ files:
203
183
  - LICENSE.txt
204
184
  - README.md
205
185
  - lib/configuration.rb
206
- - lib/initializers/i18n.rb
207
186
  - lib/xftp.rb
208
187
  - lib/xftp/client.rb
209
188
  - lib/xftp/dsl/block_evaluator.rb
@@ -239,6 +218,6 @@ rubyforge_project:
239
218
  rubygems_version: 2.2.2
240
219
  signing_key:
241
220
  specification_version: 4
242
- summary: xftp-0.4.2
221
+ summary: xftp-0.4.3
243
222
  test_files: []
244
223
  has_rdoc:
@@ -1,10 +0,0 @@
1
- require 'i18n'
2
-
3
- locale_paths = File.join(File.dirname(__FILE__), '..', 'xftp', 'locale', '*.yml')
4
-
5
- Dir[locale_paths].each { |path| I18n.load_path << path }
6
- I18n.backend.load_translations unless defined?(Rails)
7
-
8
- I18n.config.enforce_available_locales = true
9
- I18n.default_locale = :en
10
- I18n.available_locales = [:en, :ru]