helix 0.0.2.7.pre → 0.0.2.8.pre
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/README.md +11 -74
- data/lib/helix.rb +2 -0
- data/lib/helix/album.rb +1 -1
- data/lib/helix/base.rb +23 -3
- data/lib/helix/config.rb +38 -4
- data/lib/helix/durationed_media.rb +5 -5
- data/lib/helix/library.rb +3 -1
- data/lib/helix/media.rb +3 -62
- data/lib/helix/restful.rb +89 -0
- data/lib/helix/track.rb +2 -0
- data/lib/helix/uploadable.rb +52 -0
- data/lib/helix/video.rb +42 -16
- data/spec/album_spec.rb +2 -1
- data/spec/base_spec.rb +50 -73
- data/spec/config_spec.rb +82 -1
- data/spec/durationed_media_spec.rb +2 -1
- data/spec/image_spec.rb +2 -1
- data/spec/library_spec.rb +14 -9
- data/spec/media_spec.rb +80 -43
- data/spec/tag_spec.rb +1 -1
- data/spec/track_spec.rb +117 -5
- data/spec/video_spec.rb +188 -8
- metadata +24 -23
metadata
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
name: helix
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease: 8
|
5
|
-
version: 0.0.2.
|
5
|
+
version: 0.0.2.8.pre
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Twistage, Inc
|
@@ -10,7 +10,7 @@ autorequire:
|
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
12
|
|
13
|
-
date: 2013-
|
13
|
+
date: 2013-04-17 00:00:00 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: json
|
@@ -55,36 +55,38 @@ extra_rdoc_files: []
|
|
55
55
|
|
56
56
|
files:
|
57
57
|
- lib/helix.rb
|
58
|
-
- lib/helix/album.rb
|
59
|
-
- lib/helix/track.rb
|
60
|
-
- lib/helix/base.rb
|
61
|
-
- lib/helix/library.rb
|
62
|
-
- lib/helix/media.rb
|
63
|
-
- lib/helix/durationed_media.rb
|
64
58
|
- lib/helix/tag.rb
|
59
|
+
- lib/helix/media.rb
|
65
60
|
- lib/helix/statistics.rb
|
66
|
-
- lib/helix/
|
61
|
+
- lib/helix/library.rb
|
67
62
|
- lib/helix/audio_playlist.rb
|
68
|
-
- lib/helix/
|
63
|
+
- lib/helix/uploadable.rb
|
64
|
+
- lib/helix/durationed_media.rb
|
69
65
|
- lib/helix/playlist.rb
|
66
|
+
- lib/helix/restful.rb
|
67
|
+
- lib/helix/video_playlist.rb
|
70
68
|
- lib/helix/config.rb
|
71
|
-
- lib/helix/
|
69
|
+
- lib/helix/video.rb
|
70
|
+
- lib/helix/track.rb
|
71
|
+
- lib/helix/base.rb
|
72
72
|
- lib/helix/image.rb
|
73
|
+
- lib/helix/album.rb
|
74
|
+
- lib/helix/exceptions.rb
|
75
|
+
- spec/spec_helper.rb
|
76
|
+
- spec/audio_playlist_spec.rb
|
77
|
+
- spec/config_spec.rb
|
78
|
+
- spec/image_spec.rb
|
79
|
+
- spec/media_spec.rb
|
73
80
|
- spec/durationed_media_spec.rb
|
74
|
-
- spec/
|
81
|
+
- spec/album_spec.rb
|
75
82
|
- spec/statistics_spec.rb
|
76
|
-
- spec/
|
83
|
+
- spec/tag_spec.rb
|
84
|
+
- spec/video_playlist_spec.rb
|
77
85
|
- spec/track_spec.rb
|
86
|
+
- spec/video_spec.rb
|
78
87
|
- spec/playlist_spec.rb
|
79
|
-
- spec/image_spec.rb
|
80
88
|
- spec/library_spec.rb
|
81
|
-
- spec/
|
82
|
-
- spec/audio_playlist_spec.rb
|
83
|
-
- spec/video_spec.rb
|
84
|
-
- spec/tag_spec.rb
|
85
|
-
- spec/album_spec.rb
|
86
|
-
- spec/video_playlist_spec.rb
|
87
|
-
- spec/media_spec.rb
|
89
|
+
- spec/base_spec.rb
|
88
90
|
- LICENSE
|
89
91
|
- README.md
|
90
92
|
homepage: https://github.com/Twistage/helix/
|
@@ -110,10 +112,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
110
112
|
requirements: []
|
111
113
|
|
112
114
|
rubyforge_project:
|
113
|
-
rubygems_version: 1.8.
|
115
|
+
rubygems_version: 1.8.11
|
114
116
|
signing_key:
|
115
117
|
specification_version: 3
|
116
118
|
summary: Wrapper library for the video API
|
117
119
|
test_files: []
|
118
120
|
|
119
|
-
has_rdoc: yard
|