iqair_airvisual 0.0.5 → 0.0.7
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/.gitignore +57 -0
- data/.ruby-version +1 -1
- data/Gemfile.lock +9 -8
- data/iqair_airvisual.gemspec +2 -2
- data/lib/iqair_airvisual/version.rb +1 -1
- metadata +10 -12
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 49f9bc153c0b6e49f98c25d9bce60e6299b3bfefd13c16253cdc62c6597cc908
|
4
|
+
data.tar.gz: ce2b533b858d28d2f82a7149cdbc7f96b2098d73ca94b9258d677cb4eca40131
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3d49b6a72606640c31385b16180233d91b452604e03ca0a2b02b0c4602a160ed14b8a397a76a778682bafdcbacf2c2e59656a4efad89323692d7190253649256
|
7
|
+
data.tar.gz: 177c9765d5a14b5a7eeb8a7c91e6dcfce9d73f8b2eb63fa740edae42069a3f521f2fb814db73ea63e45bfbae5ac48d473dfbca5b621667c33f940c18919dd009
|
data/.gitignore
ADDED
@@ -0,0 +1,57 @@
|
|
1
|
+
*.gem
|
2
|
+
*.rbc
|
3
|
+
/.config
|
4
|
+
/coverage/
|
5
|
+
/InstalledFiles
|
6
|
+
/pkg/
|
7
|
+
/spec/reports/
|
8
|
+
/spec/examples.txt
|
9
|
+
/test/tmp/
|
10
|
+
/test/version_tmp/
|
11
|
+
/tmp/
|
12
|
+
|
13
|
+
# Used by dotenv library to load environment variables.
|
14
|
+
# .env
|
15
|
+
|
16
|
+
# Ignore Byebug command history file.
|
17
|
+
.byebug_history
|
18
|
+
|
19
|
+
## Specific to RubyMotion:
|
20
|
+
.dat*
|
21
|
+
.repl_history
|
22
|
+
build/
|
23
|
+
*.bridgesupport
|
24
|
+
build-iPhoneOS/
|
25
|
+
build-iPhoneSimulator/
|
26
|
+
|
27
|
+
## Specific to RubyMotion (use of CocoaPods):
|
28
|
+
#
|
29
|
+
# We recommend against adding the Pods directory to your .gitignore. However
|
30
|
+
# you should judge for yourself, the pros and cons are mentioned at:
|
31
|
+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
|
32
|
+
#
|
33
|
+
# vendor/Pods/
|
34
|
+
|
35
|
+
## Documentation cache and generated files:
|
36
|
+
/.yardoc/
|
37
|
+
/_yardoc/
|
38
|
+
/doc/
|
39
|
+
/rdoc/
|
40
|
+
|
41
|
+
## Environment normalization:
|
42
|
+
/.bundle/
|
43
|
+
/vendor/bundle
|
44
|
+
/lib/bundler/man/
|
45
|
+
|
46
|
+
# for a library or gem, you might want to ignore these files since the code is
|
47
|
+
# intended to run in multiple environments; otherwise, check them in:
|
48
|
+
# Gemfile.lock
|
49
|
+
# .ruby-version
|
50
|
+
# .ruby-gemset
|
51
|
+
|
52
|
+
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
|
53
|
+
.rvmrc
|
54
|
+
|
55
|
+
# Used by RuboCop. Remote config files pulled in from inherit_from directive.
|
56
|
+
# .rubocop-https?--*
|
57
|
+
.DS_Store
|
data/.ruby-version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.
|
1
|
+
3.4.5
|
data/Gemfile.lock
CHANGED
@@ -1,9 +1,9 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
iqair_airvisual (0.0.
|
5
|
-
active_attr (
|
6
|
-
httparty (
|
4
|
+
iqair_airvisual (0.0.7)
|
5
|
+
active_attr (>= 0.17.0)
|
6
|
+
httparty (>= 0.22.0)
|
7
7
|
|
8
8
|
GEM
|
9
9
|
remote: https://rubygems.org/
|
@@ -21,10 +21,10 @@ GEM
|
|
21
21
|
erubi (~> 1.4)
|
22
22
|
rails-dom-testing (~> 2.0)
|
23
23
|
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
24
|
-
active_attr (0.
|
25
|
-
actionpack (>= 3.0.2, <
|
26
|
-
activemodel (>= 3.0.2, <
|
27
|
-
activesupport (>= 3.0.2, <
|
24
|
+
active_attr (0.17.0)
|
25
|
+
actionpack (>= 3.0.2, < 8.0)
|
26
|
+
activemodel (>= 3.0.2, < 8.0)
|
27
|
+
activesupport (>= 3.0.2, < 8.0)
|
28
28
|
activemodel (7.0.3)
|
29
29
|
activesupport (= 7.0.3)
|
30
30
|
activesupport (7.0.3)
|
@@ -102,6 +102,7 @@ GEM
|
|
102
102
|
PLATFORMS
|
103
103
|
arm64-darwin-20
|
104
104
|
arm64-darwin-23
|
105
|
+
arm64-darwin-24
|
105
106
|
x86_64-linux
|
106
107
|
|
107
108
|
DEPENDENCIES
|
@@ -116,4 +117,4 @@ DEPENDENCIES
|
|
116
117
|
webmock (~> 3.23.1)
|
117
118
|
|
118
119
|
BUNDLED WITH
|
119
|
-
2.
|
120
|
+
2.7.1
|
data/iqair_airvisual.gemspec
CHANGED
@@ -22,8 +22,8 @@ Gem::Specification.new do |spec|
|
|
22
22
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
23
23
|
spec.require_paths = ["lib"]
|
24
24
|
|
25
|
-
spec.add_dependency "httparty", "
|
26
|
-
spec.add_dependency "active_attr", "
|
25
|
+
spec.add_dependency "httparty", ">= 0.22.0"
|
26
|
+
spec.add_dependency "active_attr", ">= 0.17.0"
|
27
27
|
|
28
28
|
# Development dependancies
|
29
29
|
spec.add_development_dependency "rake", "~> 13.2.1"
|
metadata
CHANGED
@@ -1,43 +1,42 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: iqair_airvisual
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- trex22
|
8
|
-
autorequire:
|
9
8
|
bindir: exe
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: httparty
|
15
14
|
requirement: !ruby/object:Gem::Requirement
|
16
15
|
requirements:
|
17
|
-
- - "
|
16
|
+
- - ">="
|
18
17
|
- !ruby/object:Gem::Version
|
19
18
|
version: 0.22.0
|
20
19
|
type: :runtime
|
21
20
|
prerelease: false
|
22
21
|
version_requirements: !ruby/object:Gem::Requirement
|
23
22
|
requirements:
|
24
|
-
- - "
|
23
|
+
- - ">="
|
25
24
|
- !ruby/object:Gem::Version
|
26
25
|
version: 0.22.0
|
27
26
|
- !ruby/object:Gem::Dependency
|
28
27
|
name: active_attr
|
29
28
|
requirement: !ruby/object:Gem::Requirement
|
30
29
|
requirements:
|
31
|
-
- - "
|
30
|
+
- - ">="
|
32
31
|
- !ruby/object:Gem::Version
|
33
|
-
version: 0.
|
32
|
+
version: 0.17.0
|
34
33
|
type: :runtime
|
35
34
|
prerelease: false
|
36
35
|
version_requirements: !ruby/object:Gem::Requirement
|
37
36
|
requirements:
|
38
|
-
- - "
|
37
|
+
- - ">="
|
39
38
|
- !ruby/object:Gem::Version
|
40
|
-
version: 0.
|
39
|
+
version: 0.17.0
|
41
40
|
- !ruby/object:Gem::Dependency
|
42
41
|
name: rake
|
43
42
|
requirement: !ruby/object:Gem::Requirement
|
@@ -158,6 +157,7 @@ executables: []
|
|
158
157
|
extensions: []
|
159
158
|
extra_rdoc_files: []
|
160
159
|
files:
|
160
|
+
- ".gitignore"
|
161
161
|
- ".ruby-version"
|
162
162
|
- CODE_OF_CONDUCT.md
|
163
163
|
- Gemfile
|
@@ -179,7 +179,6 @@ homepage: https://github.com/TRex22/IQAir_AirVisual
|
|
179
179
|
licenses:
|
180
180
|
- MIT
|
181
181
|
metadata: {}
|
182
|
-
post_install_message:
|
183
182
|
rdoc_options: []
|
184
183
|
require_paths:
|
185
184
|
- lib
|
@@ -194,8 +193,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
194
193
|
- !ruby/object:Gem::Version
|
195
194
|
version: '0'
|
196
195
|
requirements: []
|
197
|
-
rubygems_version: 3.
|
198
|
-
signing_key:
|
196
|
+
rubygems_version: 3.6.7
|
199
197
|
specification_version: 4
|
200
198
|
summary: A client for using the IQAir_AirVisual API in Ruby.
|
201
199
|
test_files: []
|