sweetie 0.1.2 → 2.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (201) hide show
  1. checksums.yaml +7 -0
  2. data/.circleci/config.yml +30 -0
  3. data/.gitignore +4 -1
  4. data/.rubocop.yml +16 -0
  5. data/Gemfile +6 -0
  6. data/README.md +292 -15
  7. data/Rakefile +3 -2
  8. data/lib/sweetie/bitbucket.rb +30 -0
  9. data/lib/sweetie/bitbucket_stati_helper.rb +247 -0
  10. data/lib/sweetie/conversion.rb +84 -103
  11. data/lib/sweetie/helper.rb +90 -0
  12. data/lib/sweetie/version.rb +5 -0
  13. data/lib/sweetie.rb +3 -4
  14. data/spec/fixtures/bitbucket/expected_repositories.txt +1 -0
  15. data/spec/fixtures/bitbucket/repositories.json +1 -0
  16. data/spec/fixtures/jekyll/_config.yml +4 -0
  17. data/spec/fixtures/jekyll/_config_repositories.yml +7 -0
  18. data/spec/fixtures/jekyll/_expected_config.yml +4 -0
  19. data/spec/{source → fixtures/jekyll}/site/404.html +0 -0
  20. data/spec/{source → fixtures/jekyll}/site/about.html +0 -0
  21. data/spec/{source → fixtures/jekyll}/site/archiv.html +0 -0
  22. data/spec/{source → fixtures/jekyll}/site/atom.xml +0 -0
  23. data/spec/{source → fixtures/jekyll}/site/colophon.html +0 -0
  24. data/spec/{source → fixtures/jekyll}/site/contact.html +0 -0
  25. data/spec/{source → fixtures/jekyll}/site/follow.html +0 -0
  26. data/spec/{source → fixtures/jekyll}/site/images/2_avatars.gif +0 -0
  27. data/spec/{source → fixtures/jekyll}/site/images/favicon.png +0 -0
  28. data/spec/{source → fixtures/jekyll}/site/images/images-global/matthias_guenther.jpg +0 -0
  29. data/spec/{source → fixtures/jekyll}/site/images/images-global/matthias_guenther_thumbnail_normal.jpg +0 -0
  30. data/spec/{source → fixtures/jekyll}/site/images/images-global/matthias_guenther_thumbnail_small.jpg +0 -0
  31. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/closebox.png +0 -0
  32. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-caption-fill.png +0 -0
  33. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-caption-l.png +0 -0
  34. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-caption-r.png +0 -0
  35. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-shadow1.png +0 -0
  36. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-shadow2.png +0 -0
  37. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-shadow3.png +0 -0
  38. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-shadow4.png +0 -0
  39. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-shadow5.png +0 -0
  40. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-shadow6.png +0 -0
  41. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-shadow7.png +0 -0
  42. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-shadow8.png +0 -0
  43. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-spin-1.png +0 -0
  44. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-spin-10.png +0 -0
  45. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-spin-11.png +0 -0
  46. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-spin-12.png +0 -0
  47. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-spin-2.png +0 -0
  48. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-spin-3.png +0 -0
  49. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-spin-4.png +0 -0
  50. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-spin-5.png +0 -0
  51. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-spin-6.png +0 -0
  52. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-spin-7.png +0 -0
  53. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-spin-8.png +0 -0
  54. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-spin-9.png +0 -0
  55. data/spec/{source → fixtures/jekyll}/site/images/rails3.jpg +0 -0
  56. data/spec/{source → fixtures/jekyll}/site/index.html +0 -0
  57. data/spec/{source → fixtures/jekyll}/site/robots.txt +0 -0
  58. data/spec/{source → fixtures/jekyll}/site/sitemap.xml +0 -0
  59. data/spec/{source → fixtures/jekyll}/site/why-i-use-jekyll-for-blogging.html +0 -0
  60. data/spec/fixtures/middleman/build/2012-01-meetup/index.html +238 -0
  61. data/spec/fixtures/middleman/build/2012-03-meetup/index.html +217 -0
  62. data/spec/fixtures/middleman/build/2012-05-meetup/index.html +214 -0
  63. data/spec/fixtures/middleman/build/2012-07-meetup/index.html +210 -0
  64. data/spec/fixtures/middleman/build/2012-08-workshop/index.html +228 -0
  65. data/spec/fixtures/middleman/build/2012-09-meetup/index.html +231 -0
  66. data/spec/fixtures/middleman/build/2012-10-workshop/index.html +227 -0
  67. data/spec/fixtures/middleman/build/2012-11-meetup/index.html +229 -0
  68. data/spec/fixtures/middleman/build/2012-unusual-december-meetup/index.html +186 -0
  69. data/spec/fixtures/middleman/build/2013-01-meetup/index.html +226 -0
  70. data/spec/fixtures/middleman/build/404/index.html +157 -0
  71. data/spec/fixtures/middleman/build/CNAME +1 -0
  72. data/spec/fixtures/middleman/build/april-2014-meetup/index.html +221 -0
  73. data/spec/fixtures/middleman/build/april-2015-meetup/index.html +204 -0
  74. data/spec/fixtures/middleman/build/april-2017-meetup/index.html +210 -0
  75. data/spec/fixtures/middleman/build/assets/favicons/android-chrome-144x144.png +0 -0
  76. data/spec/fixtures/middleman/build/assets/favicons/android-chrome-192x192.png +0 -0
  77. data/spec/fixtures/middleman/build/assets/favicons/android-chrome-36x36.png +0 -0
  78. data/spec/fixtures/middleman/build/assets/favicons/android-chrome-48x48.png +0 -0
  79. data/spec/fixtures/middleman/build/assets/favicons/android-chrome-72x72.png +0 -0
  80. data/spec/fixtures/middleman/build/assets/favicons/android-chrome-96x96.png +0 -0
  81. data/spec/fixtures/middleman/build/assets/favicons/apple-touch-icon-114x114.png +0 -0
  82. data/spec/fixtures/middleman/build/assets/favicons/apple-touch-icon-120x120.png +0 -0
  83. data/spec/fixtures/middleman/build/assets/favicons/apple-touch-icon-144x144.png +0 -0
  84. data/spec/fixtures/middleman/build/assets/favicons/apple-touch-icon-152x152.png +0 -0
  85. data/spec/fixtures/middleman/build/assets/favicons/apple-touch-icon-180x180.png +0 -0
  86. data/spec/fixtures/middleman/build/assets/favicons/apple-touch-icon-57x57.png +0 -0
  87. data/spec/fixtures/middleman/build/assets/favicons/apple-touch-icon-60x60.png +0 -0
  88. data/spec/fixtures/middleman/build/assets/favicons/apple-touch-icon-72x72.png +0 -0
  89. data/spec/fixtures/middleman/build/assets/favicons/apple-touch-icon-76x76.png +0 -0
  90. data/spec/fixtures/middleman/build/assets/favicons/apple-touch-icon-precomposed.png +0 -0
  91. data/spec/fixtures/middleman/build/assets/favicons/apple-touch-icon.png +0 -0
  92. data/spec/fixtures/middleman/build/assets/favicons/browserconfig.xml +12 -0
  93. data/spec/fixtures/middleman/build/assets/favicons/favicon-16x16.png +0 -0
  94. data/spec/fixtures/middleman/build/assets/favicons/favicon-32x32.png +0 -0
  95. data/spec/fixtures/middleman/build/assets/favicons/favicon-96x96.png +0 -0
  96. data/spec/fixtures/middleman/build/assets/favicons/favicon.ico +0 -0
  97. data/spec/fixtures/middleman/build/assets/favicons/manifest.json +41 -0
  98. data/spec/fixtures/middleman/build/assets/favicons/mstile-144x144.png +0 -0
  99. data/spec/fixtures/middleman/build/assets/favicons/mstile-150x150.png +0 -0
  100. data/spec/fixtures/middleman/build/assets/favicons/mstile-310x150.png +0 -0
  101. data/spec/fixtures/middleman/build/assets/favicons/mstile-310x310.png +0 -0
  102. data/spec/fixtures/middleman/build/assets/favicons/mstile-70x70.png +0 -0
  103. data/spec/fixtures/middleman/build/assets/favicons/safari-pinned-tab.svg +450 -0
  104. data/spec/fixtures/middleman/build/assets/images/launch_co_logo.png +0 -0
  105. data/spec/fixtures/middleman/build/assets/images/vimfest.png +0 -0
  106. data/spec/fixtures/middleman/build/assets/javascripts/application.js +12 -0
  107. data/spec/fixtures/middleman/build/assets/javascripts/jquery.utils.js +12 -0
  108. data/spec/fixtures/middleman/build/assets/javascripts/lib/validate.js +1 -0
  109. data/spec/fixtures/middleman/build/assets/stylesheets/application.css +5 -0
  110. data/spec/fixtures/middleman/build/assets/stylesheets/vendor/bootstrap.css +5 -0
  111. data/spec/fixtures/middleman/build/august-2013-meetup/index.html +208 -0
  112. data/spec/fixtures/middleman/build/blog/index.html +500 -0
  113. data/spec/fixtures/middleman/build/book-club-about-the-viml-primer/index.html +182 -0
  114. data/spec/fixtures/middleman/build/contact/index.html +155 -0
  115. data/spec/fixtures/middleman/build/data/vimberlin-2013-09_ctags/index.html +98 -0
  116. data/spec/fixtures/middleman/build/data/vimberlin-2013-09_vimprofiling/index.html +157 -0
  117. data/spec/fixtures/middleman/build/data/vimberlin-2014-01_vim_writing/index.html +70 -0
  118. data/spec/fixtures/middleman/build/december-2015-meetup/index.html +199 -0
  119. data/spec/fixtures/middleman/build/december-2016-meetup/index.html +224 -0
  120. data/spec/fixtures/middleman/build/february-2013-vim-beer-lin/index.html +190 -0
  121. data/spec/fixtures/middleman/build/february-2015-meetup/index.html +233 -0
  122. data/spec/fixtures/middleman/build/february-2016-meetup/index.html +271 -0
  123. data/spec/fixtures/middleman/build/feed.xml +2106 -0
  124. data/spec/fixtures/middleman/build/fonts/FontAwesome.otf +0 -0
  125. data/spec/fixtures/middleman/build/fonts/fontawesome-webfont.eot +0 -0
  126. data/spec/fixtures/middleman/build/fonts/fontawesome-webfont.svg +655 -0
  127. data/spec/fixtures/middleman/build/fonts/fontawesome-webfont.ttf +0 -0
  128. data/spec/fixtures/middleman/build/fonts/fontawesome-webfont.woff +0 -0
  129. data/spec/fixtures/middleman/build/fonts/fontawesome-webfont.woff2 +0 -0
  130. data/spec/fixtures/middleman/build/humans.txt +12 -0
  131. data/spec/fixtures/middleman/build/imprint/index.html +177 -0
  132. data/spec/fixtures/middleman/build/index.html +157 -0
  133. data/spec/fixtures/middleman/build/january-2014-meetup/index.html +257 -0
  134. data/spec/fixtures/middleman/build/january-2015-meetup/index.html +243 -0
  135. data/spec/fixtures/middleman/build/january-2016-meetup/index.html +202 -0
  136. data/spec/fixtures/middleman/build/january-2017-meetup/index.html +228 -0
  137. data/spec/fixtures/middleman/build/july-2015-meetup/index.html +207 -0
  138. data/spec/fixtures/middleman/build/june-2016-meetup/index.html +260 -0
  139. data/spec/fixtures/middleman/build/march-2-2017-meetup/index.html +201 -0
  140. data/spec/fixtures/middleman/build/march-2014-meetup/index.html +219 -0
  141. data/spec/fixtures/middleman/build/march-2016-meetup/index.html +221 -0
  142. data/spec/fixtures/middleman/build/march-2017-meetup/index.html +222 -0
  143. data/spec/fixtures/middleman/build/may-2013-meetup/index.html +234 -0
  144. data/spec/fixtures/middleman/build/may-2014-meetup/index.html +198 -0
  145. data/spec/fixtures/middleman/build/may-2015-meetup/index.html +202 -0
  146. data/spec/fixtures/middleman/build/may-2016-meetup/index.html +245 -0
  147. data/spec/fixtures/middleman/build/newsletter/index.html +171 -0
  148. data/spec/fixtures/middleman/build/november-2013-meetup/index.html +199 -0
  149. data/spec/fixtures/middleman/build/november-2015-meetup/index.html +402 -0
  150. data/spec/fixtures/middleman/build/november-2016-meetup/index.html +224 -0
  151. data/spec/fixtures/middleman/build/october-2013-meetup/index.html +210 -0
  152. data/spec/fixtures/middleman/build/october-2014-meetup/index.html +196 -0
  153. data/spec/fixtures/middleman/build/october-2016-meetup/index.html +222 -0
  154. data/spec/fixtures/middleman/build/robots.txt +6 -0
  155. data/spec/fixtures/middleman/build/september-2013-meetup/index.html +225 -0
  156. data/spec/fixtures/middleman/build/september-2014-meetup/index.html +211 -0
  157. data/spec/fixtures/middleman/build/sitemap.xml +297 -0
  158. data/spec/fixtures/middleman/build/vimfest-october-2015/index.html +303 -0
  159. data/spec/fixtures/middleman/config.rb +4 -0
  160. data/spec/fixtures/middleman/config_repositories.rb +7 -0
  161. data/spec/fixtures/middleman/expected_config.rb +4 -0
  162. data/spec/spec_helper.rb +2 -0
  163. data/spec/sweetie_bitbucket_spec.rb +32 -0
  164. data/spec/sweetie_bitbucket_stati_helper_spec.rb +124 -0
  165. data/spec/sweetie_conversion_spec.rb +117 -0
  166. data/spec/sweetie_helper_spec.rb +140 -0
  167. data/sweetie.gemspec +21 -22
  168. metadata +243 -165
  169. data/.travis.yml +0 -2
  170. data/bin/sweetie +0 -7
  171. data/doc/Sweetie.html +0 -125
  172. data/doc/_index.html +0 -121
  173. data/doc/class_list.html +0 -47
  174. data/doc/css/common.css +0 -1
  175. data/doc/css/full_list.css +0 -53
  176. data/doc/css/style.css +0 -320
  177. data/doc/file.README.html +0 -95
  178. data/doc/file_list.html +0 -49
  179. data/doc/frames.html +0 -13
  180. data/doc/index.html +0 -95
  181. data/doc/js/app.js +0 -205
  182. data/doc/js/full_list.js +0 -150
  183. data/doc/js/jquery.js +0 -16
  184. data/doc/method_list.html +0 -126
  185. data/doc/top-level-namespace.html +0 -103
  186. data/spec/source/_config.yml +0 -18
  187. data/spec/source/site/css/config.rb +0 -24
  188. data/spec/source/site/css/sass/site.sass +0 -180
  189. data/spec/source/site/css/stylesheets/iphone.css +0 -17
  190. data/spec/source/site/css/stylesheets/site.css +0 -246
  191. data/spec/source/site/css/stylesheets/syntax.css +0 -60
  192. data/spec/source/site/js/FancyZoom.js +0 -761
  193. data/spec/source/site/js/FancyZoomHTML.js +0 -318
  194. data/spec/source/site/test/config.rb +0 -24
  195. data/spec/source/site/test/sass/ie.scss +0 -5
  196. data/spec/source/site/test/sass/print.scss +0 -3
  197. data/spec/source/site/test/sass/screen.scss +0 -6
  198. data/spec/source/site/test/stylesheets/ie.css +0 -5
  199. data/spec/source/site/test/stylesheets/print.css +0 -3
  200. data/spec/source/site/test/stylesheets/screen.css +0 -69
  201. data/spec/sweetie_spec.rb +0 -30
