rename, move to proper folders, separate files
This commit is contained in:
parent
07e45692b0
commit
58534f44a7
5
bin/github_changelog_generator
Normal file
5
bin/github_changelog_generator
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
#!/usr/bin/env ruby
|
||||||
|
|
||||||
|
require 'github_changelog_generator'
|
||||||
|
|
||||||
|
ChangelogGenerator.new.compund_changelog
|
|
@ -1,9 +1,9 @@
|
||||||
#!/usr/bin/env ruby
|
#!/usr/bin/env ruby
|
||||||
|
|
||||||
require 'optparse'
|
|
||||||
require 'github_api'
|
require 'github_api'
|
||||||
require 'json'
|
require 'json'
|
||||||
require 'httparty'
|
require 'httparty'
|
||||||
|
require_relative 'github_changelog_generator/parser'
|
||||||
|
|
||||||
|
|
||||||
class ChangelogGenerator
|
class ChangelogGenerator
|
||||||
|
@ -12,7 +12,7 @@ class ChangelogGenerator
|
||||||
|
|
||||||
def initialize()
|
def initialize()
|
||||||
|
|
||||||
@options = self.parse_options
|
@options = Parser.parse_options
|
||||||
if @options[:token]
|
if @options[:token]
|
||||||
@github = Github.new oauth_token: @options[:token]
|
@github = Github.new oauth_token: @options[:token]
|
||||||
else
|
else
|
||||||
|
@ -24,57 +24,6 @@ class ChangelogGenerator
|
||||||
@tag_times_hash = {}
|
@tag_times_hash = {}
|
||||||
end
|
end
|
||||||
|
|
||||||
def parse_options
|
|
||||||
options = {:tag1 => nil, :tag2 => nil, :format => '%d/%m/%y'}
|
|
||||||
|
|
||||||
parser = OptionParser.new { |opts|
|
|
||||||
opts.banner = 'Usage: changelog_generator.rb -u user_name -p project_name [-t 16-digit-GitHubToken] [options]'
|
|
||||||
opts.on('-u', '--user [USER]', 'your username on GitHub') do |last|
|
|
||||||
options[:user] = last
|
|
||||||
end
|
|
||||||
opts.on('-p', '--project [PROJECT]', 'name of project on GitHub') do |last|
|
|
||||||
options[:project] = last
|
|
||||||
end
|
|
||||||
opts.on('-t', '--token [TOKEN]', 'To make more than 50 requests this app required your OAuth token for GitHub. You can generate it on https://github.com/settings/applications') do |last|
|
|
||||||
options[:token] = last
|
|
||||||
end
|
|
||||||
opts.on('-h', '--help', 'Displays Help') do
|
|
||||||
puts opts
|
|
||||||
exit
|
|
||||||
end
|
|
||||||
opts.on('-v', '--[no-]verbose', 'Run verbosely') do |v|
|
|
||||||
options[:verbose] = v
|
|
||||||
end
|
|
||||||
opts.on('-l', '--last-changes', 'generate log between last 2 tags') do |last|
|
|
||||||
options[:last] = last
|
|
||||||
end
|
|
||||||
opts.on('-f', '--date-format [FORMAT]', 'date format. default is %d/%m/%y') do |last|
|
|
||||||
options[:format] = last
|
|
||||||
end
|
|
||||||
}
|
|
||||||
|
|
||||||
parser.parse!
|
|
||||||
|
|
||||||
#udefined case with 1 parameter:
|
|
||||||
if ARGV[0] && !ARGV[1]
|
|
||||||
puts parser.banner
|
|
||||||
exit
|
|
||||||
end
|
|
||||||
|
|
||||||
if !options[:user] || !options[:project]
|
|
||||||
puts parser.banner
|
|
||||||
exit
|
|
||||||
end
|
|
||||||
|
|
||||||
if ARGV[1]
|
|
||||||
options[:tag1] = ARGV[0]
|
|
||||||
options[:tag2] = ARGV[1]
|
|
||||||
|
|
||||||
end
|
|
||||||
|
|
||||||
options
|
|
||||||
end
|
|
||||||
|
|
||||||
def print_json(json)
|
def print_json(json)
|
||||||
puts JSON.pretty_generate(json)
|
puts JSON.pretty_generate(json)
|
||||||
end
|
end
|
55
lib/github_changelog_generator/parser.rb
Normal file
55
lib/github_changelog_generator/parser.rb
Normal file
|
@ -0,0 +1,55 @@
|
||||||
|
#!/usr/bin/env ruby
|
||||||
|
require 'optparse'
|
||||||
|
|
||||||
|
class Parser
|
||||||
|
def self.parse_options
|
||||||
|
options = {:tag1 => nil, :tag2 => nil, :format => '%d/%m/%y'}
|
||||||
|
|
||||||
|
parser = OptionParser.new { |opts|
|
||||||
|
opts.banner = 'Usage: changelog_generator.rb -u user_name -p project_name [-t 16-digit-GitHubToken] [options]'
|
||||||
|
opts.on('-u', '--user [USER]', 'your username on GitHub') do |last|
|
||||||
|
options[:user] = last
|
||||||
|
end
|
||||||
|
opts.on('-p', '--project [PROJECT]', 'name of project on GitHub') do |last|
|
||||||
|
options[:project] = last
|
||||||
|
end
|
||||||
|
opts.on('-t', '--token [TOKEN]', 'To make more than 50 requests this app required your OAuth token for GitHub. You can generate it on https://github.com/settings/applications') do |last|
|
||||||
|
options[:token] = last
|
||||||
|
end
|
||||||
|
opts.on('-h', '--help', 'Displays Help') do
|
||||||
|
puts opts
|
||||||
|
exit
|
||||||
|
end
|
||||||
|
opts.on('-v', '--[no-]verbose', 'Run verbosely') do |v|
|
||||||
|
options[:verbose] = v
|
||||||
|
end
|
||||||
|
opts.on('-l', '--last-changes', 'generate log between last 2 tags') do |last|
|
||||||
|
options[:last] = last
|
||||||
|
end
|
||||||
|
opts.on('-f', '--date-format [FORMAT]', 'date format. default is %d/%m/%y') do |last|
|
||||||
|
options[:format] = last
|
||||||
|
end
|
||||||
|
}
|
||||||
|
|
||||||
|
parser.parse!
|
||||||
|
|
||||||
|
#udefined case with 1 parameter:
|
||||||
|
if ARGV[0] && !ARGV[1]
|
||||||
|
puts parser.banner
|
||||||
|
exit
|
||||||
|
end
|
||||||
|
|
||||||
|
if !options[:user] || !options[:project]
|
||||||
|
puts parser.banner
|
||||||
|
exit
|
||||||
|
end
|
||||||
|
|
||||||
|
if ARGV[1]
|
||||||
|
options[:tag1] = ARGV[0]
|
||||||
|
options[:tag2] = ARGV[1]
|
||||||
|
|
||||||
|
end
|
||||||
|
|
||||||
|
options
|
||||||
|
end
|
||||||
|
end
|
Loading…
Reference in New Issue
Block a user