deviceatlasapi 0.0.4 → 0.0.5
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 +8 -8
- data/lib/deviceatlasapi/version.rb +1 -1
- data/lib/deviceatlasapi.rb +5 -0
- metadata +5 -9
- data/.gitignore +0 -18
- data/Gemfile +0 -4
- data/Rakefile +0 -1
- data/deviceatlasapi.gemspec +0 -25
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
YzhiZTMzNmQxZDI2NTNkNzRhOWJkYWUzNDViZjA3NjRkNDNkNjU0MA==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
NWYxZGI5OWFiODI3YjBjYTUxNzYxNTk2N2Y4YjBjYWE2NjBkYWZmZA==
|
|
7
7
|
!binary "U0hBNTEy":
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
YmVlNjc5MjQ5YzcyMmM2ZTgzZjhhYTZkNTMyNzIwMWQxYTZmYThmNTJjYjY1
|
|
10
|
+
ZTgxMTNlY2I2MzE1YTA3NGYwZWUwM2U2MzZiZWU2ODhkZjJlMDI0MzU5NzBj
|
|
11
|
+
ZGFhNGY2YWYxOWNmMWE4NDcyNjMzNTU4YzBmZDUyZjRmNzZkYjQ=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
MjBiY2JiZDk2MjhiNjYwYWIxOTA3MTBkZjIzNzY1YTg4MWUwNDZiOTRmYTNj
|
|
14
|
+
Yzg0ZmQ1OGRmMDIyOTVkZDdkZjE0M2ExMzFmZGJiMDBlOWZkOGE3YWI1YWI3
|
|
15
|
+
MzIzNjgxOGI3Y2IwMDAwZTY2MjNjYmU0MzFlZGI4OTc3MDlmMTk=
|
data/lib/deviceatlasapi.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: deviceatlasapi
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Trevor Kimenye
|
|
@@ -73,17 +73,13 @@ executables: []
|
|
|
73
73
|
extensions: []
|
|
74
74
|
extra_rdoc_files: []
|
|
75
75
|
files:
|
|
76
|
-
- .gitignore
|
|
77
|
-
- Gemfile
|
|
78
|
-
- LICENSE.txt
|
|
79
|
-
- README.ClientSide.txt
|
|
80
|
-
- README.md
|
|
81
|
-
- Rakefile
|
|
82
|
-
- deviceatlasapi.gemspec
|
|
83
|
-
- lib/deviceatlasapi.rb
|
|
84
76
|
- lib/deviceatlasapi/controller.rb
|
|
85
77
|
- lib/deviceatlasapi/version.rb
|
|
78
|
+
- lib/deviceatlasapi.rb
|
|
86
79
|
- vendor/assets/javascripts/deviceatlas-1.1.min.js
|
|
80
|
+
- LICENSE.txt
|
|
81
|
+
- README.md
|
|
82
|
+
- README.ClientSide.txt
|
|
87
83
|
homepage: https://github.com/kimenye/deviceatlasapi
|
|
88
84
|
licenses:
|
|
89
85
|
- MIT
|
data/.gitignore
DELETED
data/Gemfile
DELETED
data/Rakefile
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
require "bundler/gem_tasks"
|
data/deviceatlasapi.gemspec
DELETED
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
# coding: utf-8
|
|
2
|
-
lib = File.expand_path('../lib', __FILE__)
|
|
3
|
-
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
|
-
require 'deviceatlasapi/version'
|
|
5
|
-
|
|
6
|
-
Gem::Specification.new do |spec|
|
|
7
|
-
spec.name = "deviceatlasapi"
|
|
8
|
-
spec.version = DeviceAtlasApi::VERSION
|
|
9
|
-
spec.authors = ["Trevor Kimenye"]
|
|
10
|
-
spec.email = ["kimenye@gmail.com"]
|
|
11
|
-
spec.description = %q{Lets you access the DeviceAtlas cloud api}
|
|
12
|
-
spec.summary = %q{Ruby gem to access DeviceAtlas cloud api}
|
|
13
|
-
spec.homepage = "https://github.com/kimenye/deviceatlasapi"
|
|
14
|
-
spec.license = "MIT"
|
|
15
|
-
|
|
16
|
-
spec.files = `git ls-files`.split($/)
|
|
17
|
-
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
|
18
|
-
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
|
19
|
-
spec.require_paths = ["lib"]
|
|
20
|
-
|
|
21
|
-
spec.add_development_dependency "bundler", "~> 1.3"
|
|
22
|
-
spec.add_development_dependency "rake"
|
|
23
|
-
spec.add_dependency "httparty"
|
|
24
|
-
spec.add_dependency "railties", "~> 3.1"
|
|
25
|
-
end
|