saorin 0.4.0 → 0.4.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 +4 -4
- data/lib/saorin/test.rb +1 -1
- data/lib/saorin/version.rb +1 -1
- data/saorin.gemspec +19 -18
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 58da2e066be3253ec651b8d669cd2a3a11e43d7a
|
|
4
|
+
data.tar.gz: 7537767a94c0a528e0a3566e4b87d917200081a0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 97f9611f075af1fbd356fc6f4501d445c38aaa1e4ae1ea33e0ae12b72025c0caac1e37ca33e007136e21719c6c0c37522af4eb1f19fdc52438e3a46057224a4f
|
|
7
|
+
data.tar.gz: f01373595fb38d523e5a6569df38dce6d2880e726e9ce1bd1d33b9843d5086e2d7bd4d778040e734aa85433ed6823610f18dd89f3799e4f3e0267dc1b1731f6d
|
data/lib/saorin/test.rb
CHANGED
data/lib/saorin/version.rb
CHANGED
data/saorin.gemspec
CHANGED
|
@@ -1,25 +1,26 @@
|
|
|
1
|
-
#
|
|
1
|
+
# coding: utf-8
|
|
2
2
|
lib = File.expand_path('../lib', __FILE__)
|
|
3
3
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
4
|
require 'saorin/version'
|
|
5
5
|
|
|
6
|
-
Gem::Specification.new do |
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
6
|
+
Gem::Specification.new do |spec|
|
|
7
|
+
spec.name = 'saorin'
|
|
8
|
+
spec.version = Saorin::VERSION
|
|
9
|
+
spec.authors = ['mashiro']
|
|
10
|
+
spec.email = ['mail@mashiro.org']
|
|
11
|
+
spec.description = %q{JSON-RPC 2.0 implementation}
|
|
12
|
+
spec.summary = %q{JSON-RPC 2.0 server and client implementation for any protocols}
|
|
13
|
+
spec.homepage = 'https://github.com/mashiro/saorin'
|
|
14
|
+
spec.license = 'MIT'
|
|
14
15
|
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
16
|
+
spec.files = `git ls-files`.split($/)
|
|
17
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
|
18
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
|
19
|
+
spec.require_paths = ['lib']
|
|
19
20
|
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
21
|
+
spec.add_dependency 'multi_json'
|
|
22
|
+
spec.add_development_dependency 'rake'
|
|
23
|
+
spec.add_development_dependency 'rspec'
|
|
24
|
+
spec.add_development_dependency 'rack'
|
|
25
|
+
spec.add_development_dependency 'faraday'
|
|
25
26
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: saorin
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.4.
|
|
4
|
+
version: 0.4.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- mashiro
|
|
@@ -115,8 +115,9 @@ files:
|
|
|
115
115
|
- spec/spec_helper.rb
|
|
116
116
|
- spec/support/response.rb
|
|
117
117
|
- spec/support/utils.rb
|
|
118
|
-
homepage:
|
|
119
|
-
licenses:
|
|
118
|
+
homepage: https://github.com/mashiro/saorin
|
|
119
|
+
licenses:
|
|
120
|
+
- MIT
|
|
120
121
|
metadata: {}
|
|
121
122
|
post_install_message:
|
|
122
123
|
rdoc_options: []
|