eztz 0.0.2 → 0.0.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 +8 -8
- data/.rspec +1 -0
- data/.travis.yml +10 -0
- data/README.md +3 -0
- data/eztz.gemspec +1 -1
- data/lib/eztz/version.rb +1 -1
- metadata +6 -5
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
ZDMxZmQxODE2ZWI5NzZlZjcwMTkxZjJjOTcwNDRkNGY5NjAwM2U0OQ==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
Nzk3ZDFlN2YyNGM0ZTQzYzcwNmI3NWI3NTAyYjhlODkzNGY2NGI1OQ==
|
|
7
7
|
!binary "U0hBNTEy":
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
MWI4Yjc2MDBjMWIzYWY1NTU3ZGIzNmY5YTc5ZWI5OGU4NWNlNDMzMzJiYjQ1
|
|
10
|
+
NTNjN2VmZjAwYjg5ZTg5MzM0OGI1MmE2MzM5OTYyNzc4NTVkZjRjODNlMWY5
|
|
11
|
+
N2E3MzZhODdmMGM3OWFlZDY5M2U0YzkzYWExNmRkNTFjN2VhMTU=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
YWU3MjFlOTliNzY2NTBjOWRiOWVhZmU3NjNjOWQxYWYwOGE2NjAyYTJmNWQ4
|
|
14
|
+
YWYwM2ZhYzUzMWYzODc3OWEwZTE2YTc4OGJlZDI1NDQyZTc1ZDkxNzVlZjY5
|
|
15
|
+
ZGExYWEyNTU5ZmY2OWE2YTNkZDhhYzk1YTE4YTg3N2ZiODdjY2E=
|
data/.rspec
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
--format nested --colour
|
data/.travis.yml
ADDED
data/README.md
CHANGED
|
@@ -2,6 +2,9 @@
|
|
|
2
2
|
|
|
3
3
|
Ruby wrapper for the [Google Time Zone API](https://developers.google.com/maps/documentation/timezone)
|
|
4
4
|
|
|
5
|
+
[](https://codeclimate.com/github/cmason/eztz)
|
|
6
|
+
[](https://travis-ci.org/cmason/eztz)
|
|
7
|
+
|
|
5
8
|
## Installation
|
|
6
9
|
|
|
7
10
|
Add this line to your application's Gemfile:
|
data/eztz.gemspec
CHANGED
|
@@ -20,6 +20,6 @@ Gem::Specification.new do |gem|
|
|
|
20
20
|
gem.add_development_dependency 'vcr', '~> 2.4.0'
|
|
21
21
|
gem.add_development_dependency 'webmock', '~> 1.9.3'
|
|
22
22
|
|
|
23
|
-
gem.add_dependency 'httparty', '~> 0.10
|
|
23
|
+
gem.add_dependency 'httparty', '~> 0.10'
|
|
24
24
|
gem.add_dependency 'hashie', '>= 1.2.0'
|
|
25
25
|
end
|
data/lib/eztz/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: eztz
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Chris Mason
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2013-03
|
|
11
|
+
date: 2013-09-03 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rake
|
|
@@ -72,14 +72,14 @@ dependencies:
|
|
|
72
72
|
requirements:
|
|
73
73
|
- - ~>
|
|
74
74
|
- !ruby/object:Gem::Version
|
|
75
|
-
version: 0.10
|
|
75
|
+
version: '0.10'
|
|
76
76
|
type: :runtime
|
|
77
77
|
prerelease: false
|
|
78
78
|
version_requirements: !ruby/object:Gem::Requirement
|
|
79
79
|
requirements:
|
|
80
80
|
- - ~>
|
|
81
81
|
- !ruby/object:Gem::Version
|
|
82
|
-
version: 0.10
|
|
82
|
+
version: '0.10'
|
|
83
83
|
- !ruby/object:Gem::Dependency
|
|
84
84
|
name: hashie
|
|
85
85
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -102,6 +102,8 @@ extensions: []
|
|
|
102
102
|
extra_rdoc_files: []
|
|
103
103
|
files:
|
|
104
104
|
- .gitignore
|
|
105
|
+
- .rspec
|
|
106
|
+
- .travis.yml
|
|
105
107
|
- Gemfile
|
|
106
108
|
- LICENSE
|
|
107
109
|
- README.md
|
|
@@ -144,4 +146,3 @@ test_files:
|
|
|
144
146
|
- spec/fixtures/cassettes/emtpy_results.yml
|
|
145
147
|
- spec/fixtures/cassettes/valid_timezone_lookup.yml
|
|
146
148
|
- spec/spec_helper.rb
|
|
147
|
-
has_rdoc:
|