fronkin_bandcamp 0.2.0
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 +7 -0
- data/.gitignore +11 -0
- data/.pryrc +9 -0
- data/.rspec +3 -0
- data/.travis.yml +5 -0
- data/CODE_OF_CONDUCT.md +30 -0
- data/Gemfile +6 -0
- data/Gemfile.lock +52 -0
- data/LICENSE.txt +21 -0
- data/README.md +123 -0
- data/Rakefile +6 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/fronkin_bandcamp.gemspec +32 -0
- data/lib/fronkin_bandcamp.rb +5 -0
- data/lib/fronkin_bandcamp/artist.rb +9 -0
- data/lib/fronkin_bandcamp/format.rb +20 -0
- data/lib/fronkin_bandcamp/release.rb +31 -0
- data/lib/fronkin_bandcamp/scraper.rb +26 -0
- data/lib/fronkin_bandcamp/track.rb +3 -0
- data/lib/fronkin_bandcamp/version.rb +3 -0
- metadata +163 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 8e8ff4fcbb3ca9a1cda11123ecad44248771c43f
|
4
|
+
data.tar.gz: 8e73aee2de682a3d8526ec8477b0e7f8ee207625
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: eb48101c98cdeea7c180e8e8e1acee62f4ff5db4c4f952c701b73deab50172627e88eedcbd63564f944169735d27236b0738312865eada0c9e57c171ab6a8519
|
7
|
+
data.tar.gz: 0d022735c04cccc72e398274d049a432639eec0913f9102bd2e9da4153288fbb5606800d93fde2a68be4400e17d1be0b15fe341dd901aded915f99da02d38afc
|
data/.gitignore
ADDED
data/.pryrc
ADDED
data/.rspec
ADDED
data/.travis.yml
ADDED
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,30 @@
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
2
|
+
|
3
|
+
## Mantras
|
4
|
+
|
5
|
+
* **Don't be a shithead, check yo self before you wreck yo self**
|
6
|
+
* Be respectful of differing viewpoints and experiences
|
7
|
+
* Gracefully accept constructive criticism
|
8
|
+
* Focus on what is best for the community
|
9
|
+
* Showing empathy towards other community members
|
10
|
+
* Bring da ruckus
|
11
|
+
|
12
|
+
## Responsibilities
|
13
|
+
|
14
|
+
Project maintainers are responsible for clarifying the standards of acceptable
|
15
|
+
behavior and are expected to take appropriate and fair corrective action in
|
16
|
+
response to any instances of unacceptable behavior.
|
17
|
+
|
18
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
19
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
20
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
21
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
22
|
+
threatening, offensive, or harmful.
|
23
|
+
|
24
|
+
## Attribution
|
25
|
+
|
26
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
|
27
|
+
available at [http://contributor-covenant.org/version/1/4][version]
|
28
|
+
|
29
|
+
[homepage]: http://contributor-covenant.org
|
30
|
+
[version]: http://contributor-covenant.org/version/1/4/
|
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
@@ -0,0 +1,52 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
fronkin_bandcamp (0.1.0)
|
5
|
+
nokogiri (~> 1.8)
|
6
|
+
|
7
|
+
GEM
|
8
|
+
remote: https://rubygems.org/
|
9
|
+
specs:
|
10
|
+
awesome_print (1.8.0)
|
11
|
+
byebug (10.0.2)
|
12
|
+
coderay (1.1.2)
|
13
|
+
diff-lcs (1.3)
|
14
|
+
method_source (0.9.0)
|
15
|
+
mini_portile2 (2.3.0)
|
16
|
+
nokogiri (1.8.4)
|
17
|
+
mini_portile2 (~> 2.3.0)
|
18
|
+
pry (0.11.3)
|
19
|
+
coderay (~> 1.1.0)
|
20
|
+
method_source (~> 0.9.0)
|
21
|
+
pry-byebug (3.6.0)
|
22
|
+
byebug (~> 10.0)
|
23
|
+
pry (~> 0.10)
|
24
|
+
rake (10.4.2)
|
25
|
+
rspec (3.7.0)
|
26
|
+
rspec-core (~> 3.7.0)
|
27
|
+
rspec-expectations (~> 3.7.0)
|
28
|
+
rspec-mocks (~> 3.7.0)
|
29
|
+
rspec-core (3.7.1)
|
30
|
+
rspec-support (~> 3.7.0)
|
31
|
+
rspec-expectations (3.7.0)
|
32
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
33
|
+
rspec-support (~> 3.7.0)
|
34
|
+
rspec-mocks (3.7.0)
|
35
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
36
|
+
rspec-support (~> 3.7.0)
|
37
|
+
rspec-support (3.7.1)
|
38
|
+
|
39
|
+
PLATFORMS
|
40
|
+
ruby
|
41
|
+
|
42
|
+
DEPENDENCIES
|
43
|
+
awesome_print (~> 1.8)
|
44
|
+
bundler (~> 1.16)
|
45
|
+
fronkin_bandcamp!
|
46
|
+
pry (~> 0.11)
|
47
|
+
pry-byebug (~> 3.6)
|
48
|
+
rake (~> 10.0)
|
49
|
+
rspec (~> 3.7)
|
50
|
+
|
51
|
+
BUNDLED WITH
|
52
|
+
1.16.2
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2018 Fronk Lom Lom
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,123 @@
|
|
1
|
+
# FronkinBandcamp
|
2
|
+
|
3
|
+
Maybe you thought you'd flop your way to a championship.
|
4
|
+
|
5
|
+
Maybe you blame the refs for blowing calls.
|
6
|
+
|
7
|
+
Maybe you assumed this was the year.
|
8
|
+
|
9
|
+
**BALL DON'T LIE**
|
10
|
+
|
11
|
+
This is a simple webscraper for bandcamp. Read through the entire README
|
12
|
+
before you try anything, thanks!
|
13
|
+
|
14
|
+
## I. Installation
|
15
|
+
|
16
|
+
Add this line to your application's Gemfile:
|
17
|
+
|
18
|
+
```ruby
|
19
|
+
gem 'fronkin_bandcamp'
|
20
|
+
```
|
21
|
+
|
22
|
+
And then execute:
|
23
|
+
|
24
|
+
$ bundle
|
25
|
+
|
26
|
+
Or install it yourself as:
|
27
|
+
|
28
|
+
$ gem install fronkin_bandcamp
|
29
|
+
|
30
|
+
## II. Usage
|
31
|
+
|
32
|
+
### Initialization
|
33
|
+
|
34
|
+
Given a bandcamp release URL, initialize a `Scraper` object like so:
|
35
|
+
|
36
|
+
```ruby
|
37
|
+
url = 'https://clevergirl.bandcamp.com/album/no-drum-and-bass-in-the-jazz-room'
|
38
|
+
scraper = FronkinBandcamp::Scraper.new(url)
|
39
|
+
```
|
40
|
+
|
41
|
+
A `FronkingBandcamp::Scraper` has two public methods `#artist`
|
42
|
+
and `#release`, each with their own attributes.
|
43
|
+
|
44
|
+
### Artist
|
45
|
+
|
46
|
+
```ruby
|
47
|
+
scraper.artist.name # Clever Girl
|
48
|
+
scraper.artist.location # London, UK
|
49
|
+
scraper.artist.photo # Artist photo
|
50
|
+
```
|
51
|
+
|
52
|
+
### Release
|
53
|
+
|
54
|
+
```ruby
|
55
|
+
scraper.release.title # No Drum and Bass in the Jazz Room
|
56
|
+
scraper.release.date # 20140423
|
57
|
+
scraper.release.cover # Release cover
|
58
|
+
scraper.release.tracks
|
59
|
+
|
60
|
+
[
|
61
|
+
[0] #<Struct:FronkinBandcamp::Track:0x7fe59082b158
|
62
|
+
duration = "05:28",
|
63
|
+
number = 1,
|
64
|
+
title = "Elm"
|
65
|
+
>,
|
66
|
+
[1] #<Struct:FronkinBandcamp::Track:0x7fe59082b0e0
|
67
|
+
duration = "06:09",
|
68
|
+
number = 2,
|
69
|
+
title = "ohmygodiloveyoupleasedontleaveme"
|
70
|
+
>,
|
71
|
+
[2] #<Struct:FronkinBandcamp::Track:0x7fe59082b0b8
|
72
|
+
duration = "05:07",
|
73
|
+
number = 3,
|
74
|
+
title = "Sleepyhead Symphony"
|
75
|
+
>,
|
76
|
+
[3] #<Struct:FronkinBandcamp::Track:0x7fe59082b040
|
77
|
+
duration = "05:28",
|
78
|
+
number = 4,
|
79
|
+
title = "Teleblister"
|
80
|
+
>
|
81
|
+
]
|
82
|
+
|
83
|
+
scraper.release.tags # ["world", "London"]
|
84
|
+
|
85
|
+
scraper.release.formats
|
86
|
+
|
87
|
+
[
|
88
|
+
[0] #<FronkinBandcamp::Format:0x007f864913c500 @name="Subcription",
|
89
|
+
@product="Streaming + Download", @description=nil, @product_images=[],
|
90
|
+
@price="Buy Digital Album $5 USD or more", @is_available=true>
|
91
|
+
]
|
92
|
+
```
|
93
|
+
|
94
|
+
## III. Miscellaneous
|
95
|
+
|
96
|
+
### TODO
|
97
|
+
|
98
|
+
* ~~Scrape release formats~~
|
99
|
+
* Scrape release fans
|
100
|
+
* Add CLI
|
101
|
+
|
102
|
+
### Development
|
103
|
+
|
104
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
105
|
+
|
106
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
107
|
+
|
108
|
+
### Contributing
|
109
|
+
|
110
|
+
|
111
|
+
Is something broken? Does this README need to be updated? Open an issue,
|
112
|
+
or even better, help me fix my shit! Suggestions and improvements are
|
113
|
+
welcome!
|
114
|
+
|
115
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/FTLam11/fronkin_bandcamp_scraper. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
116
|
+
|
117
|
+
### License
|
118
|
+
|
119
|
+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
120
|
+
|
121
|
+
### Code of Conduct
|
122
|
+
|
123
|
+
Everyone interacting in the FronkinBandcampScraper project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/FTLam11/fronkin_bandcamp_scraper/blob/master/CODE_OF_CONDUCT.md).
|
data/Rakefile
ADDED
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "fronkin_bandcamp"
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
# require "pry"
|
11
|
+
# Pry.start
|
12
|
+
|
13
|
+
require "irb"
|
14
|
+
IRB.start(__FILE__)
|
data/bin/setup
ADDED
@@ -0,0 +1,32 @@
|
|
1
|
+
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'fronkin_bandcamp/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = 'fronkin_bandcamp'
|
8
|
+
spec.version = FronkinBandcamp::VERSION
|
9
|
+
spec.authors = ['Fronk Lom Lom']
|
10
|
+
spec.email = ['ryzingsun11@yahoo.com']
|
11
|
+
|
12
|
+
spec.summary = 'This gem is a convenient web scraper for Bandcamp releases.'
|
13
|
+
spec.description = 'YO, this gem is a convenient web scraper for Bandcamp releases. Currently, it scrapes artist and release information.'
|
14
|
+
spec.homepage = 'https://github.com/FTLam11/fronkin_bandcamp_scraper'
|
15
|
+
spec.license = 'MIT'
|
16
|
+
|
17
|
+
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
18
|
+
f.match(%r{^(test|spec|features)/})
|
19
|
+
end
|
20
|
+
spec.bindir = 'exe'
|
21
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
22
|
+
spec.require_paths = ['lib']
|
23
|
+
|
24
|
+
spec.add_dependency 'nokogiri', '~> 1.8'
|
25
|
+
|
26
|
+
spec.add_development_dependency 'bundler', '~> 1.16'
|
27
|
+
spec.add_development_dependency 'rake', '~> 10.0'
|
28
|
+
spec.add_development_dependency 'rspec', '~> 3.7'
|
29
|
+
spec.add_development_dependency 'pry', '~> 0.11'
|
30
|
+
spec.add_development_dependency 'pry-byebug', '~> 3.6'
|
31
|
+
spec.add_development_dependency 'awesome_print', '~> 1.8'
|
32
|
+
end
|
@@ -0,0 +1,20 @@
|
|
1
|
+
module FronkinBandcamp
|
2
|
+
class Format
|
3
|
+
attr_accessor :name, :product, :description, :product_images, :price, :is_available
|
4
|
+
|
5
|
+
def initialize(choice)
|
6
|
+
@name = sanitize(choice.css('h3.hd span').text) || 'Subcription'
|
7
|
+
@product = choice.css('h3.hd div.secondaryText').text.strip
|
8
|
+
@description = sanitize(choice.css('div.bd').text)
|
9
|
+
@product_images = choice.css('a.popupImage').map { |anchor| anchor.attribute('href').value }
|
10
|
+
@price = sanitize(choice.css('div.ft h4.main-button').text) || sanitize(choice.css('h4.ft.compound-button').text)
|
11
|
+
@is_available = choice.css('div.ft h4.notable').text.strip != 'Sold Out' ? true : false
|
12
|
+
end
|
13
|
+
|
14
|
+
private
|
15
|
+
|
16
|
+
def sanitize(text)
|
17
|
+
text.strip.gsub!(/\n\s+/, ' ')
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
@@ -0,0 +1,31 @@
|
|
1
|
+
require 'fronkin_bandcamp/track'
|
2
|
+
require 'fronkin_bandcamp/format'
|
3
|
+
|
4
|
+
module FronkinBandcamp
|
5
|
+
class Release
|
6
|
+
attr_accessor :doc, :title, :date, :cover, :tracks, :tags, :formats, :fans
|
7
|
+
|
8
|
+
def initialize(doc)
|
9
|
+
@doc = doc
|
10
|
+
@title = doc.css('div#name-section h2.trackTitle').text.strip
|
11
|
+
@date = doc.css('div.tralbumData.tralbum-credits meta').attribute('content').value
|
12
|
+
@cover = doc.css('div#tralbumArt a.popupImage').attribute('href').value
|
13
|
+
@tracks = scrape_tracks
|
14
|
+
@tags = doc.css('div.tralbumData.tralbum-tags a.tag').map(&:text)
|
15
|
+
@formats = scrape_formats
|
16
|
+
end
|
17
|
+
|
18
|
+
private
|
19
|
+
|
20
|
+
def scrape_tracks
|
21
|
+
track_titles = doc.css('table#track_table td.title-col span[itemprop="name"]').map(&:text)
|
22
|
+
track_durations = doc.css('table#track_table td.title-col span.time').map { |node| node.text.strip }
|
23
|
+
track_titles.zip(track_durations).map.with_index { |t, idx| Track.new(idx + 1, t[0], t[1]) }
|
24
|
+
end
|
25
|
+
|
26
|
+
def scrape_formats
|
27
|
+
format_choices = doc.css('li.buyItem')
|
28
|
+
format_choices.map { |choice| Format.new(choice) }
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
@@ -0,0 +1,26 @@
|
|
1
|
+
require 'open-uri'
|
2
|
+
require 'nokogiri'
|
3
|
+
require 'fronkin_bandcamp/release'
|
4
|
+
require 'fronkin_bandcamp/artist'
|
5
|
+
|
6
|
+
module FronkinBandcamp
|
7
|
+
class Scraper
|
8
|
+
attr_reader :doc, :release, :artist
|
9
|
+
|
10
|
+
def initialize(url)
|
11
|
+
@doc = Nokogiri::HTML(open(url), nil, 'utf-8') { |config| config.noblanks }
|
12
|
+
scrape
|
13
|
+
end
|
14
|
+
|
15
|
+
private
|
16
|
+
|
17
|
+
def scrape
|
18
|
+
@release = Release.new(doc)
|
19
|
+
@artist = Artist.new do |artist|
|
20
|
+
artist.name = doc.css('div#bio-container span.title').text
|
21
|
+
artist.photo = doc.css('div#bio-container div.bio-pic a.popupImage').attribute('href').value
|
22
|
+
artist.location = doc.css('div#bio-container span.location').text
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
metadata
ADDED
@@ -0,0 +1,163 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: fronkin_bandcamp
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.2.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Fronk Lom Lom
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2018-07-09 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: nokogiri
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.8'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.8'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: bundler
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '1.16'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '1.16'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rake
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '10.0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '10.0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: rspec
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '3.7'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '3.7'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: pry
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0.11'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0.11'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: pry-byebug
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - "~>"
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '3.6'
|
90
|
+
type: :development
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - "~>"
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '3.6'
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: awesome_print
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - "~>"
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: '1.8'
|
104
|
+
type: :development
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - "~>"
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: '1.8'
|
111
|
+
description: YO, this gem is a convenient web scraper for Bandcamp releases. Currently,
|
112
|
+
it scrapes artist and release information.
|
113
|
+
email:
|
114
|
+
- ryzingsun11@yahoo.com
|
115
|
+
executables: []
|
116
|
+
extensions: []
|
117
|
+
extra_rdoc_files: []
|
118
|
+
files:
|
119
|
+
- ".gitignore"
|
120
|
+
- ".pryrc"
|
121
|
+
- ".rspec"
|
122
|
+
- ".travis.yml"
|
123
|
+
- CODE_OF_CONDUCT.md
|
124
|
+
- Gemfile
|
125
|
+
- Gemfile.lock
|
126
|
+
- LICENSE.txt
|
127
|
+
- README.md
|
128
|
+
- Rakefile
|
129
|
+
- bin/console
|
130
|
+
- bin/setup
|
131
|
+
- fronkin_bandcamp.gemspec
|
132
|
+
- lib/fronkin_bandcamp.rb
|
133
|
+
- lib/fronkin_bandcamp/artist.rb
|
134
|
+
- lib/fronkin_bandcamp/format.rb
|
135
|
+
- lib/fronkin_bandcamp/release.rb
|
136
|
+
- lib/fronkin_bandcamp/scraper.rb
|
137
|
+
- lib/fronkin_bandcamp/track.rb
|
138
|
+
- lib/fronkin_bandcamp/version.rb
|
139
|
+
homepage: https://github.com/FTLam11/fronkin_bandcamp_scraper
|
140
|
+
licenses:
|
141
|
+
- MIT
|
142
|
+
metadata: {}
|
143
|
+
post_install_message:
|
144
|
+
rdoc_options: []
|
145
|
+
require_paths:
|
146
|
+
- lib
|
147
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
148
|
+
requirements:
|
149
|
+
- - ">="
|
150
|
+
- !ruby/object:Gem::Version
|
151
|
+
version: '0'
|
152
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
153
|
+
requirements:
|
154
|
+
- - ">="
|
155
|
+
- !ruby/object:Gem::Version
|
156
|
+
version: '0'
|
157
|
+
requirements: []
|
158
|
+
rubyforge_project:
|
159
|
+
rubygems_version: 2.5.1
|
160
|
+
signing_key:
|
161
|
+
specification_version: 4
|
162
|
+
summary: This gem is a convenient web scraper for Bandcamp releases.
|
163
|
+
test_files: []
|