stackoverflow 0.1.1 → 0.1.2
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.
- data/lib/stackoverflow.rb +2 -3
- metadata +2 -2
data/lib/stackoverflow.rb
CHANGED
|
@@ -27,7 +27,6 @@ require 'terminal-table/import'
|
|
|
27
27
|
require 'sqlite3'
|
|
28
28
|
require 'optparse'
|
|
29
29
|
|
|
30
|
-
|
|
31
30
|
module StackOverflow
|
|
32
31
|
class API
|
|
33
32
|
def search(search_string)
|
|
@@ -126,8 +125,8 @@ module StackOverflow
|
|
|
126
125
|
@dir_path = File.join(Dir.home, ".stackoverflow")
|
|
127
126
|
@db_version_path = File.join(@dir_path, "db_version")
|
|
128
127
|
|
|
129
|
-
@remote_hostname = "
|
|
130
|
-
@remote_path = "/
|
|
128
|
+
@remote_hostname = "dl.dropbox.com"
|
|
129
|
+
@remote_path = "/u/31130894/"
|
|
131
130
|
end
|
|
132
131
|
|
|
133
132
|
def check_local_dir
|