lastgroov 0.0.1 → 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (6) hide show
  1. data/.gitignore +1 -0
  2. data/README +10 -11
  3. data/Rakefile +13 -0
  4. data/VERSION +1 -0
  5. data/lastgroov.gemspec +43 -0
  6. metadata +4 -1
data/.gitignore CHANGED
@@ -1 +1,2 @@
1
1
  last.yml
2
+ *.gem
data/README CHANGED
@@ -1,19 +1,18 @@
1
1
  Scrobble recently played tracks from Grooveshark to last.fm
2
2
 
3
-
4
- Setup
5
- -----
6
- Create last.yaml containing your last.fm login credentials
7
-
8
- Sample 'last.yaml' --->
9
- username : lastfm_username
10
- password : lastfm_password
11
-
3
+ Installing
4
+ ----------
5
+ $ gem install lastgroov
12
6
 
13
7
  Executing
14
- -------
15
- ./lastgroov
8
+ ---------
9
+ Create last.yml containing your last.fm login credentials and then execute 'lastgroov'
10
+
11
+ $ cat > last.yml
12
+ username : lastfm_username
13
+ password : lastfm_password
16
14
 
15
+ $ ./lastgroov
17
16
 
18
17
  Author
19
18
  ------
data/Rakefile ADDED
@@ -0,0 +1,13 @@
1
+ begin
2
+ require 'jeweler'
3
+ Jeweler::Tasks.new do |gemspec|
4
+ gemspec.name = "lastgroov"
5
+ gemspec.summary = "Scrobble recently played tracks from Grooveshark to last.fm"
6
+ gemspec.description = "Now you can scrobble Grooveshark music!"
7
+ gemspec.email = "himanshuchhetri@gmail.com"
8
+ gemspec.homepage = "http://github.com/himanshuc/lastgroov"
9
+ gemspec.authors = ["Himanshu Chhetri"]
10
+ end
11
+ rescue LoadError
12
+ puts "Jeweler not available. Install it with: gem install jeweler"
13
+ end
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 0.1.0
data/lastgroov.gemspec ADDED
@@ -0,0 +1,43 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = %q{lastgroov}
8
+ s.version = "0.1.0"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["Himanshu Chhetri"]
12
+ s.date = %q{2010-01-06}
13
+ s.description = %q{Now you can scrobble Grooveshark music!}
14
+ s.email = %q{himanshuchhetri@gmail.com}
15
+ s.extra_rdoc_files = [
16
+ "README"
17
+ ]
18
+ s.files = [
19
+ ".gitignore",
20
+ "README",
21
+ "Rakefile",
22
+ "VERSION",
23
+ "lastgroov",
24
+ "lastgroov.gemspec",
25
+ "lib/lastgroov.rb"
26
+ ]
27
+ s.homepage = %q{http://github.com/himanshuc/lastgroov}
28
+ s.rdoc_options = ["--charset=UTF-8"]
29
+ s.require_paths = ["lib"]
30
+ s.rubygems_version = %q{1.3.5}
31
+ s.summary = %q{Scrobble recently played tracks from Grooveshark to last.fm}
32
+
33
+ if s.respond_to? :specification_version then
34
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
35
+ s.specification_version = 3
36
+
37
+ if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
38
+ else
39
+ end
40
+ else
41
+ end
42
+ end
43
+
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lastgroov
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Himanshu Chhetri
@@ -24,7 +24,10 @@ extra_rdoc_files:
24
24
  files:
25
25
  - .gitignore
26
26
  - README
27
+ - Rakefile
28
+ - VERSION
27
29
  - lastgroov
30
+ - lastgroov.gemspec
28
31
  - lib/lastgroov.rb
29
32
  has_rdoc: true
30
33
  homepage: http://github.com/himanshuc/lastgroov