ebook_generator 0.0.4 → 0.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Changelog.md +5 -1
- data/lib/ebook_generator/version.rb +1 -1
- data/lib/ebook_generator.rb +2 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9bd956ba768bbc1c3c607b1b4f3dd7aca5108190
|
4
|
+
data.tar.gz: 84b1f546c5ffc29dc60d82b76d731897058ba052
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e2a11d62c96e321cd61e51bd951a9cc34a604b8c6bdeeedd4bafc954a03bde6f83f6c2d07124565ba03120dc02efd2495f29c9b1fa2bb3ded6bce29d87807752
|
7
|
+
data.tar.gz: ba678ffba0836f3e65daede396bf2edcde3d6e485e4055e0e3c1c148b2d17e24a78e41071f3e18916160247827d0f999ffb929a1ae9f5a8c5567065eaa73ed37
|
data/Changelog.md
CHANGED
@@ -1,6 +1,10 @@
|
|
1
1
|
# EbookGenerator Changelog
|
2
2
|
|
3
|
-
## 0.0.
|
3
|
+
## 0.0.5 (2014-04-30)
|
4
|
+
|
5
|
+
- Removed code to copy stylesheet, will wait until future version and create it dynamically
|
6
|
+
|
7
|
+
## 0.0.4 (2014-04-30)
|
4
8
|
|
5
9
|
- Added missing file "zip_file_processor"
|
6
10
|
- Refactored code to use builder instead of strings
|
data/lib/ebook_generator.rb
CHANGED
@@ -39,7 +39,8 @@ module EbookGenerator
|
|
39
39
|
end
|
40
40
|
|
41
41
|
def self.copy_style(path)
|
42
|
-
|
42
|
+
# Removed until functionality to dynamically create the stylesheet is in place
|
43
|
+
#FileUtils.cp Rails.root.to_s + "/app/ebook/style.css", path
|
43
44
|
end
|
44
45
|
|
45
46
|
def self.generate_sections(path, attrs)
|