sodacan 0.0.6 → 0.0.7

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7a1212653711b4273c5d2e9de518348e18283dab
4
- data.tar.gz: 11fb99e15d50aa0217d5ca0d4eff0647b8319c97
3
+ metadata.gz: 18f1da3f2b8325bbdb0fb07f7eb303b8463adf8f
4
+ data.tar.gz: a97777fe0484825850f7af72172ec7ee11dd3caa
5
5
  SHA512:
6
- metadata.gz: 62fd82e65334ec9e2c4ab923439e024ff5284b32b417c84ca9fb69cfffce80b581afb19825c5f419bb771933b9a4b76d22ac18aedda8c90792dc4e3966d817ae
7
- data.tar.gz: e7be584bccbd96a84ca05bbf9ce710ae6fe085d41a6d7c5f269e14fa469965bd2d508be56ab0c754a024c30f9b1dfec8576c0d453a43c7aeb5e532f85395181a
6
+ metadata.gz: 2c1304256fbb5d15f80c4cad5d45228a089e2ebb3fb0e0416bef5dc87f58a40bb0b8040cb691537bc371414baf7cf5271e203ab7fd0fa6635cc9fe4994ddc34b
7
+ data.tar.gz: 3957e4b03c72373d26cc5772f4c1ce3c9351cc51bbe3d95ac94a2a1121d6d0e6a849c6aa54c14d88fe4466aa61ee19434f46812b7406a348725a69a633e18bb1
@@ -2,9 +2,9 @@ module SodaCan
2
2
  class Location
3
3
  def initialize (params)
4
4
  lat = nil
5
- lat = Float(params['latitude']) if params['latitude'].present?
5
+ lat = Float(params['latitude']) if params['latitude']
6
6
  long = nil
7
- long = Float(params['longitude']) if params['longitude'].present?
7
+ long = Float(params['longitude']) if params['longitude']
8
8
  define_singleton_method(:latitude){ lat }
9
9
  define_singleton_method(:longitude){ long }
10
10
  end
@@ -1,3 +1,3 @@
1
1
  module SodaCan
2
- VERSION = "0.0.6"
2
+ VERSION = "0.0.7"
3
3
  end
data/sodacan-0.0.6.gem ADDED
Binary file
data/sodacan.gemspec CHANGED
@@ -6,8 +6,8 @@ require 'sodacan/version'
6
6
  Gem::Specification.new do |spec|
7
7
  spec.name = "sodacan"
8
8
  spec.version = SodaCan::VERSION
9
- spec.authors = ["Trevor John, tjohn", "Tyler Heck, theck01"]
10
- spec.email = ["tyler.heck@gmail.com"]
9
+ spec.authors = ["Trevor John", "Tyler Heck"]
10
+ spec.email = ["tyler.heck+sodacan@gmail.com"]
11
11
  spec.description = %q{Wrapper to make ActiveRecord type queries on Soda2 interfaces.}
12
12
  spec.summary = %q{SOQL Wrapper for JSON Soda 2 interfaces}
13
13
  spec.homepage = "http://rubygems.org/gems/sodacan"
metadata CHANGED
@@ -1,11 +1,11 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sodacan
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.6
4
+ version: 0.0.7
5
5
  platform: ruby
6
6
  authors:
7
- - Trevor John, tjohn
8
- - Tyler Heck, theck01
7
+ - Trevor John
8
+ - Tyler Heck
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
@@ -69,7 +69,7 @@ dependencies:
69
69
  version: 1.6.7
70
70
  description: Wrapper to make ActiveRecord type queries on Soda2 interfaces.
71
71
  email:
72
- - tyler.heck@gmail.com
72
+ - tyler.heck+sodacan@gmail.com
73
73
  executables: []
74
74
  extensions: []
75
75
  extra_rdoc_files: []
@@ -84,7 +84,7 @@ files:
84
84
  - lib/sodacan/base.rb
85
85
  - lib/sodacan/location.rb
86
86
  - lib/sodacan/version.rb
87
- - sodacan-0.0.4.gem
87
+ - sodacan-0.0.6.gem
88
88
  - sodacan.gemspec
89
89
  - spec/sodacan_spec.rb
90
90
  - spec/spec_helper.rb
data/sodacan-0.0.4.gem DELETED
Binary file