cinch-lastfm-ng 0.1.1 → 0.1.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +21 -17
- data/VERSION +1 -1
- data/lib/cinch/plugins/lastfm/version.rb +1 -1
- metadata +1 -2
- data/cinch-lastfm-ng-0.1.0.gem +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 87fe846768e3ce8c99461a7118e11ee70a57d37a
|
4
|
+
data.tar.gz: 2816b3a551187dbc7aaaf673f4cc63be26c63242
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 25fd46bf098d16e97212190e4c73b14279dfef8fbf17e3a6c1e3c3b9d663b57eb73b64457dea9c6a6d0e7d4f91c8c93f1b74b2f8316d7aaa072e21b7968205fd
|
7
|
+
data.tar.gz: cd2ed47035e43564c00cd4c3d50e666218688eac8a190223c476b1be72d27faaa6de4bdd25bce1839d7d9f3716e2c6bdbf384d14bbd975b482d3aa7e87043749
|
data/README.md
CHANGED
@@ -1,5 +1,6 @@
|
|
1
|
-
|
1
|
+
Automode Plugin for Cinch
|
2
2
|
========================
|
3
|
+
Lastfm plugin for Cinch, featuring mulitple commands.
|
3
4
|
Display recently played tracks, search artists, display top
|
4
5
|
artists/albums/tracks from specified time period, search tags, display profile
|
5
6
|
information, etc.
|
@@ -7,12 +8,14 @@ information, etc.
|
|
7
8
|
Usage
|
8
9
|
-----
|
9
10
|
|
10
|
-
|
11
|
+
[![Gem Version](https://badge.fury.io/rb/cinch-lastfm-ng.svg)](https://badge.fury.io/rb/cinch-lastfm-ng)
|
12
|
+
|
13
|
+
install the gem with *gem install cinch-lastfm-ng*, and
|
11
14
|
add it to your bot like so:
|
12
15
|
|
13
16
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ruby
|
14
17
|
require 'cinch'
|
15
|
-
require 'cinch/plugins/
|
18
|
+
require 'cinch/plugins/lastfm'
|
16
19
|
|
17
20
|
bot = Cinch::Bot.new do
|
18
21
|
configure do |c|
|
@@ -21,7 +24,7 @@ bot = Cinch::Bot.new do
|
|
21
24
|
c.realname = 'your realname'
|
22
25
|
c.user = 'your user'
|
23
26
|
c.channels = ['#yourchannel']
|
24
|
-
c.plugins.plugins = [Cinch::Plugins::
|
27
|
+
c.plugins.plugins = [Cinch::Plugins::Lastfm]
|
25
28
|
end
|
26
29
|
end
|
27
30
|
|
@@ -31,25 +34,26 @@ bot.start
|
|
31
34
|
Contained Commands
|
32
35
|
------------------
|
33
36
|
|
34
|
-
**[
|
35
|
-
|
36
|
-
Enable/disable the plugin in the current channel. Default is off.
|
37
|
-
|
38
|
-
**[add (op|halfop|voice) nick user@host]**
|
39
|
-
|
40
|
-
Add nick with user@host to the auto-(op|halfop|voice) list
|
37
|
+
**[np (username)]**
|
38
|
+
Displays last played track from user's saved username, or specified username.
|
41
39
|
|
42
|
-
**[
|
40
|
+
**[(plays|artist) (artistname)]**
|
41
|
+
Displays info, and user playcount if played, of specified artist.
|
43
42
|
|
44
|
-
|
43
|
+
**[top(artists|tracks|albums) (7d|1m|3m|6m|1y|overall)]**
|
44
|
+
Displays user's top artists/tracks/albums from specified period.
|
45
45
|
|
46
|
-
**[
|
46
|
+
**[tag (tag)]**
|
47
|
+
Displays info about specified tag, if it exists.
|
47
48
|
|
48
|
-
|
49
|
+
**[profile (username)]**
|
50
|
+
Display user's or specified user's profile information.
|
49
51
|
|
50
|
-
**[
|
52
|
+
**[fmset (username)]**
|
53
|
+
Store specified username in the database.
|
51
54
|
|
52
|
-
|
55
|
+
**[fmget]**
|
56
|
+
Displays stored username.
|
53
57
|
|
54
58
|
License
|
55
59
|
-------
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.3
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cinch-lastfm-ng
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Lily Jónsdóttir
|
@@ -79,7 +79,6 @@ files:
|
|
79
79
|
- LICENSE
|
80
80
|
- README.md
|
81
81
|
- VERSION
|
82
|
-
- cinch-lastfm-ng-0.1.0.gem
|
83
82
|
- cinch-lastfm-ng.gemspec
|
84
83
|
- lib/cinch/plugins/lastfm.rb
|
85
84
|
- lib/cinch/plugins/lastfm/version.rb
|
data/cinch-lastfm-ng-0.1.0.gem
DELETED
Binary file
|