ns-yapi 0.1.1 → 0.1.2
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.
- data/Gemfile.lock +1 -1
- data/lib/ns_client.rb +1 -2
- data/ns.gemspec +1 -1
- data/rakefile.rb +1 -0
- metadata +7 -1
data/Gemfile.lock
CHANGED
data/lib/ns_client.rb
CHANGED
|
@@ -21,14 +21,13 @@ module NSYapi
|
|
|
21
21
|
attr_accessor :username, :password
|
|
22
22
|
end
|
|
23
23
|
|
|
24
|
-
# Configures Plugin.
|
|
25
24
|
def self.configure(configuration = NSYapi::Configuration.new)
|
|
26
25
|
yield configuration if block_given?
|
|
27
26
|
@@configuration = configuration
|
|
28
27
|
end
|
|
29
28
|
|
|
30
29
|
def self.configuration # :nodoc:
|
|
31
|
-
@@configuration ||=
|
|
30
|
+
@@configuration ||= NSYapi::Configuration.new
|
|
32
31
|
end
|
|
33
32
|
|
|
34
33
|
def self.client
|
data/ns.gemspec
CHANGED
|
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
|
4
4
|
|
|
5
5
|
Gem::Specification.new do |gem|
|
|
6
6
|
gem.name = "ns-yapi"
|
|
7
|
-
gem.version = '0.1.
|
|
7
|
+
gem.version = '0.1.2'
|
|
8
8
|
gem.authors = ["Stefan Hendriks"]
|
|
9
9
|
gem.email = ["stefanhen83@gmail.com"]
|
|
10
10
|
gem.description = %q{Yet Another (Ruby) NS API}
|
data/rakefile.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ns-yapi
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.2
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -95,12 +95,18 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
95
95
|
- - ! '>='
|
|
96
96
|
- !ruby/object:Gem::Version
|
|
97
97
|
version: '0'
|
|
98
|
+
segments:
|
|
99
|
+
- 0
|
|
100
|
+
hash: -1647499976978376550
|
|
98
101
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
99
102
|
none: false
|
|
100
103
|
requirements:
|
|
101
104
|
- - ! '>='
|
|
102
105
|
- !ruby/object:Gem::Version
|
|
103
106
|
version: '0'
|
|
107
|
+
segments:
|
|
108
|
+
- 0
|
|
109
|
+
hash: -1647499976978376550
|
|
104
110
|
requirements: []
|
|
105
111
|
rubyforge_project:
|
|
106
112
|
rubygems_version: 1.8.24
|