Class: EMaily::SkyDrive
- Inherits:
-
Object
- Object
- EMaily::SkyDrive
- Defined in:
- lib/emaily/skydrive.rb
Constant Summary collapse
- LOGIN_URI =
"http://login.live.com/login.srf?wa=wsignin1.0&rpsnv=10&ct=1242028992&rver=5.5.4177.0&wp=MBI&wreply=http:%2F%2Fskydrive.live.com%2Fwelcome.aspx%3Fmkt%3Den-us&lc=1033&id=250206&mkt=en-US"
Instance Method Summary collapse
-
#initialize ⇒ SkyDrive
constructor
A new instance of SkyDrive.
- #login(username, password) ⇒ Object
- #upload(files) ⇒ Object
Constructor Details
#initialize ⇒ SkyDrive
Returns a new instance of SkyDrive.
6 7 8 |
# File 'lib/emaily/skydrive.rb', line 6 def initialize end |
Instance Method Details
#login(username, password) ⇒ Object
10 11 12 |
# File 'lib/emaily/skydrive.rb', line 10 def login(username,password) #TBI end |
#upload(files) ⇒ Object
14 15 16 17 18 |
# File 'lib/emaily/skydrive.rb', line 14 def upload(files) files.each do |file| #TBI end end |