jarvisbot_songfinder 1.1.0 → 1.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.
- checksums.yaml +4 -4
- data/Gemfile.lock +3 -3
- data/changelog.md +6 -2
- data/lib/jarvisbot_songfinder/providers/spotify_api.rb +1 -1
- data/lib/jarvisbot_songfinder/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 14c13ddbce3fd00e3bfb06878bff82072631bd657709cf978b49af2659deb87c
|
4
|
+
data.tar.gz: c80e29e58609dae13d6b6490ba6640b95da16628fd3575c6d129564a4e568ef9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 80e05c2374d1853b17dffe77fcd6d8ee66ef02ea0c07cdb2a8b06f57b9ffb64fa90eedce91e33c4c582c131361f7daf568ed3fad09e6fff925975d1d437ad0e8
|
7
|
+
data.tar.gz: 515d8c1cfc625d783d2cc021a3a604ba233ca3e954300f82ba3d5a539e116cc418cdb66b87454f303cea5f995bf9c7c3a7de2bea8f2528a1eaf74ee91af3bd4b
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
jarvisbot_songfinder (1.0
|
4
|
+
jarvisbot_songfinder (1.1.0)
|
5
5
|
httparty (~> 0.16)
|
6
6
|
rspotify (~> 2.4.0)
|
7
7
|
yt (~> 0.29.1)
|
@@ -9,7 +9,7 @@ PATH
|
|
9
9
|
GEM
|
10
10
|
remote: https://rubygems.org/
|
11
11
|
specs:
|
12
|
-
activesupport (5.2.2)
|
12
|
+
activesupport (5.2.2.1)
|
13
13
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
14
14
|
i18n (>= 0.7, < 2)
|
15
15
|
minitest (~> 5.1)
|
@@ -17,7 +17,7 @@ GEM
|
|
17
17
|
addressable (2.5.2)
|
18
18
|
public_suffix (>= 2.0.2, < 4.0)
|
19
19
|
coderay (1.1.2)
|
20
|
-
concurrent-ruby (1.1.
|
20
|
+
concurrent-ruby (1.1.5)
|
21
21
|
crack (0.4.3)
|
22
22
|
safe_yaml (~> 1.0.0)
|
23
23
|
diff-lcs (1.3)
|
data/changelog.md
CHANGED
@@ -1,6 +1,10 @@
|
|
1
|
+
## [1.1.1] - March 20, 2019
|
2
|
+
### Changes
|
3
|
+
- Fixed region restricted message having region code in it
|
4
|
+
|
1
5
|
## [1.1.0] - March 20, 2019
|
2
6
|
### Changes
|
3
|
-
- Configuation file can be injected per Query `JarvisbotSongfinder::Query.new("Paramore", config: conf)` where conf is something that responds to `.region` `.length_min` and `.length_max`. If nothing is injected - default app wide config will be used
|
7
|
+
- Configuation file can be injected per Query `JarvisbotSongfinder::Query.new("Paramore", config: conf)` where conf is something that responds to `.region` `.length_min` and `.length_max`. If nothing is injected - default app wide config will be used
|
4
8
|
|
5
9
|
## [1.0.3] - March 14, 2019
|
6
10
|
### Changes
|
@@ -12,7 +16,7 @@
|
|
12
16
|
|
13
17
|
## [1.0.1] - February 01, 2019
|
14
18
|
### Changed
|
15
|
-
- Track length restrictions can now be configured via config.length_max and config.length_min (in seconds)
|
19
|
+
- Track length restrictions can now be configured via config.length_max and config.length_min (in seconds)
|
16
20
|
|
17
21
|
## [1.0.0] - February 01, 2019
|
18
22
|
### Initial release
|
@@ -78,7 +78,7 @@ module JarvisbotSongfinder
|
|
78
78
|
if @track.available_markets.include? @config.region
|
79
79
|
return true
|
80
80
|
else
|
81
|
-
add_error ReplyMessage::Request.region_restricted(@region)
|
81
|
+
add_error ReplyMessage::Request.region_restricted(@config.region)
|
82
82
|
return false
|
83
83
|
end
|
84
84
|
end
|