think_page 0.0.1

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.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: d0ce4a59721e04c8902cdd6f17556c84530b3e7d
4
+ data.tar.gz: 2639e0575c077aaddf66139e356e27d853b17d1e
5
+ SHA512:
6
+ metadata.gz: 216c7533f838458db19db31c0b249dd1eadffd152a35647db73e794ecc391f45934644c3522f2d94b8b1be440d7e6d64da0db3964b0a2a457959dd53db267acc
7
+ data.tar.gz: a322a9d1b75fa98293fd7753c6c24d4c72e4b299749b31122cabe14316119c276e9d548ca70b190e0d74fd53308aadc410ccc2f9e5655e1974e3871bee4923ff
@@ -0,0 +1,22 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
18
+ *.bundle
19
+ *.so
20
+ *.o
21
+ *.a
22
+ mkmf.log
data/Gemfile ADDED
@@ -0,0 +1,8 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in think_page.gemspec
4
+
5
+ gem 'oj', '~> 2.10'
6
+ gem 'restclient_api_base', '~> 0.1.1.1'
7
+
8
+ gemspec
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 Spirit
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,54 @@
1
+ # ThinkPage
2
+
3
+ 心知天气(ThinkPage) Ruby SDK, 详细参数请见 [天气数据接口API](http://www.thinkpage.cn/weather/api/)
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'think_page'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install think_page
18
+
19
+ ## Usage
20
+
21
+ ```ruby
22
+ require 'think_page'
23
+
24
+ ThinkPage.private_params = { key: 'Your key' }
25
+
26
+ # 获取指定城市的全部天气信息
27
+ ThinkPage.get_all(city: 'CHBJ000000'....)
28
+
29
+ # 获取指定城市的实时天气
30
+ ThinkPage.get_now(city: 'CHBJ000000'....)
31
+
32
+ # 获取指定城市的预报天气
33
+ ThinkPage.get_future(city: 'CHBJ000000'....)
34
+
35
+ # 获取指定城市的AQI、PM2.5、PM10、CO、NO2、O3等空气质量信息
36
+ ThinkPage.get_air(city: 'CHBJ000000'....)
37
+
38
+ # 获取指定城市的穿衣、紫外线、汽车、感冒、运动等生活建议指数信息
39
+ ThinkPage.get_suggestion(city: 'CHBJ000000'....)
40
+
41
+ # 获取过去24小时每小时天气和空气质量历史数据。仅支持大客户会员
42
+ ThinkPage.get_history24h(city: 'CHBJ000000'....)
43
+
44
+ # 获取每个城市分别根据历史数据计算的每天天气预报准确度。仅支持大客户会员
45
+ ThinkPage.get_accuracy(city: 'CHBJ000000'....)
46
+ ```
47
+
48
+ ## Contributing
49
+
50
+ 1. Fork it ( https://github.com/awesome-api/think_page/fork )
51
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
52
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
53
+ 4. Push to the branch (`git push origin my-new-feature`)
54
+ 5. Create a new Pull Request
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+
@@ -0,0 +1,47 @@
1
+ require "think_page/version"
2
+ require "restclient_api_base"
3
+ require "oj"
4
+
5
+ module ThinkPage
6
+ include RestclientApiBase
7
+
8
+ self.base_url = 'https://api.thinkpage.cn/v2/weather/'
9
+
10
+ class << self
11
+
12
+ def format_weather_result response, api_url, options = {}
13
+ begin
14
+ Oj.load(response)
15
+ rescue
16
+ write_log(response, api_url, options)
17
+ end
18
+ end
19
+ end
20
+
21
+ # define Class Methods, get_all, get_now, etc.
22
+ #
23
+ # like:
24
+ # def get_all options
25
+ # @all_url ||= "all.json"
26
+ # res = self.get(@all_url, options)
27
+ # format_weather_result(res, @all_url, options)
28
+ # end
29
+ #
30
+ lambda do
31
+ %w(all now future air suggestion history24h accuracy).each do |_method|
32
+ define_singleton_method("get_#{_method}") do |options|
33
+ unless instance_variable_get("@#{_method}_url")
34
+ instance_variable_set("@#{_method}_url", "#{_method}.json")
35
+ end
36
+
37
+ if self.private_params == {}
38
+ warn 'Your api key is empty'
39
+ return
40
+ end
41
+
42
+ res = self.get(instance_variable_get("@#{_method}_url"), options)
43
+ format_weather_result(res, instance_variable_get("@#{_method}_url"), options)
44
+ end
45
+ end
46
+ end.call
47
+ end
@@ -0,0 +1,3 @@
1
+ module ThinkPage
2
+ VERSION = "0.0.1"
3
+ end
@@ -0,0 +1,11 @@
1
+ # encoding: utf-8
2
+
3
+ require 'minitest/autorun'
4
+ require File.dirname(__FILE__) + '/../lib/think_page'
5
+
6
+ if Minitest.const_defined?('Test')
7
+ # We're on Minitest 5+. Nothing to do here.
8
+ else
9
+ # Minitest 4 doesn't have Minitest::Test yet.
10
+ Minitest::Test = MiniTest::Unit::TestCase
11
+ end
@@ -0,0 +1,12 @@
1
+ # encoding: utf-8
2
+
3
+ require File.dirname(__FILE__) + '/test_helper.rb'
4
+
5
+ class TestThinkPage < Minitest::Test
6
+
7
+ def setup
8
+ end
9
+
10
+ def teardown
11
+ end
12
+ end
@@ -0,0 +1,25 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'think_page/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "think_page"
8
+ spec.version = ThinkPage::VERSION
9
+ spec.authors = ["Spirit"]
10
+ spec.email = ["neverlandxy.naix@gmail.com"]
11
+ spec.summary = %q{心知天气(ThinkPage) Ruby SDK}
12
+ spec.description = %q{心知天气(ThinkPage) Ruby SDK}
13
+ spec.homepage = "https://github.com/awesome-api/think_page"
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files -z`.split("\x0")
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_dependency "oj", "~> 2.10"
22
+ spec.add_dependency "restclient_api_base", "~> 0.1"
23
+ spec.add_development_dependency "bundler", "~> 1.6"
24
+ spec.add_development_dependency "rake"
25
+ end
metadata ADDED
@@ -0,0 +1,113 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: think_page
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Spirit
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-09-04 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: oj
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '2.10'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '2.10'
27
+ - !ruby/object:Gem::Dependency
28
+ name: restclient_api_base
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '0.1'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '0.1'
41
+ - !ruby/object:Gem::Dependency
42
+ name: bundler
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '1.6'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '1.6'
55
+ - !ruby/object:Gem::Dependency
56
+ name: rake
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ description: "心知天气(ThinkPage) Ruby SDK"
70
+ email:
71
+ - neverlandxy.naix@gmail.com
72
+ executables: []
73
+ extensions: []
74
+ extra_rdoc_files: []
75
+ files:
76
+ - ".gitignore"
77
+ - Gemfile
78
+ - LICENSE.txt
79
+ - README.md
80
+ - Rakefile
81
+ - lib/think_page.rb
82
+ - lib/think_page/version.rb
83
+ - test/test_helper.rb
84
+ - test/test_think_page.rb
85
+ - think_page.gemspec
86
+ homepage: https://github.com/awesome-api/think_page
87
+ licenses:
88
+ - MIT
89
+ metadata: {}
90
+ post_install_message:
91
+ rdoc_options: []
92
+ require_paths:
93
+ - lib
94
+ required_ruby_version: !ruby/object:Gem::Requirement
95
+ requirements:
96
+ - - ">="
97
+ - !ruby/object:Gem::Version
98
+ version: '0'
99
+ required_rubygems_version: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ">="
102
+ - !ruby/object:Gem::Version
103
+ version: '0'
104
+ requirements: []
105
+ rubyforge_project:
106
+ rubygems_version: 2.2.2
107
+ signing_key:
108
+ specification_version: 4
109
+ summary: "心知天气(ThinkPage) Ruby SDK"
110
+ test_files:
111
+ - test/test_helper.rb
112
+ - test/test_think_page.rb
113
+ has_rdoc: