sweetie 0.0.2 → 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (65) hide show
  1. data/.gitignore +6 -0
  2. data/.travis.yml +2 -0
  3. data/Rakefile +4 -5
  4. data/bin/sweetie +3 -3
  5. data/lib/sweetie/conversion.rb +131 -0
  6. data/lib/sweetie.rb +4 -93
  7. data/spec/source/_config.yml +18 -0
  8. data/spec/source/site/404.html +1 -0
  9. data/spec/source/site/about.html +66 -0
  10. data/spec/source/site/archiv.html +70 -0
  11. data/spec/source/site/atom.xml +60 -0
  12. data/spec/source/site/colophon.html +73 -0
  13. data/spec/source/site/contact.html +67 -0
  14. data/spec/source/site/css/config.rb +24 -0
  15. data/spec/source/site/css/sass/site.sass +180 -0
  16. data/spec/source/site/css/stylesheets/iphone.css +17 -0
  17. data/spec/source/site/css/stylesheets/site.css +246 -0
  18. data/spec/source/site/css/stylesheets/syntax.css +60 -0
  19. data/spec/source/site/follow.html +79 -0
  20. data/spec/source/site/images/2_avatars.gif +0 -0
  21. data/spec/source/site/images/favicon.png +0 -0
  22. data/spec/source/site/images/images-global/matthias_guenther.jpg +0 -0
  23. data/spec/source/site/images/images-global/matthias_guenther_thumbnail_normal.jpg +0 -0
  24. data/spec/source/site/images/images-global/matthias_guenther_thumbnail_small.jpg +0 -0
  25. data/spec/source/site/images/images-global/zoom/closebox.png +0 -0
  26. data/spec/source/site/images/images-global/zoom/zoom-caption-fill.png +0 -0
  27. data/spec/source/site/images/images-global/zoom/zoom-caption-l.png +0 -0
  28. data/spec/source/site/images/images-global/zoom/zoom-caption-r.png +0 -0
  29. data/spec/source/site/images/images-global/zoom/zoom-shadow1.png +0 -0
  30. data/spec/source/site/images/images-global/zoom/zoom-shadow2.png +0 -0
  31. data/spec/source/site/images/images-global/zoom/zoom-shadow3.png +0 -0
  32. data/spec/source/site/images/images-global/zoom/zoom-shadow4.png +0 -0
  33. data/spec/source/site/images/images-global/zoom/zoom-shadow5.png +0 -0
  34. data/spec/source/site/images/images-global/zoom/zoom-shadow6.png +0 -0
  35. data/spec/source/site/images/images-global/zoom/zoom-shadow7.png +0 -0
  36. data/spec/source/site/images/images-global/zoom/zoom-shadow8.png +0 -0
  37. data/spec/source/site/images/images-global/zoom/zoom-spin-1.png +0 -0
  38. data/spec/source/site/images/images-global/zoom/zoom-spin-10.png +0 -0
  39. data/spec/source/site/images/images-global/zoom/zoom-spin-11.png +0 -0
  40. data/spec/source/site/images/images-global/zoom/zoom-spin-12.png +0 -0
  41. data/spec/source/site/images/images-global/zoom/zoom-spin-2.png +0 -0
  42. data/spec/source/site/images/images-global/zoom/zoom-spin-3.png +0 -0
  43. data/spec/source/site/images/images-global/zoom/zoom-spin-4.png +0 -0
  44. data/spec/source/site/images/images-global/zoom/zoom-spin-5.png +0 -0
  45. data/spec/source/site/images/images-global/zoom/zoom-spin-6.png +0 -0
  46. data/spec/source/site/images/images-global/zoom/zoom-spin-7.png +0 -0
  47. data/spec/source/site/images/images-global/zoom/zoom-spin-8.png +0 -0
  48. data/spec/source/site/images/images-global/zoom/zoom-spin-9.png +0 -0
  49. data/spec/source/site/images/rails3.jpg +0 -0
  50. data/spec/source/site/index.html +121 -0
  51. data/spec/source/site/js/FancyZoom.js +761 -0
  52. data/spec/source/site/js/FancyZoomHTML.js +318 -0
  53. data/spec/source/site/robots.txt +4 -0
  54. data/spec/source/site/sitemap.xml +17 -0
  55. data/spec/source/site/test/config.rb +24 -0
  56. data/spec/source/site/test/sass/ie.scss +5 -0
  57. data/spec/source/site/test/sass/print.scss +3 -0
  58. data/spec/source/site/test/sass/screen.scss +6 -0
  59. data/spec/source/site/test/stylesheets/ie.css +5 -0
  60. data/spec/source/site/test/stylesheets/print.css +3 -0
  61. data/spec/source/site/test/stylesheets/screen.css +69 -0
  62. data/spec/source/site/why-i-use-jekyll-for-blogging.html +125 -0
  63. data/spec/sweetie_spec.rb +30 -0
  64. data/sweetie.gemspec +26 -0
  65. metadata +86 -9
data/sweetie.gemspec ADDED
@@ -0,0 +1,26 @@
1
+ File.expand_path("../lib", __FILE__)
2
+ require 'lib/sweetie'
3
+
4
+ Gem::Specification.new do |s|
5
+ s.name = 'sweetie'
6
+ s.version = Sweetie::VERSION
7
+ s.date = Sweetie::DATE
8
+
9
+ s.summary = 'Count links, images, number of html pages, and last-build time of a jekyll project.'
10
+ s.description = 'Sweetie counts the links, images, number of html pages, and last-build time of a jekyll project.'
11
+
12
+ s.authors = ["Matthias Guenther"]
13
+ s.email = 'matthias.guenther@wikimatze.de'
14
+ s.homepage = 'http://github.com/matthias-guenther/sweetie'
15
+
16
+ s.required_ruby_version = '>= 1.8.7'
17
+ s.files = `git ls-files`.split("\n")
18
+
19
+ s.test_files = Dir.glob "spec/**/*spec.rb"
20
+ s.executables = ['sweetie']
21
+
22
+ s.add_runtime_dependency 'nokogiri', ">= 1.4.6"
23
+
24
+ s.add_development_dependency 'rspec', ">= 2.6.0"
25
+ s.add_development_dependency 'yard'
26
+ end
metadata CHANGED
@@ -5,9 +5,9 @@ version: !ruby/object:Gem::Version
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
+ - 1
8
9
  - 0
9
- - 2
10
- version: 0.0.2
10
+ version: 0.1.0
11
11
  platform: ruby
12
12
  authors:
13
13
  - Matthias Guenther
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2011-07-05 00:00:00 Z
18
+ date: 2011-07-17 00:00:00 Z
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
21
21
  name: nokogiri
@@ -49,6 +49,20 @@ dependencies:
49
49
  version: 2.6.0
50
50
  type: :development
51
51
  version_requirements: *id002
52
+ - !ruby/object:Gem::Dependency
53
+ name: yard
54
+ prerelease: false
55
+ requirement: &id003 !ruby/object:Gem::Requirement
56
+ none: false
57
+ requirements:
58
+ - - ">="
59
+ - !ruby/object:Gem::Version
60
+ hash: 3
61
+ segments:
62
+ - 0
63
+ version: "0"
64
+ type: :development
65
+ version_requirements: *id003
52
66
  description: Sweetie counts the links, images, number of html pages, and last-build time of a jekyll project.
53
67
  email: matthias.guenther@wikimatze.de
54
68
  executables:
@@ -58,10 +72,71 @@ extensions: []
58
72
  extra_rdoc_files: []
59
73
 
60
74
  files:
61
- - lib/sweetie.rb
75
+ - .gitignore
76
+ - .travis.yml
62
77
  - README.md
63
78
  - Rakefile
64
79
  - bin/sweetie
80
+ - lib/sweetie.rb
81
+ - lib/sweetie/conversion.rb
82
+ - spec/source/_config.yml
83
+ - spec/source/site/404.html
84
+ - spec/source/site/about.html
85
+ - spec/source/site/archiv.html
86
+ - spec/source/site/atom.xml
87
+ - spec/source/site/colophon.html
88
+ - spec/source/site/contact.html
89
+ - spec/source/site/css/config.rb
90
+ - spec/source/site/css/sass/site.sass
91
+ - spec/source/site/css/stylesheets/iphone.css
92
+ - spec/source/site/css/stylesheets/site.css
93
+ - spec/source/site/css/stylesheets/syntax.css
94
+ - spec/source/site/follow.html
95
+ - spec/source/site/images/2_avatars.gif
96
+ - spec/source/site/images/favicon.png
97
+ - spec/source/site/images/images-global/matthias_guenther.jpg
98
+ - spec/source/site/images/images-global/matthias_guenther_thumbnail_normal.jpg
99
+ - spec/source/site/images/images-global/matthias_guenther_thumbnail_small.jpg
100
+ - spec/source/site/images/images-global/zoom/closebox.png
101
+ - spec/source/site/images/images-global/zoom/zoom-caption-fill.png
102
+ - spec/source/site/images/images-global/zoom/zoom-caption-l.png
103
+ - spec/source/site/images/images-global/zoom/zoom-caption-r.png
104
+ - spec/source/site/images/images-global/zoom/zoom-shadow1.png
105
+ - spec/source/site/images/images-global/zoom/zoom-shadow2.png
106
+ - spec/source/site/images/images-global/zoom/zoom-shadow3.png
107
+ - spec/source/site/images/images-global/zoom/zoom-shadow4.png
108
+ - spec/source/site/images/images-global/zoom/zoom-shadow5.png
109
+ - spec/source/site/images/images-global/zoom/zoom-shadow6.png
110
+ - spec/source/site/images/images-global/zoom/zoom-shadow7.png
111
+ - spec/source/site/images/images-global/zoom/zoom-shadow8.png
112
+ - spec/source/site/images/images-global/zoom/zoom-spin-1.png
113
+ - spec/source/site/images/images-global/zoom/zoom-spin-10.png
114
+ - spec/source/site/images/images-global/zoom/zoom-spin-11.png
115
+ - spec/source/site/images/images-global/zoom/zoom-spin-12.png
116
+ - spec/source/site/images/images-global/zoom/zoom-spin-2.png
117
+ - spec/source/site/images/images-global/zoom/zoom-spin-3.png
118
+ - spec/source/site/images/images-global/zoom/zoom-spin-4.png
119
+ - spec/source/site/images/images-global/zoom/zoom-spin-5.png
120
+ - spec/source/site/images/images-global/zoom/zoom-spin-6.png
121
+ - spec/source/site/images/images-global/zoom/zoom-spin-7.png
122
+ - spec/source/site/images/images-global/zoom/zoom-spin-8.png
123
+ - spec/source/site/images/images-global/zoom/zoom-spin-9.png
124
+ - spec/source/site/images/rails3.jpg
125
+ - spec/source/site/index.html
126
+ - spec/source/site/js/FancyZoom.js
127
+ - spec/source/site/js/FancyZoomHTML.js
128
+ - spec/source/site/robots.txt
129
+ - spec/source/site/sitemap.xml
130
+ - spec/source/site/test/config.rb
131
+ - spec/source/site/test/sass/ie.scss
132
+ - spec/source/site/test/sass/print.scss
133
+ - spec/source/site/test/sass/screen.scss
134
+ - spec/source/site/test/stylesheets/ie.css
135
+ - spec/source/site/test/stylesheets/print.css
136
+ - spec/source/site/test/stylesheets/screen.css
137
+ - spec/source/site/why-i-use-jekyll-for-blogging.html
138
+ - spec/sweetie_spec.rb
139
+ - sweetie.gemspec
65
140
  homepage: http://github.com/matthias-guenther/sweetie
66
141
  licenses: []
67
142
 
@@ -75,10 +150,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
75
150
  requirements:
76
151
  - - ">="
77
152
  - !ruby/object:Gem::Version
78
- hash: 3
153
+ hash: 57
79
154
  segments:
80
- - 0
81
- version: "0"
155
+ - 1
156
+ - 8
157
+ - 7
158
+ version: 1.8.7
82
159
  required_rubygems_version: !ruby/object:Gem::Requirement
83
160
  none: false
84
161
  requirements:
@@ -95,5 +172,5 @@ rubygems_version: 1.8.5
95
172
  signing_key:
96
173
  specification_version: 3
97
174
  summary: Count links, images, number of html pages, and last-build time of a jekyll project.
98
- test_files: []
99
-
175
+ test_files:
176
+ - spec/sweetie_spec.rb