asana 0.10.0 → 0.10.1

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: a2da63e8aadca7da78829e16acbf420934d8c39c63eaf2b761c931a84ba84c75
4
- data.tar.gz: 5abf90728ebbd012b700bce472dd29e00307218062c6faa8865c151949e7b3db
3
+ metadata.gz: cde00e812ebbdfab550fdd6ddf5ab12f052efed7a7e1eaf4a385ee4e3b15f02c
4
+ data.tar.gz: 52d51180ca02c8929a34a443bbfef1c4f31080661bfc343709c79ae60e33808e
5
5
  SHA512:
6
- metadata.gz: 2bddb470b53a632fe92412e174c958abfcafa75565b771991864567d3627bdde4560c9082fe46793a3926e32c75a3d913306e2979733a730f2018b424a797298
7
- data.tar.gz: 6db94c479e44de7fa283a76fd41db46db547bf30d743fbc1b842a715226fa544bea0fef7498c396b2fbbbeefaea06d17ec55433d511c507ce0bfb989413e63cb
6
+ metadata.gz: 91423672c8d88b895bd5b2334604da8dfd2e8a4328fd7dc949816dbcbfedb945dd22ac620a17cfd551d6adadeff499e5e0b69c98025a7a84e13117f8839745af
7
+ data.tar.gz: f456b28ffe72bd87ec505615219ec83d04a7ca6256ccce59a74e5e34cc0fc588bb14482ee7247b504354deed763c08000a4a0872a7cb805c18f47f2a9d9e393e
@@ -1,9 +1,9 @@
1
1
  language: ruby
2
2
  rvm:
3
- - 2.2.9
4
3
  - 2.3.6
5
4
  - 2.4.3
6
5
  - 2.5.0
6
+ - 2.7.1
7
7
  deploy:
8
8
  provider: rubygems
9
9
  api_key:
data/Appraisals CHANGED
@@ -1,37 +1,4 @@
1
1
 
2
- appraise "faraday-0.9.0" do
3
- gem "faraday", "0.9.0"
2
+ appraise "faraday-1.0.0" do
3
+ gem "faraday", "1.0.0"
4
4
  end
5
-
6
- appraise "faraday-0.9.1" do
7
- gem "faraday", "0.9.1"
8
- end
9
-
10
- appraise "faraday-0.9.2" do
11
- gem "faraday", "0.9.2"
12
- end
13
-
14
- appraise "faraday-0.10.0" do
15
- gem "faraday", "0.10.0"
16
- end
17
- appraise "faraday-0.10.1" do
18
- gem "faraday", "0.10.1"
19
- end
20
-
21
- appraise "faraday-0.11.0" do
22
- gem "faraday", "0.11.0"
23
- end
24
-
25
- # Oauth2 does not yet support 0.12
26
-
27
- # appraise "faraday-0.12.0" do
28
- # gem "faraday", "0.12.0"
29
- # end
30
- #
31
- # appraise "faraday-0.12.0.1" do
32
- # gem "faraday", "0.12.0.1"
33
- # end
34
- #
35
- # appraise "faraday-0.12.1" do
36
- # gem "faraday", "0.12.1"
37
- # end
data/README.md CHANGED
@@ -11,53 +11,6 @@ Supported rubies:
11
11
 
12
12
  * MRI 2.0.0 up to 2.2.x stable
13
13
 
