discogs 1.1.0 → 1.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. data/README.txt +3 -3
  2. data/lib/discogs.rb +1 -1
  3. metadata +1 -1
data/README.txt CHANGED
@@ -29,7 +29,7 @@ And a bin util
29
29
  The first time discogs tries to make an api call, it will look for a YAML file '~/.discogs' or 'RAILS_ROOT/config/discogs.yml'.
30
30
  If it doesn't exist, it will be created, and will need editing. Paste your discogs api key in place of 'CHANGE ME'.
31
31
 
32
- artist = Discog::Artist.new('Broken Social Scene')
32
+ artist = Discogs::Artist.new('Broken Social Scene')
33
33
  puts "
34
34
  Artist: #{artist.name}
35
35
  Members: #{artist.members}
@@ -38,7 +38,7 @@ If it doesn't exist, it will be created, and will need editing. Paste your disc
38
38
  Releases: #{artist.releases.map{|r| r.title }}
39
39
  "
40
40
 
41
- release = Discog::Release.new('188365')
41
+ release = Discogs::Release.new('188365')
42
42
  puts "
43
43
  Title: #{release.title}
44
44
  Labels: #{release.labels}
@@ -53,7 +53,7 @@ If it doesn't exist, it will be created, and will need editing. Paste your disc
53
53
  Extras: #{release.contributors.join(', ')}
54
54
  "
55
55
 
56
- label = Discog::Label.new(ARGV[0])
56
+ label = Discogs::Label.new(ARGV[0])
57
57
  puts "
58
58
  Name: #{label.name}
59
59
  Images: #{label.images}
@@ -18,6 +18,6 @@ require 'search'
18
18
 
19
19
 
20
20
  module Discogs
21
- VERSION = '1.1.0'
21
+ VERSION = '1.1.1'
22
22
  API_VERSION = '1.0'
23
23
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: discogs
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Josh Stephenson