autoremote 0.0.1 → 0.0.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.
- checksums.yaml +4 -4
- data/README.md +6 -6
- data/autoremote-0.0.1.gem +0 -0
- data/autoremote.gemspec +1 -1
- data/lib/autoremote.rb +0 -2
- data/lib/autoremote/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 921f9ecdee065814e56e078ba97cf74f1abdda64
|
|
4
|
+
data.tar.gz: efd98db7e06383c681c4ff08f702b44fce1569c4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 65aa38300a70f9e195d3c40ca8dc0c6872f8573a7ab67a0e6973b144981b6395dc7116fd570d30df5c7265a43f92c5c939aa740463af5de5ca8f64ee868a545a
|
|
7
|
+
data.tar.gz: 7683d2df10cd7dbee9ab8c24a09112b1871f86c309d10f200f039c0c06db67f8750c8357a3a9b36c5a1315252e2a17cdf78a68f6e36cda565b6a3d8605b0d0cb
|
data/README.md
CHANGED
|
@@ -14,11 +14,11 @@ If you don't know how to get your personal key [follow this link](http://joaoapp
|
|
|
14
14
|
## Usage
|
|
15
15
|
|
|
16
16
|
### Executable
|
|
17
|
-
$ autoremote add NAME KEY Save device
|
|
18
|
-
$ autoremote remove NAME Removes device
|
|
19
|
-
$ autoremote list [WITHKEY] Lists all devices
|
|
20
|
-
$ autoremote message NAME MESSAGE Send a message to a device
|
|
21
|
-
$ autoremote register NAME HOST Register this computer to the device
|
|
17
|
+
$ autoremote add NAME KEY Save device
|
|
18
|
+
$ autoremote remove NAME Removes device
|
|
19
|
+
$ autoremote list [WITHKEY] Lists all devices. Displays keys if WITHKEY equals to true, t, yes, y, ja, j or 1
|
|
20
|
+
$ autoremote message NAME MESSAGE Send a message to a device
|
|
21
|
+
$ autoremote register NAME HOST Register this computer to the device
|
|
22
22
|
|
|
23
23
|
### Library
|
|
24
24
|
|
|
@@ -47,7 +47,7 @@ AutoRemote.registerOnDevice( device, host )
|
|
|
47
47
|
|
|
48
48
|
## Contributing
|
|
49
49
|
|
|
50
|
-
1. Fork it ( https://github.com/
|
|
50
|
+
1. Fork it ( https://github.com/AltonV/autoremote/fork )
|
|
51
51
|
2. Create your feature branch (`git checkout -b my-new-feature`)
|
|
52
52
|
3. Commit your changes (`git commit -am 'Add some feature'`)
|
|
53
53
|
4. Push to the branch (`git push origin my-new-feature`)
|
|
Binary file
|
data/autoremote.gemspec
CHANGED
|
@@ -9,7 +9,7 @@ Gem::Specification.new do |spec|
|
|
|
9
9
|
spec.authors = ["Yurij"]
|
|
10
10
|
spec.email = ["yurij@yurijware.com"]
|
|
11
11
|
spec.summary = %q{A library for interacting with autoremote devices http://joaoapps.com/autoremote/}
|
|
12
|
-
spec.homepage = ""
|
|
12
|
+
spec.homepage = "https://github.com/AltonV/autoremote"
|
|
13
13
|
spec.license = "MIT"
|
|
14
14
|
|
|
15
15
|
spec.files = `git ls-files -z`.split("\x0")
|
data/lib/autoremote.rb
CHANGED
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
require "autoremote/version"
|
|
2
2
|
require "autoremote/exceptions"
|
|
3
|
-
# require File.expand_path( File.join( File.dirname( __FILE__ ), 'autoremote', 'version' ) )
|
|
4
|
-
# require File.expand_path( File.join( File.dirname( __FILE__ ), 'autoremote', 'exceptions' ) )
|
|
5
3
|
require 'sqlite3'
|
|
6
4
|
require 'active_record'
|
|
7
5
|
require 'net/http'
|
data/lib/autoremote/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: autoremote
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Yurij
|
|
@@ -79,13 +79,14 @@ files:
|
|
|
79
79
|
- LICENSE.txt
|
|
80
80
|
- README.md
|
|
81
81
|
- Rakefile
|
|
82
|
+
- autoremote-0.0.1.gem
|
|
82
83
|
- autoremote-devices.db
|
|
83
84
|
- autoremote.gemspec
|
|
84
85
|
- bin/autoremote
|
|
85
86
|
- lib/autoremote.rb
|
|
86
87
|
- lib/autoremote/exceptions.rb
|
|
87
88
|
- lib/autoremote/version.rb
|
|
88
|
-
homepage:
|
|
89
|
+
homepage: https://github.com/AltonV/autoremote
|
|
89
90
|
licenses:
|
|
90
91
|
- MIT
|
|
91
92
|
metadata: {}
|