vatsim 0.0.7 → 0.0.8
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 +7 -0
- data/.gitignore +5 -0
- data/.travis.yml +1 -13
- data/LICENSE +21 -0
- data/lib/vatsim/version.rb +1 -1
- data/spec/spec_helper.rb +1 -1
- metadata +19 -34
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: 7bb4e8a02840bc0d929bc7e123a5fb3949f3e94e
|
|
4
|
+
data.tar.gz: bba0b60180fe6acd26c36670f8248321007a9093
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: e7450911ffa45cff441fbdf8f9afcf129915895e8a99d3ac6f5d9ffccbf5ce30294a0aeae2b9027f9228cebccbc86b59c1cc4e7630983a9469a5af520109b638
|
|
7
|
+
data.tar.gz: f3917c0f91d2a7f50a4ed4d1f904053d6b5c13699839f27d2c230eb1b22fd13afb36e4921aa3c76a7d7ff75d5da87d0732a07329bb5ac91eb4c22b031c5c7838
|
data/.gitignore
CHANGED
data/.travis.yml
CHANGED
data/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2018 Trevor Dawe
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
data/lib/vatsim/version.rb
CHANGED
data/spec/spec_helper.rb
CHANGED
|
@@ -9,8 +9,8 @@ require 'vatsim'
|
|
|
9
9
|
require 'webmock/rspec'
|
|
10
10
|
|
|
11
11
|
RSpec.configure do |config|
|
|
12
|
-
config.treat_symbols_as_metadata_keys_with_true_values = true
|
|
13
12
|
config.run_all_when_everything_filtered = true
|
|
14
13
|
config.filter_run :focus
|
|
14
|
+
config.expect_with(:rspec) { |c| c.syntax = :should }
|
|
15
15
|
end
|
|
16
16
|
|
metadata
CHANGED
|
@@ -1,78 +1,69 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: vatsim
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
5
|
-
prerelease:
|
|
4
|
+
version: 0.0.8
|
|
6
5
|
platform: ruby
|
|
7
6
|
authors:
|
|
8
7
|
- Trevor Dawe
|
|
9
8
|
autorequire:
|
|
10
9
|
bindir: bin
|
|
11
10
|
cert_chain: []
|
|
12
|
-
date:
|
|
11
|
+
date: 2018-03-03 00:00:00.000000000 Z
|
|
13
12
|
dependencies:
|
|
14
13
|
- !ruby/object:Gem::Dependency
|
|
15
14
|
name: rake
|
|
16
15
|
requirement: !ruby/object:Gem::Requirement
|
|
17
|
-
none: false
|
|
18
16
|
requirements:
|
|
19
|
-
- -
|
|
17
|
+
- - ">="
|
|
20
18
|
- !ruby/object:Gem::Version
|
|
21
19
|
version: '0'
|
|
22
20
|
type: :development
|
|
23
21
|
prerelease: false
|
|
24
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
25
|
-
none: false
|
|
26
23
|
requirements:
|
|
27
|
-
- -
|
|
24
|
+
- - ">="
|
|
28
25
|
- !ruby/object:Gem::Version
|
|
29
26
|
version: '0'
|
|
30
27
|
- !ruby/object:Gem::Dependency
|
|
31
28
|
name: rspec
|
|
32
29
|
requirement: !ruby/object:Gem::Requirement
|
|
33
|
-
none: false
|
|
34
30
|
requirements:
|
|
35
|
-
- -
|
|
31
|
+
- - ">="
|
|
36
32
|
- !ruby/object:Gem::Version
|
|
37
33
|
version: '0'
|
|
38
34
|
type: :development
|
|
39
35
|
prerelease: false
|
|
40
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
41
|
-
none: false
|
|
42
37
|
requirements:
|
|
43
|
-
- -
|
|
38
|
+
- - ">="
|
|
44
39
|
- !ruby/object:Gem::Version
|
|
45
40
|
version: '0'
|
|
46
41
|
- !ruby/object:Gem::Dependency
|
|
47
42
|
name: webmock
|
|
48
43
|
requirement: !ruby/object:Gem::Requirement
|
|
49
|
-
none: false
|
|
50
44
|
requirements:
|
|
51
|
-
- -
|
|
45
|
+
- - ">="
|
|
52
46
|
- !ruby/object:Gem::Version
|
|
53
47
|
version: '0'
|
|
54
48
|
type: :development
|
|
55
49
|
prerelease: false
|
|
56
50
|
version_requirements: !ruby/object:Gem::Requirement
|
|
57
|
-
none: false
|
|
58
51
|
requirements:
|
|
59
|
-
- -
|
|
52
|
+
- - ">="
|
|
60
53
|
- !ruby/object:Gem::Version
|
|
61
54
|
version: '0'
|
|
62
55
|
- !ruby/object:Gem::Dependency
|
|
63
56
|
name: simplecov
|
|
64
57
|
requirement: !ruby/object:Gem::Requirement
|
|
65
|
-
none: false
|
|
66
58
|
requirements:
|
|
67
|
-
- -
|
|
59
|
+
- - ">="
|
|
68
60
|
- !ruby/object:Gem::Version
|
|
69
61
|
version: '0'
|
|
70
62
|
type: :development
|
|
71
63
|
prerelease: false
|
|
72
64
|
version_requirements: !ruby/object:Gem::Requirement
|
|
73
|
-
none: false
|
|
74
65
|
requirements:
|
|
75
|
-
- -
|
|
66
|
+
- - ">="
|
|
76
67
|
- !ruby/object:Gem::Version
|
|
77
68
|
version: '0'
|
|
78
69
|
description: Ruby library for retrieving online status for Pilots and ATC connections
|
|
@@ -82,10 +73,11 @@ executables: []
|
|
|
82
73
|
extensions: []
|
|
83
74
|
extra_rdoc_files: []
|
|
84
75
|
files:
|
|
85
|
-
- .gitignore
|
|
86
|
-
- .rspec
|
|
87
|
-
- .travis.yml
|
|
76
|
+
- ".gitignore"
|
|
77
|
+
- ".rspec"
|
|
78
|
+
- ".travis.yml"
|
|
88
79
|
- Gemfile
|
|
80
|
+
- LICENSE
|
|
89
81
|
- README.md
|
|
90
82
|
- Rakefile
|
|
91
83
|
- lib/vatsim.rb
|
|
@@ -106,32 +98,25 @@ files:
|
|
|
106
98
|
- vatsim.gemspec
|
|
107
99
|
homepage: https://github.com/tdawe/vatsim
|
|
108
100
|
licenses: []
|
|
101
|
+
metadata: {}
|
|
109
102
|
post_install_message:
|
|
110
103
|
rdoc_options: []
|
|
111
104
|
require_paths:
|
|
112
105
|
- lib
|
|
113
106
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
114
|
-
none: false
|
|
115
107
|
requirements:
|
|
116
|
-
- -
|
|
108
|
+
- - ">="
|
|
117
109
|
- !ruby/object:Gem::Version
|
|
118
110
|
version: '0'
|
|
119
|
-
segments:
|
|
120
|
-
- 0
|
|
121
|
-
hash: -173515344446614869
|
|
122
111
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
123
|
-
none: false
|
|
124
112
|
requirements:
|
|
125
|
-
- -
|
|
113
|
+
- - ">="
|
|
126
114
|
- !ruby/object:Gem::Version
|
|
127
115
|
version: '0'
|
|
128
|
-
segments:
|
|
129
|
-
- 0
|
|
130
|
-
hash: -173515344446614869
|
|
131
116
|
requirements: []
|
|
132
117
|
rubyforge_project:
|
|
133
|
-
rubygems_version:
|
|
118
|
+
rubygems_version: 2.6.14
|
|
134
119
|
signing_key:
|
|
135
|
-
specification_version:
|
|
120
|
+
specification_version: 4
|
|
136
121
|
summary: Vatsim gem
|
|
137
122
|
test_files: []
|