scrobbler 0.1.0 → 0.1.1

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/Rakefile CHANGED
@@ -53,16 +53,8 @@ hoe = Hoe.new(GEM_NAME, VERS) do |p|
53
53
  #p.spec_extras = {} # A hash of extra values to set in the gemspec.
54
54
  end
55
55
 
56
-
57
- desc 'Generate website files'
58
- task :website_generate do
59
- Dir['website/**/*.txt'].each do |txt|
60
- sh %{ ruby scripts/txt2html #{txt} > #{txt.gsub(/txt$/,'html')} }
61
- end
62
- end
63
-
64
56
  desc 'Upload website files to rubyforge'
65
- task :website_upload do
57
+ task :website do
66
58
  config = YAML.load(File.read(File.expand_path("~/.rubyforge/user-config.yml")))
67
59
  host = "#{config["username"]}@rubyforge.org"
68
60
  remote_dir = "/var/www/gforge-projects/#{RUBYFORGE_PROJECT}/"
@@ -71,9 +63,6 @@ task :website_upload do
71
63
  sh %{rsync -av #{local_dir}/ #{host}:#{remote_dir}}
72
64
  end
73
65
 
74
- desc 'Generate and upload website files'
75
- task :website => [:website_generate, :website_upload]
76
-
77
66
  desc 'Release the website and new gem version'
78
67
  task :deploy => [:check_version, :website, :release]
79
68
 
@@ -8,7 +8,7 @@ module Scrobbler
8
8
  def connection
9
9
  @connection ||= REST::Connection.new(API_URL)
10
10
  end
11
-
11
+
12
12
  def fetch_and_parse(resource)
13
13
  Hpricot::XML(connection.get(resource))
14
14
  end
@@ -2,7 +2,7 @@ module Scrobbler #:nodoc:
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 0
4
4
  MINOR = 1
5
- TINY = 0
5
+ TINY = 1
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
8
8
  end
metadata CHANGED
@@ -1,10 +1,10 @@
1
1
  --- !ruby/object:Gem::Specification
2
- rubygems_version: 0.9.2
2
+ rubygems_version: 0.9.4
3
3
  specification_version: 1
4
4
  name: scrobbler
5
5
  version: !ruby/object:Gem::Version
6
- version: 0.1.0
7
- date: 2007-05-10 00:00:00 -04:00
6
+ version: 0.1.1
7
+ date: 2007-10-23 00:00:00 -04:00
8
8
  summary: wrapper for audioscrobbler (last.fm) web services
9
9
  require_paths:
10
10
  - lib
@@ -89,10 +89,13 @@ files:
89
89
  - test/unit/user_test.rb
90
90
  test_files:
91
91
  - test/test_helper.rb
92
- rdoc_options: []
93
-
94
- extra_rdoc_files: []
95
-
92
+ rdoc_options:
93
+ - --main
94
+ - README.txt
95
+ extra_rdoc_files:
96
+ - History.txt
97
+ - Manifest.txt
98
+ - README.txt
96
99
  executables: []
97
100
 
98
101
  extensions: []