moesif_api 1.2.2 → 1.2.3
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/moesif_api/configuration.rb +1 -1
- data/lib/moesif_api/configuration.rb~ +20 -0
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4b616e2b5afddf221a8e85f0db82fb8677e4c98c26d870693d8a06c4b9000da0
|
|
4
|
+
data.tar.gz: cc5f1bcda2c9899ce6ca083bde348d1d6d3e4ae61055b2c9b5c4f5315ea6dd58
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 66ee8531ecb156b013b2991c2ad8e2f8f131f93571e76ef12e476ef503f25b58a846e6dea4699eed9c21598b410405b09688c372c3e139b9e954031e410b055b
|
|
7
|
+
data.tar.gz: 719a1718f0a7d5bd8f80765219a05753a6cd8246e49e24d8328fb49f97ab969d34f7c38e958d73f973a6954215a1f9211d85488d379b93f0922385ea88ebe6e9
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
|
|
2
|
+
|
|
3
|
+
module MoesifApi
|
|
4
|
+
class Configuration
|
|
5
|
+
# The base Uri for API calls
|
|
6
|
+
@base_uri = 'https://api.moesif.net'
|
|
7
|
+
|
|
8
|
+
# Your Application Id for authentication/authorization
|
|
9
|
+
@application_id = 'SET_ME'
|
|
10
|
+
|
|
11
|
+
@version = '1.2.2'
|
|
12
|
+
|
|
13
|
+
# create the getters and setters
|
|
14
|
+
class << self
|
|
15
|
+
attr_accessor :base_uri
|
|
16
|
+
attr_accessor :application_id
|
|
17
|
+
attr_accessor :version
|
|
18
|
+
end
|
|
19
|
+
end
|
|
20
|
+
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: moesif_api
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.2.
|
|
4
|
+
version: 1.2.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Moesif, Inc
|
|
@@ -31,14 +31,14 @@ dependencies:
|
|
|
31
31
|
requirements:
|
|
32
32
|
- - "~>"
|
|
33
33
|
- !ruby/object:Gem::Version
|
|
34
|
-
version: 1.1.
|
|
34
|
+
version: 1.1.5
|
|
35
35
|
type: :runtime
|
|
36
36
|
prerelease: false
|
|
37
37
|
version_requirements: !ruby/object:Gem::Requirement
|
|
38
38
|
requirements:
|
|
39
39
|
- - "~>"
|
|
40
40
|
- !ruby/object:Gem::Version
|
|
41
|
-
version: 1.1.
|
|
41
|
+
version: 1.1.5
|
|
42
42
|
- !ruby/object:Gem::Dependency
|
|
43
43
|
name: json_mapper
|
|
44
44
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -65,6 +65,7 @@ files:
|
|
|
65
65
|
- lib/moesif_api.rb
|
|
66
66
|
- lib/moesif_api/api_helper.rb
|
|
67
67
|
- lib/moesif_api/configuration.rb
|
|
68
|
+
- lib/moesif_api/configuration.rb~
|
|
68
69
|
- lib/moesif_api/controllers/api_controller.rb
|
|
69
70
|
- lib/moesif_api/controllers/base_controller.rb
|
|
70
71
|
- lib/moesif_api/controllers/health_controller.rb
|