Sha256: 4b23f8a6f3c6aa3418a5ad1186ea4ccfbafb772facd45ccc25ebced79ff89419
Contents?: true
Size: 1.24 KB
Versions: 1
Compression:
Stored size: 1.24 KB
Contents
# Youtube Converter for Ruby # Description: Downloads a file from a YT URL transcodes them to MP3 and places it into a choosen folder # Class: youtube_dlhelper # Work: This file contains a semantic version number # # Copyright (C) 2013-2015 Sascha Manns <samannsml@directbox.com> # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. # Class for versioning class YoutubeDlhelperVersion # Module for versioning module Version # Major version MAJOR = 0 # Minor version MINOR = 1 # Patch version PATCH = 9 # Build version BUILD = 4 # combined string with the full version STRING = [MAJOR, MINOR, PATCH, BUILD].compact.join('.') end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
youtube_dlhelper-0.1.9.4 | lib/youtube_dlhelper/version.rb |