resource_accessor 1.0.0 → 1.0.1
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 +15 -0
- data/CHANGES +4 -0
- data/lib/resource_accessor/version.rb +2 -2
- data/lib/resource_accessor.rb +1 -2
- data/resource_accessor.gemspec +22 -0
- metadata +6 -11
checksums.yaml
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
---
|
|
2
|
+
!binary "U0hBMQ==":
|
|
3
|
+
metadata.gz: !binary |-
|
|
4
|
+
NjBlYjg5ZDZiZTU1ZjRhYjBjNDJiODQyYWNlYzU3MGUyNGU2NWQ4Zg==
|
|
5
|
+
data.tar.gz: !binary |-
|
|
6
|
+
OTlmNmYxN2IyMDk0YzY3NDFlNDJlNDg3YWVkZGRmMzllYjljMDE3YQ==
|
|
7
|
+
!binary "U0hBNTEy":
|
|
8
|
+
metadata.gz: !binary |-
|
|
9
|
+
NTMwYmNlMGNkYzg1NWU5ZTFiZTk0ZGViZGYwY2U3ZjU5OTAzNTk0MDYxOWMx
|
|
10
|
+
MWFlYjgyZTA3MmM4OWRiZTcyYmIwZTI1OWUwYjliZDZhNTc3YzE2NTZmNTQ4
|
|
11
|
+
Y2IzNWFlNjUzNGMzZDdkMmM5YzM4NmI2MDc2MDU4N2NkZTZmOTk=
|
|
12
|
+
data.tar.gz: !binary |-
|
|
13
|
+
Y2ExNDE5NGI3YWQ4NDkxMGJmZDBiZTVlMTFmY2M1ODk1NDk3Y2VhMDMzMjZi
|
|
14
|
+
MGUwOGJkMzBjMzAxNzNjOTA2ZTQ0YzliZjM4MjNiMGMyMzBkOGRiODEyZGUx
|
|
15
|
+
MTFiNjEwMzU5ZTliZjBjZjcyZmViYTQyMWQ0NzI0NmQyOWI2Yjk=
|
data/CHANGES
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
VERSION = "1.0.
|
|
1
|
+
class ResourceAccessor
|
|
2
|
+
VERSION = "1.0.1"
|
|
3
3
|
end
|
data/lib/resource_accessor.rb
CHANGED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
|
2
|
+
|
|
3
|
+
require File.expand_path(File.dirname(__FILE__) + '/lib/resource_accessor/version')
|
|
4
|
+
|
|
5
|
+
Gem::Specification.new do |spec|
|
|
6
|
+
spec.name = "resource_accessor"
|
|
7
|
+
spec.summary = %q{This library is used to simplify access to protected or unprotected http resource}
|
|
8
|
+
spec.description = %q{This library is used to simplify access to protected or unprotected http resource}
|
|
9
|
+
spec.email = "alexander.shvets@gmail.com"
|
|
10
|
+
spec.authors = ["Alexander Shvets"]
|
|
11
|
+
spec.homepage = "http://github.com/shvets/resource_accessor"
|
|
12
|
+
|
|
13
|
+
spec.files = `git ls-files`.split($\)
|
|
14
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
|
15
|
+
spec.require_paths = ["lib"]
|
|
16
|
+
spec.version = ResourceAccessor::VERSION
|
|
17
|
+
|
|
18
|
+
spec.add_development_dependency "gemspec_deps_gen", [">= 0"]
|
|
19
|
+
spec.add_development_dependency "gemcutter", [">= 0"]
|
|
20
|
+
|
|
21
|
+
end
|
|
22
|
+
|
metadata
CHANGED
|
@@ -1,20 +1,18 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: resource_accessor
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
5
|
-
prerelease:
|
|
4
|
+
version: 1.0.1
|
|
6
5
|
platform: ruby
|
|
7
6
|
authors:
|
|
8
7
|
- Alexander Shvets
|
|
9
8
|
autorequire:
|
|
10
9
|
bindir: bin
|
|
11
10
|
cert_chain: []
|
|
12
|
-
date: 2013-
|
|
11
|
+
date: 2013-03-14 00:00:00.000000000 Z
|
|
13
12
|
dependencies:
|
|
14
13
|
- !ruby/object:Gem::Dependency
|
|
15
14
|
name: gemspec_deps_gen
|
|
16
15
|
requirement: !ruby/object:Gem::Requirement
|
|
17
|
-
none: false
|
|
18
16
|
requirements:
|
|
19
17
|
- - ! '>='
|
|
20
18
|
- !ruby/object:Gem::Version
|
|
@@ -22,7 +20,6 @@ dependencies:
|
|
|
22
20
|
type: :development
|
|
23
21
|
prerelease: false
|
|
24
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
25
|
-
none: false
|
|
26
23
|
requirements:
|
|
27
24
|
- - ! '>='
|
|
28
25
|
- !ruby/object:Gem::Version
|
|
@@ -30,7 +27,6 @@ dependencies:
|
|
|
30
27
|
- !ruby/object:Gem::Dependency
|
|
31
28
|
name: gemcutter
|
|
32
29
|
requirement: !ruby/object:Gem::Requirement
|
|
33
|
-
none: false
|
|
34
30
|
requirements:
|
|
35
31
|
- - ! '>='
|
|
36
32
|
- !ruby/object:Gem::Version
|
|
@@ -38,7 +34,6 @@ dependencies:
|
|
|
38
34
|
type: :development
|
|
39
35
|
prerelease: false
|
|
40
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
41
|
-
none: false
|
|
42
37
|
requirements:
|
|
43
38
|
- - ! '>='
|
|
44
39
|
- !ruby/object:Gem::Version
|
|
@@ -63,32 +58,32 @@ files:
|
|
|
63
58
|
- lib/resource_accessor.rb
|
|
64
59
|
- lib/resource_accessor/resource_accessor.rb
|
|
65
60
|
- lib/resource_accessor/version.rb
|
|
61
|
+
- resource_accessor.gemspec
|
|
66
62
|
- resource_accessor.gemspec.erb
|
|
67
63
|
- spec/resource_accessor_spec.rb
|
|
68
64
|
- spec/spec_helper.rb
|
|
69
65
|
homepage: http://github.com/shvets/resource_accessor
|
|
70
66
|
licenses: []
|
|
67
|
+
metadata: {}
|
|
71
68
|
post_install_message:
|
|
72
69
|
rdoc_options: []
|
|
73
70
|
require_paths:
|
|
74
71
|
- lib
|
|
75
72
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
76
|
-
none: false
|
|
77
73
|
requirements:
|
|
78
74
|
- - ! '>='
|
|
79
75
|
- !ruby/object:Gem::Version
|
|
80
76
|
version: '0'
|
|
81
77
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
82
|
-
none: false
|
|
83
78
|
requirements:
|
|
84
79
|
- - ! '>='
|
|
85
80
|
- !ruby/object:Gem::Version
|
|
86
81
|
version: '0'
|
|
87
82
|
requirements: []
|
|
88
83
|
rubyforge_project:
|
|
89
|
-
rubygems_version:
|
|
84
|
+
rubygems_version: 2.0.3
|
|
90
85
|
signing_key:
|
|
91
|
-
specification_version:
|
|
86
|
+
specification_version: 4
|
|
92
87
|
summary: This library is used to simplify access to protected or unprotected http
|
|
93
88
|
resource
|
|
94
89
|
test_files:
|