speedup 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 8134d5954152ec6c7903d2283fae9294c3df1c0d
4
+ data.tar.gz: b160ec4457e181bf98349de384f13ea88cd58515
5
+ SHA512:
6
+ metadata.gz: b33dfaf3a7569a035c6e287d63e970cf6e69fc895bc68fa40807af54fdb0e0a42b887f59c4c0c5a40a7858613f9dd256444f569366771d3651a58e3710d56c04
7
+ data.tar.gz: d2fdbbfca9178162ec95d9f0b900409b281e5ef40924ddd67f06a856b392ca2d1856f8da260fa3d32b144da6db2068ddc85b849e808484f2fed8e2696b11f02b
data/.gitignore ADDED
@@ -0,0 +1,17 @@
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
data/Gemfile ADDED
@@ -0,0 +1,5 @@
1
+ source 'http://ruby.taobao.org'
2
+
3
+ # Specify your gem's dependencies in speedup.gemspec
4
+ gem 'faraday'
5
+ gem 'json'
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2013 金斌
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.
data/README.md ADDED
@@ -0,0 +1,31 @@
1
+ # Speedup
2
+
3
+ TODO: Write a gem description
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'speedup'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install speedup
18
+
19
+ ## Usage
20
+
21
+ 1. Open browser and type url 'https://api.weibo.com/oauth2/authorize?client_id=44721943&redirect_uri=https://github.com/jinbin/speedup'
22
+ 2. Authorize and get the code
23
+ 3. Write code in speedup.yaml
24
+
25
+ ## Contributing
26
+
27
+ 1. Fork it
28
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
29
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
30
+ 4. Push to the branch (`git push origin my-new-feature`)
31
+ 5. Create new Pull Request
data/Rakefile ADDED
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
@@ -0,0 +1,14 @@
1
+ require 'faraday'
2
+ require 'yaml'
3
+ require 'json'
4
+ require 'pry'
5
+
6
+ config = YAML.load_file("./speedup.yaml")
7
+ code = config[:code]
8
+
9
+ conn = Faraday.new(:url => "https://api.weibo.com/")
10
+
11
+ result = conn.post '/oauth2/access_token',:client_id => '44721943',:client_secret => '96e57fd158c96e1b4d961124dca55e56',:grant_type => 'authorization_code',:code => code,:redirect_uri => 'https://github.com/jinbin/speedup'
12
+
13
+ config[:access_token] = JSON.parse(result.env[:body])["access_token"]
14
+ File.open("./speedup.yaml","w") {|f| YAML.dump(config,f)}
@@ -0,0 +1,3 @@
1
+ module Speedup
2
+ VERSION = "0.0.1"
3
+ end
data/lib/speedup.rb ADDED
@@ -0,0 +1,35 @@
1
+ #require "speedup/version"
2
+ require 'faraday'
3
+ require 'yaml'
4
+ require 'json'
5
+
6
+ module Speedup
7
+ def initialize
8
+ config = YAML.load_file("./speedup.yaml")
9
+ if config[:code].nil?
10
+ puts "\ncode missing\n\n"
11
+ exit
12
+ end
13
+ if config[:access_token].nil?
14
+ code = config[:code]
15
+ conn = Faraday.new(:url => "https://api.weibo.com/")
16
+
17
+ result = conn.post '/oauth2/access_token',:client_id => '44721943',:client_secret => '96e57fd158c96e1b4d961124dca55e56',:grant_type => 'authorization_code',:code => code,:redirect_uri => 'https://github.com/jinbin/speedup'
18
+
19
+ config[:access_token] = JSON.parse(result.env[:body])["access_token"]
20
+ File.open("./speedup.yaml","w") {|f| YAML.dump(config,f)}
21
+ end
22
+ end
23
+
24
+ def get_info_from_yaml key
25
+ file=File.expand_path("./speedup.yaml",File.dirname(__FILE__))
26
+ YAML::load_file(file)[key]
27
+ end
28
+
29
+ def weibo(text)
30
+ token = get_info_from_yaml(:access_token)
31
+ conn = Faraday.new(:url => 'https://api.weibo.com')
32
+ conn.post '/2/statuses/update.json',:access_token => token,:status => text
33
+ end
34
+ end
35
+
data/lib/speedup.yaml ADDED
@@ -0,0 +1,3 @@
1
+ ---
2
+ :code: e59a71a110a38ba6661485bc6b2c1e59
3
+ :access_token: 2.00THiLsB0fNeBDe9a61bfb9f0BroaH
@@ -0,0 +1,7 @@
1
+ require './speedup.rb'
2
+
3
+ class A
4
+ include Speedup
5
+ end
6
+
7
+ A.new.weibo("懒是一个很好的托辞,说得好像勤快了就真能干出什么大事儿一样。")
data/speedup.gemspec ADDED
@@ -0,0 +1,23 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'speedup/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "speedup"
8
+ spec.version = Speedup::VERSION
9
+ spec.authors = ["金斌"]
10
+ spec.email = ["bin.jinb@qq.com"]
11
+ spec.description = %q{新浪微博文字极速上传}
12
+ spec.summary = %q{新浪微博文字极速上传}
13
+ spec.homepage = "https://github.com/jinbin/speedup"
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
+ end
metadata ADDED
@@ -0,0 +1,83 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: speedup
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - 金斌
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2013-05-20 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ~>
18
+ - !ruby/object:Gem::Version
19
+ version: '1.3'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: '1.3'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - '>='
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - '>='
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ description: 新浪微博文字极速上传
42
+ email:
43
+ - bin.jinb@qq.com
44
+ executables: []
45
+ extensions: []
46
+ extra_rdoc_files: []
47
+ files:
48
+ - .gitignore
49
+ - Gemfile
50
+ - LICENSE.txt
51
+ - README.md
52
+ - Rakefile
53
+ - lib/post_access_token.rb
54
+ - lib/speedup.rb
55
+ - lib/speedup.yaml
56
+ - lib/speedup/version.rb
57
+ - lib/test_speedup.rb
58
+ - speedup.gemspec
59
+ homepage: https://github.com/jinbin/speedup
60
+ licenses:
61
+ - MIT
62
+ metadata: {}
63
+ post_install_message:
64
+ rdoc_options: []
65
+ require_paths:
66
+ - lib
67
+ required_ruby_version: !ruby/object:Gem::Requirement
68
+ requirements:
69
+ - - '>='
70
+ - !ruby/object:Gem::Version
71
+ version: '0'
72
+ required_rubygems_version: !ruby/object:Gem::Requirement
73
+ requirements:
74
+ - - '>='
75
+ - !ruby/object:Gem::Version
76
+ version: '0'
77
+ requirements: []
78
+ rubyforge_project:
79
+ rubygems_version: 2.0.3
80
+ signing_key:
81
+ specification_version: 4
82
+ summary: 新浪微博文字极速上传
83
+ test_files: []