remove httpparty from gem

This commit is contained in:
Petr Korolev 2014-11-18 15:20:57 +02:00
parent a5cb604bc1
commit fadae1b714
4 changed files with 3 additions and 12 deletions

View File

@ -1,4 +1,3 @@
source 'https://rubygems.org' source 'https://rubygems.org'
gem 'github_api' gem 'github_api'
gem 'httparty'
gem 'colorize' gem 'colorize'

View File

@ -16,10 +16,6 @@ GEM
nokogiri (~> 1.6.3) nokogiri (~> 1.6.3)
oauth2 oauth2
hashie (3.3.1) hashie (3.3.1)
httparty (0.13.2)
json (~> 1.8)
multi_xml (>= 0.5.2)
json (1.8.1)
jwt (1.0.0) jwt (1.0.0)
mini_portile (0.6.1) mini_portile (0.6.1)
multi_json (1.10.1) multi_json (1.10.1)
@ -42,4 +38,3 @@ PLATFORMS
DEPENDENCIES DEPENDENCIES
colorize colorize
github_api github_api
httparty

View File

@ -1,5 +1,4 @@
#! /usr/bin/env ruby #! /usr/bin/env ruby
require 'github_changelog_generator' require 'github_changelog_generator'
GitHubChangelogGenerator::ChangelogGenerator.new.compund_changelog GitHubChangelogGenerator::ChangelogGenerator.new.compund_changelog

View File

@ -2,7 +2,6 @@
require 'github_api' require 'github_api'
require 'json' require 'json'
require 'httparty'
require 'colorize' require 'colorize'
require_relative 'github_changelog_generator/parser' require_relative 'github_changelog_generator/parser'
require_relative 'github_changelog_generator/version' require_relative 'github_changelog_generator/version'
@ -12,7 +11,7 @@ module GitHubChangelogGenerator
attr_accessor :options, :all_tags, :github attr_accessor :options, :all_tags, :github
def initialize() def initialize
@options = Parser.parse_options @options = Parser.parse_options
@ -372,8 +371,7 @@ module GitHubChangelogGenerator
end end
if __FILE__ == $0 if __FILE__ == $0
changelog_generator = ChangelogGenerator.new GitHubChangelogGenerator::ChangelogGenerator.new.compund_changelog
changelog_generator.compund_changelog
end end
end end