Html2Feedbooks 1.3.1 → 1.3.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,10 +1,10 @@
1
1
  # -*- encoding: utf-8 -*-
2
2
  $:.push File.expand_path("../lib", __FILE__)
3
- require "html2fb/version"
3
+ require "Html2Feedbooks/version"
4
4
 
5
5
  Gem::Specification.new do |s|
6
6
  s.name = "Html2Feedbooks"
7
- s.version = Html2fb::VERSION
7
+ s.version = HTML2FB::VERSION
8
8
  s.authors = ["Benoit Larroque"]
9
9
  s.email = ["benoit dot larroque at feedbooks dot com"]
10
10
  s.summary = %q{Html2Feedbooks is script to automate basic publishing on feedbooks.com}
@@ -1,11 +1,12 @@
1
1
  #!/usr/bin/env ruby
2
2
  require 'rubygems'
3
+
3
4
  require 'optparse'
4
5
  require 'open-uri'
5
6
  require 'tmpdir'
6
7
  require 'launchy'
7
8
  require 'digest/md5'
8
- require 'lib/html2fb'
9
+ require 'Html2Feedbooks'
9
10
 
10
11
  include HTML2FB
11
12
 
@@ -0,0 +1,7 @@
1
+ require 'Html2Feedbooks/version'
2
+
3
+ require 'Html2Feedbooks/conf'
4
+ require 'Html2Feedbooks/downloader'
5
+ require 'Html2Feedbooks/document'
6
+ require 'Html2Feedbooks/parser'
7
+ require 'Html2Feedbooks/feedbooks'
File without changes
File without changes
@@ -1,4 +1,4 @@
1
- require 'html2fb/app.rb'
1
+ require 'Html2Feedbooks/app'
2
2
  require 'nokogiri'
3
3
  require 'digest/md5'
4
4
 
@@ -1,5 +1,5 @@
1
1
  require 'nokogiri'
2
- require 'html2fb/document.rb'
2
+ require 'Html2Feedbooks/document'
3
3
  require 'progressbar'
4
4
  #require 'ruby-prof'
5
5
  #require 'term/ansicolor'
@@ -0,0 +1,3 @@
1
+ module HTML2FB
2
+ VERSION = "1.3.2"
3
+ end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: Html2Feedbooks
3
3
  version: !ruby/object:Gem::Version
4
- hash: 25
4
+ hash: 31
5
5
  prerelease: false
6
6
  segments:
7
7
  - 1
8
8
  - 3
9
- - 1
10
- version: 1.3.1
9
+ - 2
10
+ version: 1.3.2
11
11
  platform: ruby
12
12
  authors:
13
13
  - Benoit Larroque
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2011-11-29 00:00:00 +01:00
18
+ date: 2012-02-23 00:00:00 +01:00
19
19
  default_executable: html2fb.rb
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency
@@ -94,19 +94,19 @@ extra_rdoc_files: []
94
94
  files:
95
95
  - .gitignore
96
96
  - Gemfile
97
+ - Html2Feedbooks.gemspec
97
98
  - README
98
99
  - Rakefile
99
100
  - bin/html2fb.rb
100
101
  - confs/conf.yaml
101
- - html2fb.gemspec
102
- - lib/html2fb.rb
103
- - lib/html2fb/app.rb
104
- - lib/html2fb/conf.rb
105
- - lib/html2fb/document.rb
106
- - lib/html2fb/downloader.rb
107
- - lib/html2fb/feedbooks.rb
108
- - lib/html2fb/parser.rb
109
- - lib/html2fb/version.rb
102
+ - lib/Html2Feedbooks.rb
103
+ - lib/Html2Feedbooks/app.rb
104
+ - lib/Html2Feedbooks/conf.rb
105
+ - lib/Html2Feedbooks/document.rb
106
+ - lib/Html2Feedbooks/downloader.rb
107
+ - lib/Html2Feedbooks/feedbooks.rb
108
+ - lib/Html2Feedbooks/parser.rb
109
+ - lib/Html2Feedbooks/version.rb
110
110
  - samples/107-h.htm
111
111
  - samples/107-h2.htm
112
112
  - samples/3049-h.htm
@@ -1,7 +0,0 @@
1
- require "html2fb/version"
2
-
3
- require 'html2fb/conf.rb'
4
- require 'html2fb/downloader.rb'
5
- require 'html2fb/document.rb'
6
- require 'html2fb/parser.rb'
7
- require 'html2fb/feedbooks.rb'
@@ -1,3 +0,0 @@
1
- module Html2fb
2
- VERSION = "1.3.1"
3
- end