async-rest 0.12.1 → 0.12.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7a4bf59de34f8a513da719adecb09b3f82d8d5dfe29ef4e3c3b992368abcf03b
4
- data.tar.gz: 6a579ab8c70d1d0619cce37b1192b258ed03ff1adc0db36a334199b3da485fb4
3
+ metadata.gz: 5f56a13cf12e8adad0cd2dd491aadab9bbfc129c5a06fe4d64e53c7753bdf25e
4
+ data.tar.gz: f8541763a4eae2266c20ac0f721c99f518a67c4e3711b726a97cb46c4128fc07
5
5
  SHA512:
6
- metadata.gz: f0efb171429e1267c867c54ce3a3c1534f359f6e3e11d9a22752e1566da5af595369825f729d005a670867fe5d9de869beea5b31d701462a0429886e06226c43
7
- data.tar.gz: 3c4eb83006339c58a15432a87d7ddd9d9d0c6b1f638c4599dd9aa02e0a7e9660768f83f55e46723673e2f6e7c9eca68fff94c81b65228a2ab03548d5f3d82dd1
6
+ metadata.gz: ce9f153981210054fe581d7dc64b06e699a3673aeccdb78a6cd6ed8edeb32aee754828b7736310072c0ada4eb03e4c35c2b1bf64ead4bde84480dc373f1fd27e
7
+ data.tar.gz: 3a9c2a90dc0e9f9e88523b2f91107c6cf33110f7cd250268eda088e1986f3e0331f24dcef6c27a219f6a8e57fd9b91840ffef176b22d6943ad4a8717baaef78c
@@ -7,6 +7,7 @@ matrix:
7
7
  - rvm: 2.4
8
8
  - rvm: 2.5
9
9
  - rvm: 2.6
10
+ - rvm: 2.7
10
11
  - rvm: 2.6
11
12
  env: COVERAGE=PartialSummary,Coveralls
12
13
  - rvm: jruby-head
data/Gemfile CHANGED
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  source 'https://rubygems.org'
2
4
 
3
5
  # Specify your gem's dependencies in async-io.gemspec
data/README.md CHANGED
@@ -7,7 +7,7 @@ Roy Thomas Fielding's thesis [Architectural Styles and the Design of Network-bas
7
7
 
8
8
  This gem models these abstractions as closely and practically as possible and serves as a basis for building asynchronous web clients.
9
9
 
10
- [![Build Status](https://secure.travis-ci.com/socketry/async-rest.svg)](http://travis-ci.com/socketry/async-rest)
10
+ [![Build Status](https://travis-ci.com/socketry/async-rest.svg?branch=master)](https://travis-ci.com/socketry/async-rest)
11
11
  [![Code Climate](https://codeclimate.com/github/socketry/async-rest.svg)](https://codeclimate.com/github/socketry/async-rest)
12
12
  [![Coverage Status](https://coveralls.io/repos/socketry/async-rest/badge.svg)](https://coveralls.io/r/socketry/async-rest)
13
13
 
data/Rakefile CHANGED
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require "bundler/gem_tasks"
2
4
  require "rspec/core/rake_task"
3
5
 
@@ -4,6 +4,7 @@ require_relative 'lib/async/rest/version'
4
4
  Gem::Specification.new do |spec|
5
5
  spec.name = "async-rest"
6
6
  spec.version = Async::REST::VERSION
7
+ spec.licenses = ["MIT"]
7
8
  spec.authors = ["Samuel Williams"]
8
9
  spec.email = ["samuel.williams@oriontransfer.co.nz"]
9
10
 
@@ -1,4 +1,5 @@
1
1
  #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
2
3
 
3
4
  require 'async'
4
5
  require 'async/rest'
@@ -1,4 +1,5 @@
1
1
  #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
2
3
 
3
4
  require 'pry'
4
5
  require 'set'
@@ -1,4 +1,5 @@
1
1
  #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
2
3
 
3
4
  require_relative '../../lib/async/rest'
4
5
  require_relative '../../lib/async/rest/wrapper/url_encoded'
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # Copyright, 2018, by Samuel G. D. Williams. <http://www.codeotaku.com>
2
4
  #
3
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # Copyright, 2018, by Samuel G. D. Williams. <http://www.codeotaku.com>
2
4
  #
3
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # Copyright, 2018, by Samuel G. D. Williams. <http://www.codeotaku.com>
2
4
  #
3
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # Copyright, 2018, by Samuel G. D. Williams. <http://www.codeotaku.com>
2
4
  #
3
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # Copyright, 2018, by Samuel G. D. Williams. <http://www.codeotaku.com>
2
4
  #
3
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -20,6 +22,6 @@
20
22
 
21
23
  module Async
22
24
  module REST
23
- VERSION = "0.12.1"
25
+ VERSION = "0.12.2"
24
26
  end
25
27
  end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # Copyright, 2018, by Samuel G. D. Williams. <http://www.codeotaku.com>
2
4
  #
3
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # Copyright, 2019, by Samuel G. D. Williams. <http://www.codeotaku.com>
2
4
  #
3
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # Copyright, 2018, by Samuel G. D. Williams. <http://www.codeotaku.com>
2
4
  #
3
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # Copyright, 2018, by Samuel G. D. Williams. <http://www.codeotaku.com>
2
4
  #
3
5
  # Permission is hereby granted, free of charge, to any person obtaining a copy
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: async-rest
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.12.1
4
+ version: 0.12.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Samuel Williams
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-12-09 00:00:00.000000000 Z
11
+ date: 2020-02-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: async-http
@@ -136,7 +136,8 @@ files:
136
136
  - lib/async/rest/wrapper/json.rb
137
137
  - lib/async/rest/wrapper/url_encoded.rb
138
138
  homepage: https://github.com/socketry/async-rest
139
- licenses: []
139
+ licenses:
140
+ - MIT
140
141
  metadata: {}
141
142
  post_install_message:
142
143
  rdoc_options: []