metadata CHANGED
@@ -1,192 +1,270 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: sweetie
3
- version: !ruby/object:Gem::Version
4
- hash: 31
5
- prerelease:
6
- segments:
7
- - 0
8
- - 1
9
- - 2
10
- version: 0.1.2
3
+ version: !ruby/object:Gem::Version
4
+ version: 2.0.0
11
5
  platform: ruby
12
- authors:
6
+ authors:
13
7
  - Matthias Guenther
14
8
  autorequire:
15
9
  bindir: bin
16
10
  cert_chain: []
17
-
18
- date: 2011-07-17 00:00:00 Z
19
- dependencies:
20
- - !ruby/object:Gem::Dependency
11
+ date: 2012-07-15 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
21
14
  name: nokogiri
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.12'
20
+ type: :runtime
22
21
  prerelease: false
23
- requirement: &id001 !ruby/object:Gem::Requirement
24
- none: false
25
- requirements:
26
- - - ">="
27
- - !ruby/object:Gem::Version
28
- hash: 11
29
- segments:
30
- - 1
31
- - 4
32
- - 6
33
- version: 1.4.6
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.12'
27
+ - !ruby/object:Gem::Dependency
28
+ name: json
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '2.3'
34
34
  type: :runtime
35
- version_requirements: *id001
36
- - !ruby/object:Gem::Dependency
37
- name: rspec
38
35
  prerelease: false
39
- requirement: &id002 !ruby/object:Gem::Requirement
40
- none: false
41
- requirements:
42
- - - ">="
43
- - !ruby/object:Gem::Version
44
- hash: 23
45
- segments:
46
- - 2
47
- - 6
48
- - 0
49
- version: 2.6.0
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '2.3'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rake
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '12.3'
50
48
  type: :development
51
- version_requirements: *id002
52
- - !ruby/object:Gem::Dependency
53
- name: yard
54
49
  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"
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '12.3'
55
+ - !ruby/object:Gem::Dependency
56
+ name: rspec
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '3.3'
64
62
  type: :development
65
- version_requirements: *id003
66
- description: Sweetie counts the links, images, number of html pages, and last-build time of a jekyll project.
67
- email: matthias.guenther@wikimatze.de
68
- executables:
69
- - sweetie
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '3.3'
69
+ description: |-
70
+ Sweetie counts the links, images, number of html pages, and last-build
71
+ time of a jekyll project. In addition it can get the last changes of all
72
+ bitbuckets repositories of a user.
73
+ email: matthias@wikimatze.de
74
+ executables: []
70
75
  extensions: []
71
-
72
- extra_rdoc_files:
76
+ extra_rdoc_files:
73
77
  - README.md
74
- - doc/frames.html
75
- files:
76
- - .gitignore
77
- - .travis.yml
78
+ files:
79
+ - ".circleci/config.yml"
80
+ - ".gitignore"
81
+ - ".rubocop.yml"
82
+ - Gemfile
78
83
  - README.md
79
84
  - Rakefile
80
- - bin/sweetie
81
- - doc/Sweetie.html
82
- - doc/_index.html
83
- - doc/class_list.html
84
- - doc/css/common.css
85
- - doc/css/full_list.css
86
- - doc/css/style.css
87
- - doc/file.README.html
88
- - doc/file_list.html
89
- - doc/frames.html
90
- - doc/index.html
91
- - doc/js/app.js
92
- - doc/js/full_list.js
93
- - doc/js/jquery.js
94
- - doc/method_list.html
95
- - doc/top-level-namespace.html
96
85
  - lib/sweetie.rb
86
+ - lib/sweetie/bitbucket.rb
87
+ - lib/sweetie/bitbucket_stati_helper.rb
97
88
  - lib/sweetie/conversion.rb
98
- - spec/source/_config.yml
99
- - spec/source/site/404.html
100
- - spec/source/site/about.html
101
- - spec/source/site/archiv.html
102
- - spec/source/site/atom.xml
103
- - spec/source/site/colophon.html
104
- - spec/source/site/contact.html
105
- - spec/source/site/css/config.rb
106
- - spec/source/site/css/sass/site.sass
107
- - spec/source/site/css/stylesheets/iphone.css
108
- - spec/source/site/css/stylesheets/site.css
109
- - spec/source/site/css/stylesheets/syntax.css
110
- - spec/source/site/follow.html
111
- - spec/source/site/images/2_avatars.gif
112
- - spec/source/site/images/favicon.png
113
- - spec/source/site/images/images-global/matthias_guenther.jpg
114
- - spec/source/site/images/images-global/matthias_guenther_thumbnail_normal.jpg
115
- - spec/source/site/images/images-global/matthias_guenther_thumbnail_small.jpg
116
- - spec/source/site/images/images-global/zoom/closebox.png
117
- - spec/source/site/images/images-global/zoom/zoom-caption-fill.png
118
- - spec/source/site/images/images-global/zoom/zoom-caption-l.png
119
- - spec/source/site/images/images-global/zoom/zoom-caption-r.png
120
- - spec/source/site/images/images-global/zoom/zoom-shadow1.png
121
- - spec/source/site/images/images-global/zoom/zoom-shadow2.png
122
- - spec/source/site/images/images-global/zoom/zoom-shadow3.png
123
- - spec/source/site/images/images-global/zoom/zoom-shadow4.png
124
- - spec/source/site/images/images-global/zoom/zoom-shadow5.png
125
- - spec/source/site/images/images-global/zoom/zoom-shadow6.png
126
- - spec/source/site/images/images-global/zoom/zoom-shadow7.png
127
- - spec/source/site/images/images-global/zoom/zoom-shadow8.png
128
- - spec/source/site/images/images-global/zoom/zoom-spin-1.png
129
- - spec/source/site/images/images-global/zoom/zoom-spin-10.png
130
- - spec/source/site/images/images-global/zoom/zoom-spin-11.png
131
- - spec/source/site/images/images-global/zoom/zoom-spin-12.png
132
- - spec/source/site/images/images-global/zoom/zoom-spin-2.png
133
- - spec/source/site/images/images-global/zoom/zoom-spin-3.png
134
- - spec/source/site/images/images-global/zoom/zoom-spin-4.png
135
- - spec/source/site/images/images-global/zoom/zoom-spin-5.png
136
- - spec/source/site/images/images-global/zoom/zoom-spin-6.png
137
- - spec/source/site/images/images-global/zoom/zoom-spin-7.png
138
- - spec/source/site/images/images-global/zoom/zoom-spin-8.png
139
- - spec/source/site/images/images-global/zoom/zoom-spin-9.png
140
- - spec/source/site/images/rails3.jpg
141
- - spec/source/site/index.html
142
- - spec/source/site/js/FancyZoom.js
143
- - spec/source/site/js/FancyZoomHTML.js
144
- - spec/source/site/robots.txt
145
- - spec/source/site/sitemap.xml
146
- - spec/source/site/test/config.rb
147
- - spec/source/site/test/sass/ie.scss
148
- - spec/source/site/test/sass/print.scss
149
- - spec/source/site/test/sass/screen.scss
150
- - spec/source/site/test/stylesheets/ie.css
151
- - spec/source/site/test/stylesheets/print.css
152
- - spec/source/site/test/stylesheets/screen.css
153
- - spec/source/site/why-i-use-jekyll-for-blogging.html
154
- - spec/sweetie_spec.rb
89
+ - lib/sweetie/helper.rb
90
+ - lib/sweetie/version.rb
91
+ - spec/fixtures/bitbucket/expected_repositories.txt
92
+ - spec/fixtures/bitbucket/repositories.json
93
+ - spec/fixtures/jekyll/_config.yml
94
+ - spec/fixtures/jekyll/_config_repositories.yml
95
+ - spec/fixtures/jekyll/_expected_config.yml
96
+ - spec/fixtures/jekyll/site/404.html
97
+ - spec/fixtures/jekyll/site/about.html
98
+ - spec/fixtures/jekyll/site/archiv.html
99
+ - spec/fixtures/jekyll/site/atom.xml
100
+ - spec/fixtures/jekyll/site/colophon.html
101
+ - spec/fixtures/jekyll/site/contact.html
102
+ - spec/fixtures/jekyll/site/follow.html
103
+ - spec/fixtures/jekyll/site/images/2_avatars.gif
104
+ - spec/fixtures/jekyll/site/images/favicon.png
105
+ - spec/fixtures/jekyll/site/images/images-global/matthias_guenther.jpg
106
+ - spec/fixtures/jekyll/site/images/images-global/matthias_guenther_thumbnail_normal.jpg
107
+ - spec/fixtures/jekyll/site/images/images-global/matthias_guenther_thumbnail_small.jpg
108
+ - spec/fixtures/jekyll/site/images/images-global/zoom/closebox.png
109
+ - spec/fixtures/jekyll/site/images/images-global/zoom/zoom-caption-fill.png
110
+ - spec/fixtures/jekyll/site/images/images-global/zoom/zoom-caption-l.png
111
+ - spec/fixtures/jekyll/site/images/images-global/zoom/zoom-caption-r.png
112
+ - spec/fixtures/jekyll/site/images/images-global/zoom/zoom-shadow1.png
113
+ - spec/fixtures/jekyll/site/images/images-global/zoom/zoom-shadow2.png
114
+ - spec/fixtures/jekyll/site/images/images-global/zoom/zoom-shadow3.png
115
+ - spec/fixtures/jekyll/site/images/images-global/zoom/zoom-shadow4.png
116
+ - spec/fixtures/jekyll/site/images/images-global/zoom/zoom-shadow5.png
117
+ - spec/fixtures/jekyll/site/images/images-global/zoom/zoom-shadow6.png
118
+ - spec/fixtures/jekyll/site/images/images-global/zoom/zoom-shadow7.png
119
+ - spec/fixtures/jekyll/site/images/images-global/zoom/zoom-shadow8.png
120
+ - spec/fixtures/jekyll/site/images/images-global/zoom/zoom-spin-1.png
121
+ - spec/fixtures/jekyll/site/images/images-global/zoom/zoom-spin-10.png
122
+ - spec/fixtures/jekyll/site/images/images-global/zoom/zoom-spin-11.png
123
+ - spec/fixtures/jekyll/site/images/images-global/zoom/zoom-spin-12.png
124
+ - spec/fixtures/jekyll/site/images/images-global/zoom/zoom-spin-2.png
125
+ - spec/fixtures/jekyll/site/images/images-global/zoom/zoom-spin-3.png
126
+ - spec/fixtures/jekyll/site/images/images-global/zoom/zoom-spin-4.png
127
+ - spec/fixtures/jekyll/site/images/images-global/zoom/zoom-spin-5.png
128
+ - spec/fixtures/jekyll/site/images/images-global/zoom/zoom-spin-6.png
129
+ - spec/fixtures/jekyll/site/images/images-global/zoom/zoom-spin-7.png
130
+ - spec/fixtures/jekyll/site/images/images-global/zoom/zoom-spin-8.png
131
+ - spec/fixtures/jekyll/site/images/images-global/zoom/zoom-spin-9.png
132
+ - spec/fixtures/jekyll/site/images/rails3.jpg
133
+ - spec/fixtures/jekyll/site/index.html
134
+ - spec/fixtures/jekyll/site/robots.txt
135
+ - spec/fixtures/jekyll/site/sitemap.xml
136
+ - spec/fixtures/jekyll/site/why-i-use-jekyll-for-blogging.html
137
+ - spec/fixtures/middleman/build/2012-01-meetup/index.html
138
+ - spec/fixtures/middleman/build/2012-03-meetup/index.html
139
+ - spec/fixtures/middleman/build/2012-05-meetup/index.html
140
+ - spec/fixtures/middleman/build/2012-07-meetup/index.html
141
+ - spec/fixtures/middleman/build/2012-08-workshop/index.html
142
+ - spec/fixtures/middleman/build/2012-09-meetup/index.html
143
+ - spec/fixtures/middleman/build/2012-10-workshop/index.html
144
+ - spec/fixtures/middleman/build/2012-11-meetup/index.html
145
+ - spec/fixtures/middleman/build/2012-unusual-december-meetup/index.html
146
+ - spec/fixtures/middleman/build/2013-01-meetup/index.html
147
+ - spec/fixtures/middleman/build/404/index.html
148
+ - spec/fixtures/middleman/build/CNAME
149
+ - spec/fixtures/middleman/build/april-2014-meetup/index.html
150
+ - spec/fixtures/middleman/build/april-2015-meetup/index.html
151
+ - spec/fixtures/middleman/build/april-2017-meetup/index.html
152
+ - spec/fixtures/middleman/build/assets/favicons/android-chrome-144x144.png
153
+ - spec/fixtures/middleman/build/assets/favicons/android-chrome-192x192.png
154
+ - spec/fixtures/middleman/build/assets/favicons/android-chrome-36x36.png
155
+ - spec/fixtures/middleman/build/assets/favicons/android-chrome-48x48.png
156
+ - spec/fixtures/middleman/build/assets/favicons/android-chrome-72x72.png
157
+ - spec/fixtures/middleman/build/assets/favicons/android-chrome-96x96.png
158
+ - spec/fixtures/middleman/build/assets/favicons/apple-touch-icon-114x114.png
159
+ - spec/fixtures/middleman/build/assets/favicons/apple-touch-icon-120x120.png
160
+ - spec/fixtures/middleman/build/assets/favicons/apple-touch-icon-144x144.png
161
+ - spec/fixtures/middleman/build/assets/favicons/apple-touch-icon-152x152.png
162
+ - spec/fixtures/middleman/build/assets/favicons/apple-touch-icon-180x180.png
163
+ - spec/fixtures/middleman/build/assets/favicons/apple-touch-icon-57x57.png
164
+ - spec/fixtures/middleman/build/assets/favicons/apple-touch-icon-60x60.png
165
+ - spec/fixtures/middleman/build/assets/favicons/apple-touch-icon-72x72.png
166
+ - spec/fixtures/middleman/build/assets/favicons/apple-touch-icon-76x76.png
167
+ - spec/fixtures/middleman/build/assets/favicons/apple-touch-icon-precomposed.png
168
+ - spec/fixtures/middleman/build/assets/favicons/apple-touch-icon.png
169
+ - spec/fixtures/middleman/build/assets/favicons/browserconfig.xml
170
+ - spec/fixtures/middleman/build/assets/favicons/favicon-16x16.png
171
+ - spec/fixtures/middleman/build/assets/favicons/favicon-32x32.png
172
+ - spec/fixtures/middleman/build/assets/favicons/favicon-96x96.png
173
+ - spec/fixtures/middleman/build/assets/favicons/favicon.ico
174
+ - spec/fixtures/middleman/build/assets/favicons/manifest.json
175
+ - spec/fixtures/middleman/build/assets/favicons/mstile-144x144.png
176
+ - spec/fixtures/middleman/build/assets/favicons/mstile-150x150.png
177
+ - spec/fixtures/middleman/build/assets/favicons/mstile-310x150.png
178
+ - spec/fixtures/middleman/build/assets/favicons/mstile-310x310.png
179
+ - spec/fixtures/middleman/build/assets/favicons/mstile-70x70.png
180
+ - spec/fixtures/middleman/build/assets/favicons/safari-pinned-tab.svg
181
+ - spec/fixtures/middleman/build/assets/images/launch_co_logo.png
182
+ - spec/fixtures/middleman/build/assets/images/vimfest.png
183
+ - spec/fixtures/middleman/build/assets/javascripts/application.js
184
+ - spec/fixtures/middleman/build/assets/javascripts/jquery.utils.js
185
+ - spec/fixtures/middleman/build/assets/javascripts/lib/validate.js
186
+ - spec/fixtures/middleman/build/assets/stylesheets/application.css
187
+ - spec/fixtures/middleman/build/assets/stylesheets/vendor/bootstrap.css
188
+ - spec/fixtures/middleman/build/august-2013-meetup/index.html
189
+ - spec/fixtures/middleman/build/blog/index.html
190
+ - spec/fixtures/middleman/build/book-club-about-the-viml-primer/index.html
191
+ - spec/fixtures/middleman/build/contact/index.html
192
+ - spec/fixtures/middleman/build/data/vimberlin-2013-09_ctags/index.html
193
+ - spec/fixtures/middleman/build/data/vimberlin-2013-09_vimprofiling/index.html
194
+ - spec/fixtures/middleman/build/data/vimberlin-2014-01_vim_writing/index.html
195
+ - spec/fixtures/middleman/build/december-2015-meetup/index.html
196
+ - spec/fixtures/middleman/build/december-2016-meetup/index.html
197
+ - spec/fixtures/middleman/build/february-2013-vim-beer-lin/index.html
198
+ - spec/fixtures/middleman/build/february-2015-meetup/index.html
199
+ - spec/fixtures/middleman/build/february-2016-meetup/index.html
200
+ - spec/fixtures/middleman/build/feed.xml
201
+ - spec/fixtures/middleman/build/fonts/FontAwesome.otf
202
+ - spec/fixtures/middleman/build/fonts/fontawesome-webfont.eot
203
+ - spec/fixtures/middleman/build/fonts/fontawesome-webfont.svg
204
+ - spec/fixtures/middleman/build/fonts/fontawesome-webfont.ttf
205
+ - spec/fixtures/middleman/build/fonts/fontawesome-webfont.woff
206
+ - spec/fixtures/middleman/build/fonts/fontawesome-webfont.woff2
207
+ - spec/fixtures/middleman/build/humans.txt
208
+ - spec/fixtures/middleman/build/imprint/index.html
209
+ - spec/fixtures/middleman/build/index.html
210
+ - spec/fixtures/middleman/build/january-2014-meetup/index.html
211
+ - spec/fixtures/middleman/build/january-2015-meetup/index.html
212
+ - spec/fixtures/middleman/build/january-2016-meetup/index.html
213
+ - spec/fixtures/middleman/build/january-2017-meetup/index.html
214
+ - spec/fixtures/middleman/build/july-2015-meetup/index.html
215
+ - spec/fixtures/middleman/build/june-2016-meetup/index.html
216
+ - spec/fixtures/middleman/build/march-2-2017-meetup/index.html
217
+ - spec/fixtures/middleman/build/march-2014-meetup/index.html
218
+ - spec/fixtures/middleman/build/march-2016-meetup/index.html
219
+ - spec/fixtures/middleman/build/march-2017-meetup/index.html
220
+ - spec/fixtures/middleman/build/may-2013-meetup/index.html
221
+ - spec/fixtures/middleman/build/may-2014-meetup/index.html
222
+ - spec/fixtures/middleman/build/may-2015-meetup/index.html
223
+ - spec/fixtures/middleman/build/may-2016-meetup/index.html
224
+ - spec/fixtures/middleman/build/newsletter/index.html
225
+ - spec/fixtures/middleman/build/november-2013-meetup/index.html
226
+ - spec/fixtures/middleman/build/november-2015-meetup/index.html
227
+ - spec/fixtures/middleman/build/november-2016-meetup/index.html
228
+ - spec/fixtures/middleman/build/october-2013-meetup/index.html
229
+ - spec/fixtures/middleman/build/october-2014-meetup/index.html
230
+ - spec/fixtures/middleman/build/october-2016-meetup/index.html
231
+ - spec/fixtures/middleman/build/robots.txt
232
+ - spec/fixtures/middleman/build/september-2013-meetup/index.html
233
+ - spec/fixtures/middleman/build/september-2014-meetup/index.html
234
+ - spec/fixtures/middleman/build/sitemap.xml
235
+ - spec/fixtures/middleman/build/vimfest-october-2015/index.html
236
+ - spec/fixtures/middleman/config.rb
237
+ - spec/fixtures/middleman/config_repositories.rb
238
+ - spec/fixtures/middleman/expected_config.rb
239
+ - spec/spec_helper.rb
240
+ - spec/sweetie_bitbucket_spec.rb
241
+ - spec/sweetie_bitbucket_stati_helper_spec.rb
242
+ - spec/sweetie_conversion_spec.rb
243
+ - spec/sweetie_helper_spec.rb
155
244
  - sweetie.gemspec
156
- homepage: http://github.com/matthias-guenther/sweetie
157
- licenses: []
158
-
245
+ homepage: https://github.com/wikimatze/sweetie
246
+ licenses:
247
+ - MIT
248
+ metadata: {}
159
249
  post_install_message:
160
250
  rdoc_options: []
161
-
162
- require_paths:
251
+ require_paths:
163
252
  - lib
164
- required_ruby_version: !ruby/object:Gem::Requirement
165
- none: false
166
- requirements:
253
+ required_ruby_version: !ruby/object:Gem::Requirement
254
+ requirements:
167
255
  - - ">="
168
- - !ruby/object:Gem::Version
169
- hash: 57
170
- segments:
171
- - 1
172
- - 8
173
- - 7
174
- version: 1.8.7
175
- required_rubygems_version: !ruby/object:Gem::Requirement
176
- none: false
177
- requirements:
256
+ - !ruby/object:Gem::Version
257
+ version: '0'
258
+ required_rubygems_version: !ruby/object:Gem::Requirement
259
+ requirements:
178
260
  - - ">="
179
- - !ruby/object:Gem::Version
180
- hash: 3
181
- segments:
182
- - 0
183
- version: "0"
261
+ - !ruby/object:Gem::Version
262
+ version: '0'
184
263
  requirements: []
