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 CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- N2MyZWQ2Y2M4NzczZjFkMzBhY2NiY2Q4NzE3NDE0NTc4NWQ5ZTA0Yw==
4
+ YzhiZTMzNmQxZDI2NTNkNzRhOWJkYWUzNDViZjA3NjRkNDNkNjU0MA==
5
5
  data.tar.gz: !binary |-
6
- Y2QxMzkwNTMzYzMyZGViZmE3ZGFmMWM0OGRjOGYzYTE0NDk2ODljNw==
6
+ NWYxZGI5OWFiODI3YjBjYTUxNzYxNTk2N2Y4YjBjYWE2NjBkYWZmZA==
7
7
  !binary "U0hBNTEy":
8
8
  metadata.gz: !binary |-
9
- ZjQ2OTgwZTNkY2NhYjE1MmYwNjk0MzA3MDEzZDEwMmYwY2I3OTFiMmRlZWRm
10
- ZjI5NTFjMmY1NjU2NzhiMGFiYTk3MmIzMDMxZjBlMjQ5YjhmNjM2ODBiMDk0
11
- MjlmNzZiNDNlM2I3MWEyMWQwMTU3YTIzNWQzZmRmNzIwNzk5ZGU=
9
+ YmVlNjc5MjQ5YzcyMmM2ZTgzZjhhYTZkNTMyNzIwMWQxYTZmYThmNTJjYjY1
10
+ ZTgxMTNlY2I2MzE1YTA3NGYwZWUwM2U2MzZiZWU2ODhkZjJlMDI0MzU5NzBj
11
+ ZGFhNGY2YWYxOWNmMWE4NDcyNjMzNTU4YzBmZDUyZjRmNzZkYjQ=
12
12
  data.tar.gz: !binary |-
13
- NTEwMzljMDA3ZDRhNTYxMjZlOGI1N2M3MWFiMmI3NjI4OTZmMDcxNDk5NDc0
14
- MDYxZmMzNmIwNmNiZmZjMDg4ZDYzYTA1NjRmNmI4YzkwZTEzZmE3NmIwZDA0
15
- ZGZmZjQxMDFlMTQ1YmZlNDE1MjMxZGE1MDA2OTJhZWY5YzI3ZTM=
13
+ MjBiY2JiZDk2MjhiNjYwYWIxOTA3MTBkZjIzNzY1YTg4MWUwNDZiOTRmYTNj
14
+ Yzg0ZmQ1OGRmMDIyOTVkZDdkZjE0M2ExMzFmZGJiMDBlOWZkOGE3YWI1YWI3
15
+ MzIzNjgxOGI3Y2IwMDAwZTY2MjNjYmU0MzFlZGI4OTc3MDlmMTk=
@@ -1,3 +1,3 @@
1
1
  module DeviceAtlasApi
2
- VERSION = "0.0.4"
2
+ VERSION = "0.0.5"
3
3
  end
@@ -3,6 +3,11 @@ require "uri"
3
3
  require 'httparty'
4
4
 
5
5
  module DeviceAtlasApi
6
+ module Rails
7
+ class Engine < ::Rails::Engine
8
+ end
9
+ end
10
+
6
11
  autoload :ControllerHelpers, 'deviceatlasapi/controller'
7
12
 
8
13
  def self.setup
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
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
@@ -1,18 +0,0 @@
1
- *.idea
2
- *.gem
3
- *.rbc
4
- .bundle
5
- .config
6
- .yardoc
7
- Gemfile.lock
8
- InstalledFiles
9
- _yardoc
10
- coverage
11
- doc/
12
- lib/bundler/man
13
- pkg
14
- rdoc
15
- spec/reports
16
- test/tmp
17
- test/version_tmp
18
- tmp
data/Gemfile DELETED
@@ -1,4 +0,0 @@
1
- source 'https://rubygems.org'
2
-
3
- # Specify your gem's dependencies in deviceatlasapi.gemspec
4
- gemspec
data/Rakefile DELETED
@@ -1 +0,0 @@
1
- require "bundler/gem_tasks"
@@ -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