Kouhei Sutou
null+****@clear*****
Fri Jan 3 23:21:50 JST 2014
Kouhei Sutou 2014-01-03 23:21:50 +0900 (Fri, 03 Jan 2014) New Revision: 8cb84dd006a4318a82f9f969513925bbf95c658a https://github.com/ranguba/chupa-text/commit/8cb84dd006a4318a82f9f969513925bbf95c658a Message: Require chupa-text files in chupa-text.rb Modified files: lib/chupa-text.rb lib/chupa-text/configuration-loader.rb lib/chupa-text/configuration.rb lib/chupa-text/data.rb lib/chupa-text/decomposer.rb lib/chupa-text/decomposers.rb lib/chupa-text/extractor.rb lib/chupa-text/mime-type.rb Modified: lib/chupa-text.rb (+7 -3) =================================================================== --- lib/chupa-text.rb 2014-01-03 21:19:31 +0900 (71bf0f8) +++ lib/chupa-text.rb 2014-01-03 23:21:50 +0900 (78517b2) @@ -16,11 +16,15 @@ require "chupa-text/version" -require "chupa-text/extractor" +require "chupa-text/configuration" +require "chupa-text/configuration-loader" +require "chupa-text/data" require "chupa-text/decomposer" +require "chupa-text/decomposer-registry" require "chupa-text/decomposers" +require "chupa-text/extractor" require "chupa-text/formatters" -require "chupa-text/configuration" -require "chupa-text/configuration-loader" +require "chupa-text/mime-type" +require "chupa-text/mime-type-registry" require "chupa-text/command" Modified: lib/chupa-text/configuration-loader.rb (+0 -2) =================================================================== --- lib/chupa-text/configuration-loader.rb 2014-01-03 21:19:31 +0900 (7072444) +++ lib/chupa-text/configuration-loader.rb 2014-01-03 23:21:50 +0900 (7c9452b) @@ -16,8 +16,6 @@ require "pathname" -require "chupa-text/configuration" - module ChupaText class ConfigurationLoader attr_reader :decomposer Modified: lib/chupa-text/configuration.rb (+0 -2) =================================================================== --- lib/chupa-text/configuration.rb 2014-01-03 21:19:31 +0900 (8795f6a) +++ lib/chupa-text/configuration.rb 2014-01-03 23:21:50 +0900 (ff6d18a) @@ -14,8 +14,6 @@ # License along with this library; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA -require "chupa-text/mime-type" - module ChupaText class Configuration attr_reader :decomposer Modified: lib/chupa-text/data.rb (+0 -2) =================================================================== --- lib/chupa-text/data.rb 2014-01-03 21:19:31 +0900 (10a3f28) +++ lib/chupa-text/data.rb 2014-01-03 23:21:50 +0900 (89733c4) @@ -17,8 +17,6 @@ require "uri" require "open-uri" -require "chupa-text/mime-type" - module ChupaText class Data attr_accessor :body Modified: lib/chupa-text/decomposer.rb (+0 -2) =================================================================== --- lib/chupa-text/decomposer.rb 2014-01-03 21:19:31 +0900 (8c2169a) +++ lib/chupa-text/decomposer.rb 2014-01-03 23:21:50 +0900 (6bd45ab) @@ -14,8 +14,6 @@ # License along with this library; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA -require "chupa-text/decomposer-registry" - module ChupaText class Decomposer class << self Modified: lib/chupa-text/decomposers.rb (+0 -2) =================================================================== --- lib/chupa-text/decomposers.rb 2014-01-03 21:19:31 +0900 (16fb9ec) +++ lib/chupa-text/decomposers.rb 2014-01-03 23:21:50 +0900 (8e4a63e) @@ -14,8 +14,6 @@ # License along with this library; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA -require "chupa-text/decomposer-registry" - module ChupaText module Decomposers class << self Modified: lib/chupa-text/extractor.rb (+0 -2) =================================================================== --- lib/chupa-text/extractor.rb 2014-01-03 21:19:31 +0900 (45b1066) +++ lib/chupa-text/extractor.rb 2014-01-03 23:21:50 +0900 (68e37bd) @@ -14,8 +14,6 @@ # License along with this library; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA -require "chupa-text/data" - module ChupaText class Extractor def initialize Modified: lib/chupa-text/mime-type.rb (+0 -2) =================================================================== --- lib/chupa-text/mime-type.rb 2014-01-03 21:19:31 +0900 (023c69d) +++ lib/chupa-text/mime-type.rb 2014-01-03 23:21:50 +0900 (3e67ae7) @@ -14,8 +14,6 @@ # License along with this library; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA -require "chupa-text/mime-type-registry" - module ChupaText module MIMEType class << self -------------- next part -------------- HTML����������������������������...Download