185
-
186
- rubyforge_project:
187
- rubygems_version: 1.8.5
264
+ rubygems_version: 3.1.4
188
265
  signing_key:
189
- specification_version: 3
190
- summary: Count links, images, number of html pages, and last-build time of a jekyll project.
191
- test_files:
192
- - spec/sweetie_spec.rb
266
+ specification_version: 4
267
+ summary: Count links, images, number of html pages, and last-build time of a jekyll
268
+ project. In addition it can get last updates of all bitbucket repositories of a
269
+ user.
270
+ test_files: []
data/.travis.yml DELETED
@@ -1,2 +0,0 @@
1
- rvm:
2
- - 1.9.1
data/bin/sweetie DELETED
@@ -1,7 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- $LOAD_PATH.unshift File.dirname(__FILE__) + '/lib'
4
-
5
- require 'sweetie/conversion'
6
-
7
- Sweetie::Conversion.change_config
data/doc/Sweetie.html DELETED
@@ -1,125 +0,0 @@
1
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
4
- <head>
5
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
6
- <title>
7
- Module: Sweetie
8
-
9
- &mdash; Documentation by YARD 0.7.2
10
-
11
- </title>
12
-
13
- <link rel="stylesheet" href="css/style.css" type="text/css" media="screen" charset="utf-8" />
14
-
15
- <link rel="stylesheet" href="css/common.css" type="text/css" media="screen" charset="utf-8" />
16
-
17
- <script type="text/javascript" charset="utf-8">
18
- relpath = '';
19
- if (relpath != '') relpath += '/';
20
- </script>
21
-
22
- <script type="text/javascript" charset="utf-8" src="js/jquery.js"></script>
23
-
24
- <script type="text/javascript" charset="utf-8" src="js/app.js"></script>
25
-
26
-
27
- </head>
28
- <body>
29
- <script type="text/javascript" charset="utf-8">
30
- if (window.top.frames.main) document.body.className = 'frames';
31
- </script>
32
-
33
- <div id="header">
34
- <div id="menu">
35
-
36
- <a href="_index.html">Index (S)</a> &raquo;
37
-
38
-
39
- <span class="title">Sweetie</span>
40
-
41
-
42
- <div class="noframes"><span class="title">(</span><a href="." target="_top">no frames</a><span class="title">)</span></div>
43
- </div>
44
-
45
- <div id="search">
46
-
47
- <a id="class_list_link" href="#">Class List</a>
48
-
49
- <a id="method_list_link" href="#">Method List</a>
50
-
51
- <a id="file_list_link" href="#">File List</a>
52
-
53
- </div>
54
- <div class="clear"></div>
55
- </div>
56
-
57
- <iframe id="search_frame"></iframe>
58
-
59
- <div id="content"><h1>Module: Sweetie
60
-
61
-
62
-
63
- </h1>
64
-
65
- <dl class="box">
66
-
67
-
68
-
69
-
70
-
71
-
72
-
73
-
74
- <dt class="r1 last">Defined in:</dt>
75
- <dd class="r1 last">lib/sweetie.rb<span class="defines">,<br />
76
- lib/sweetie/conversion.rb</span>
77
- </dd>
78
-
79
- </dl>
80
- <div class="clear"></div>
81
-
82
- <h2>Defined Under Namespace</h2>
83
- <p class="children">
84
-
85
-
86
-
87
-
88
- <strong class="classes">Classes:</strong> <span class='object_link'><a href="Sweetie/Conversion.html" title="Sweetie::Conversion (class)">Conversion</a></span>
89
-
90
-
91
- </p>
92
-
93
- <h2>Constant Summary</h2>
94
-
95
- <dl class="constants">
96
-
97
- <dt id="VERSION-constant" class="">VERSION =
98
-
99
- </dt>
100
- <dd><pre class="code"><span class='tstring'><span class='tstring_beg'>'</span><span class='tstring_content'>0.1.0</span><span class='tstring_end'>'</span></span></pre></dd>
101
-
102
- <dt id="DATE-constant" class="">DATE =
103
-
104
- </dt>
105
- <dd><pre class="code"><span class='tstring'><span class='tstring_beg'>'</span><span class='tstring_content'>2011-07-17</span><span class='tstring_end'>'</span></span></pre></dd>
106
-
107
- </dl>
108
-
109
-
110
-
111
-
112
-
113
-
114
-
115
-
116
- </div>
117
-
118
- <div id="footer">
119
- Generated on Sun Jul 17 18:55:22 2011 by
120
- <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
121
- 0.7.2 (ruby-1.9.1).
122
- </div>
123
-
124
- </body>
125
- </html>