14
- ## Required: Security procedures for outdated OpenSSL versions
15
-
16
- Older versions of OpenSSL can cause a problem when using `ruby-asana` In particular, at the time of this writing, at least **MacOS X 10.11 and below** ship with a very old version of OpenSSL:
17
-
18
- $ openssl version
19
- OpenSSL 0.9.8zh 14 Jan 2016
20
-
21
- OpenSSL 0.9.8 was first released in 2005, and therefore only supports TLS (Transport Layer Security) version 1.0. Asana has deprecated and stopped accepting requests for clients which do not suport [TLS 1.0 and above](https://asa.na/tls), which unfortunately includes any software linked against this version of the library - this includes both the MacOS X provided Ruby interpreter and any homebrew installed Ruby that is not specifically configured to link against a newer version.
22
-
23
- To see if your Ruby version is affected, run
24
-
25
- $ ruby -ropenssl -e 'puts OpenSSL::OPENSSL_VERSION'
26
-
27
- If the version printed at the command line is older than `1.0.1`, when, in 2012, OpenSSL first supported TLS 1.1 and 1.2, you will not be able to use `ruby-asana` to connect to Asana. Specifically, you will recieve `400 Bad Request` responses with an error message in the response body about the lack of support for TLS 1.1 and above.
28
-
29
- Asana highly recommends using a Ruby installation manager, either RVM or `rbenv`. Instructions on how to install an up-to-date `ruby` for each of these are below.
30
-
31
- ### Solution when using RVM
32
-
33
- RVM makes it easy to install both an updated OpenSSL and a Ruby interpreter that links to it. If you are using MacPorts or Homebrew, you're probably fine out of the box; RVM favors package management using either one of these to satisfy dependencies, and so can keep your ruby up to date automatically. If you are not using these, consider using them, as they're very simple to install and use.
34
-
35
- If you don't use your package manager, you can use RVM's [package manager](https://rvm.io/packages) to install from source.
36
-
37
- If you want to build OpenSSL from source yourself, you have to specify how to link to this OpenSSL installation:
38
-
39
- $ rvm install ruby-{version} --with-openssl-dir={ssl_dir}
40
- # Specify your openssl path prefix, wherever openssl dirs
41
- # "bin", "include", and "lib" are installed; usually
42
- # "/usr" for system installs, or $PREFIX for configure/make locally.
43
- $ ruby -ropenssl -e 'puts OpenSSL::OPENSSL_VERSION' # Verify inside Ruby
44
- OpenSSL 1.0.2h 3 May 2016
45
-
46
- If you see the version of OpenSSL greater than OpenSSL 1.0.1, then you're all set to start using `ruby-asana`
47
-
48
- ### Solution when using rbenv
49
-
50
- Similar to RVM, rbenv compiles rubies with knowledge of MacPorts and Homebrew libraries. When a newer version of OpenSSL is installed via the method above, all rubies built (after that time of course) will link to the newer version of OpenSSL.
51
-
52
- If you don't use a package manager, as above, you can build by explicitly supplying the directory in which to find OpenSSL:
53
-
54
- $ RUBY_CONFIGURE_OPTS=--with-openssl-dir=/opt/local rbenv install ruby-{version}
55
- # Specify your openssl path prefix, wherever openssl dirs
56
- # "bin", "include", and "lib" are installed; usually
57
- # "/usr" for system installs, or $PREFIX for configure/make locally.
58
- $ ruby -ropenssl -e 'puts OpenSSL::OPENSSL_VERSION' # Verify inside Ruby
59
- OpenSSL 1.0.2h 3 May 2016
60
-
61
14
  ## Gem Installation
62
15
  Add this line to your application's Gemfile:
63
16
 
@@ -402,8 +355,7 @@ If you wish to make changes on the code generation script:
402
355
  spec/templates/unicorn_spec.rb`
403
356
 
404
357
  Once you're sure your code works, submit a pull request and ask the maintainer
405
- to make a release, as they'll need to run a release script from the
406
- [asana-api-meta][meta] repository.
358
+ to make a release, as they'll need to run a release script.
407
359
 
408
360
  ## Contributing
409
361
 
@@ -22,8 +22,8 @@ Gem::Specification.new do |spec|
22
22
  spec.required_ruby_version = '~> 2.0'
23
23
 
24
24
  spec.add_dependency "oauth2", "~> 1.4"
25
- spec.add_dependency "faraday", "~> 0.9"
26
- spec.add_dependency "faraday_middleware", "~> 0.9"
25
+ spec.add_dependency "faraday", "~> 1.0"
26
+ spec.add_dependency "faraday_middleware", "~> 1.0"
27
27
  spec.add_dependency "faraday_middleware-multi_json", "~> 0.0"
28
28
 
29
29
  spec.add_development_dependency "rake", "~> 10.0"
@@ -27,7 +27,7 @@ GEM
27
27
  multi_json (~> 1.3)
28
28
  multi_xml (~> 0.5)
29
29
  rack (>= 1.2, < 3)
30
- rack (2.0.7)
30
+ rack (2.0.8)
31
31
 
32
32
  PLATFORMS
33
33
  ruby
@@ -1,5 +1,5 @@
1
1
  #:nodoc:
2
2
  module Asana
3
3
  # Public: Version of the gem.
4
- VERSION = '0.10.0'
4
+ VERSION = '0.10.1'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: asana
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.0
4
+ version: 0.10.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Txus
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-02-14 00:00:00.000000000 Z
11
+ date: 2020-04-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: oauth2
@@ -30,28 +30,28 @@ dependencies:
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: '0.9'
33
+ version: '1.0'
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: '0.9'
40
+ version: '1.0'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: faraday_middleware
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
45
  - - "~>"
46
46
  - !ruby/object:Gem::Version
47
- version: '0.9'
47
+ version: '1.0'
48
48
  type: :runtime
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
- version: '0.9'
54
+ version: '1.0'
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: faraday_middleware-multi_json
57
57
  requirement: !ruby/object:Gem::Requirement