ruboty-ymcrawl 0.0.9 → 0.0.10

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,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a30b00f8ef3a0f7058f46fdd58206e0170d95592
4
- data.tar.gz: 9526594621419c35b4e9ed73dbdd1051ea1536a0
3
+ metadata.gz: 31d298b0ab54b65da14e718d3ad8d53007ef40e4
4
+ data.tar.gz: 184ceb684b99333e82bcf7bd3b4ea5d2d541afc3
5
5
  SHA512:
6
- metadata.gz: 2a1f83c1f5b8572579b8fa86451a1d9d3387e3bfeaca7174fa4ef78bff2dce68375a433ce2737e9464f583242e59eadc43acc564f256c30e76b0355139ec9ca2
7
- data.tar.gz: 4a2909657f41bb3a11e90962e81c5ba966c6ac139dc9401785851503bdd14baf59462b3a97bfae3646d1f76b129e29213c3f12268a0e5ddca9d77e7a0b906693
6
+ metadata.gz: f1937b672c42823e24a32aff409e31019408a83c7c7db4375aae097d6ea445d79b767464659b9d2a463cf9e7819801ad61f505f6f4e0950b7b90ea3dc935ffa8
7
+ data.tar.gz: 01239dd7251abf62ceed5493bc316d12d7d53d3c15880c6e79fb777ec290b11753ef32a60fe8fa8429d0aaee43f8be251267c86bbd8471351cc36dc1ee094a46
@@ -4,7 +4,8 @@ require 'kconv'
4
4
  require 'addressable/uri'
5
5
  require 'singleton'
6
6
 
7
- module YMCrawl
7
+ module Ruboty
8
+ module YMCrawl
8
9
  # URLに関する処理をまとめたクラス
9
10
  class URLUtil
10
11
  def self.normalize_url(url)
@@ -206,3 +207,4 @@ module YMCrawl
206
207
  end
207
208
  end
208
209
  end
210
+ end
@@ -1,60 +1,62 @@
1
1
  # Install this the SDK with "gem install dropbox-sdk"
2
2
  require 'dropbox_sdk'
3
- module YMCrawl
4
- class DropboxManager
5
-
6
- def initialize(app_key, app_sec)
7
- @app_key = app_key
8
- @app_sec = app_sec
9
- @client = nil
10
- @access_token = nil
11
- end
12
-
13
- def login(arg_access_token = nil)
14
- if not @client.nil?
15
- puts "already logged in!"
16
- return @access_token
3
+ module Ruboty
4
+ module YMCrawl
5
+ class DropboxManager
6
+
7
+ def initialize(app_key, app_sec)
8
+ @app_key = app_key
9
+ @app_sec = app_sec
10
+ @client = nil
11
+ @access_token = nil
17
12
  end
18
13
 
19
- @access_token = arg_access_token
20
- begin
21
- @client = DropboxClient.new(@access_token)
22
- puts "account info: #{@client.account_info()}"
23
- return @access_token
24
- rescue DropboxError => ex
25
- puts "---- access token is invalid ----"
26
- return nil
14
+ def login(arg_access_token = nil)
15
+ if not @client.nil?
16
+ puts "already logged in!"
17
+ return @access_token
18
+ end
19
+
20
+ @access_token = arg_access_token
21
+ begin
22
+ @client = DropboxClient.new(@access_token)
23
+ puts "account info: #{@client.account_info()}"
24
+ return @access_token
25
+ rescue DropboxError => ex
26
+ puts "---- access token is invalid ----"
27
+ return nil
28
+ end
29
+ end
30
+
31
+ def get_auth_code_url
32
+ puts "web_auth is nil!!!!" if @web_auth == nil
33
+ @web_auth = DropboxOAuth2FlowNoRedirect.new(@app_key, @app_sec)
34
+ authorize_url = @web_auth.start()
27
35
  end
28
- end
29
-
30
- def get_auth_code_url
31
- puts "web_auth is nil!!!!" if @web_auth == nil
32
- @web_auth = DropboxOAuth2FlowNoRedirect.new(@app_key, @app_sec)
33
- authorize_url = @web_auth.start()
34
- end
35
-
36
- def get_access_token(auth_code)
37
- @web_auth.finish(auth_code)[0]
38
- end
39
-
40
- def put(command)
41
- fname = command[0]
42
36
 
43
- #If the user didn't specifiy the file name, just use the name of the file on disk
44
- if command[1]
45
- new_name = command[1]
46
- else
47
- new_name = File.basename(fname)
37
+ def get_access_token(auth_code)
38
+ @web_auth.finish(auth_code)[0]
48
39
  end
49
40
 
50
- if fname && !fname.empty? && File.exists?(fname) && (File.ftype(fname) == 'file') && File.stat(fname).readable?
51
- #This is where we call the the Dropbox Client
52
- pp @client.put_file(new_name, open(fname))
53
- else
54
- puts "couldn't find the file #{ fname }"
41
+ def put(command)
42
+ fname = command[0]
43
+
44
+ #If the user didn't specifiy the file name, just use the name of the file on disk
45
+ if command[1]
46
+ new_name = command[1]
47
+ else
48
+ new_name = File.basename(fname)
49
+ end
50
+
51
+ if fname && !fname.empty? && File.exists?(fname) && (File.ftype(fname) == 'file') && File.stat(fname).readable?
52
+ #This is where we call the the Dropbox Client
53
+ pp @client.put_file(new_name, open(fname))
54
+ else
55
+ puts "couldn't find the file #{ fname }"
56
+ end
55
57
  end
56
- end
57
58
 
58
- def get_share_link(path) @client.shares(path) end
59
- end
59
+ def get_share_link(path) @client.shares(path) end
60
+ end
61
+ end
60
62
  end
@@ -1,5 +1,5 @@
1
1
  module Ruboty
2
2
  module Ymcrawl
3
- VERSION = "0.0.9"
3
+ VERSION = "0.0.10"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruboty-ymcrawl
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.9
4
+ version: 0.0.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - mpk
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-12-13 00:00:00.000000000 Z
11
+ date: 2014-12-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: addressable