octopress 3.0.0.alpha1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (269) hide show
  1. checksums.yaml +15 -0
  2. data/.editorconfig +22 -0
  3. data/.gitattributes +1 -0
  4. data/.gitignore +20 -0
  5. data/.powrc +4 -0
  6. data/.rspec +5 -0
  7. data/.rubocop.yml +119 -0
  8. data/.slugignore +3 -0
  9. data/.themes/classic/.editorconfig +44 -0
  10. data/.themes/classic/_config/adn-timeline.yml +10 -0
  11. data/.themes/classic/_config/delicious-feed.yml +4 -0
  12. data/.themes/classic/_config/deploy/gh_pages.yml +9 -0
  13. data/.themes/classic/_config/deploy/rsync.yml +14 -0
  14. data/.themes/classic/_config/disqus.yml +11 -0
  15. data/.themes/classic/_config/facebook-like.yml +2 -0
  16. data/.themes/classic/_config/gauges-analytics.yml +6 -0
  17. data/.themes/classic/_config/github-repos.yml +24 -0
  18. data/.themes/classic/_config/google-analytics.yml +6 -0
  19. data/.themes/classic/_config/google-plus.yml +13 -0
  20. data/.themes/classic/_config/jekyll.yml +37 -0
  21. data/.themes/classic/_config/pinboard-feed.yml +4 -0
  22. data/.themes/classic/_config/require-js.yml +19 -0
  23. data/.themes/classic/_config/theme.yml +54 -0
  24. data/.themes/classic/_config/twitter-timeline.yml +9 -0
  25. data/.themes/classic/assets/javascripts/lib/ios-rotate-scaling-fix.js +18 -0
  26. data/.themes/classic/assets/javascripts/lib/jquery.cookie.js +92 -0
  27. data/.themes/classic/assets/javascripts/lib/modernizr.js +447 -0
  28. data/.themes/classic/assets/javascripts/lib/octopress.js +83 -0
  29. data/.themes/classic/assets/javascripts/modules/adn-timeline.coffee +68 -0
  30. data/.themes/classic/assets/javascripts/modules/delicious-feed.coffee +38 -0
  31. data/.themes/classic/assets/javascripts/modules/github-repos.coffee +60 -0
  32. data/.themes/classic/assets/javascripts/modules/github.coffee +60 -0
  33. data/.themes/classic/assets/javascripts/modules/helpers.coffee +96 -0
  34. data/.themes/classic/assets/javascripts/modules/pinboard-feed.coffee +42 -0
  35. data/.themes/classic/assets/javascripts/modules/site.coffee +11 -0
  36. data/.themes/classic/assets/stylesheets/_base.scss +5 -0
  37. data/.themes/classic/assets/stylesheets/_partials.scss +8 -0
  38. data/.themes/classic/assets/stylesheets/base/_layout.scss +191 -0
  39. data/.themes/classic/assets/stylesheets/base/_solarized.scss +75 -0
  40. data/.themes/classic/assets/stylesheets/base/_theme.scss +92 -0
  41. data/.themes/classic/assets/stylesheets/base/_typography.scss +168 -0
  42. data/.themes/classic/assets/stylesheets/base/_utilities.scss +27 -0
  43. data/.themes/classic/assets/stylesheets/custom/_colors.scss +49 -0
  44. data/.themes/classic/assets/stylesheets/custom/_fonts.scss +10 -0
  45. data/.themes/classic/assets/stylesheets/custom/_layout.scss +17 -0
  46. data/.themes/classic/assets/stylesheets/custom/_styles.scss +2 -0
  47. data/.themes/classic/assets/stylesheets/partials/_archive.scss +77 -0
  48. data/.themes/classic/assets/stylesheets/partials/_blog.scss +165 -0
  49. data/.themes/classic/assets/stylesheets/partials/_footer.scss +19 -0
  50. data/.themes/classic/assets/stylesheets/partials/_header.scss +18 -0
  51. data/.themes/classic/assets/stylesheets/partials/_navigation.scss +136 -0
  52. data/.themes/classic/assets/stylesheets/partials/_sharing.scss +73 -0
  53. data/.themes/classic/assets/stylesheets/partials/_sidebar.scss +4 -0
  54. data/.themes/classic/assets/stylesheets/partials/_syntax.scss +234 -0
  55. data/.themes/classic/assets/stylesheets/partials/sidebar/_base.scss +106 -0
  56. data/.themes/classic/assets/stylesheets/partials/sidebar/_delicious.scss +4 -0
  57. data/.themes/classic/assets/stylesheets/partials/sidebar/_googleplus.scss +26 -0
  58. data/.themes/classic/assets/stylesheets/partials/sidebar/_pinboard.scss +12 -0
  59. data/.themes/classic/assets/stylesheets/plugins/_plugins.scss +5 -0
  60. data/.themes/classic/assets/stylesheets/screen.scss +11 -0
  61. data/.themes/classic/source/404.markdown +9 -0
  62. data/.themes/classic/source/_includes/after_footer.html +7 -0
  63. data/.themes/classic/source/_includes/archive_post.html +12 -0
  64. data/.themes/classic/source/_includes/article.html +23 -0
  65. data/.themes/classic/source/_includes/comments.html +9 -0
  66. data/.themes/classic/source/_includes/custom/after_footer.html +3 -0
  67. data/.themes/classic/source/_includes/custom/after_page.html +1 -0
  68. data/.themes/classic/source/_includes/custom/after_post.html +0 -0
  69. data/.themes/classic/source/_includes/custom/comments.html +5 -0
  70. data/.themes/classic/source/_includes/custom/footer.html +4 -0
  71. data/.themes/classic/source/_includes/custom/head.html +7 -0
  72. data/.themes/classic/source/_includes/custom/header.html +6 -0
  73. data/.themes/classic/source/_includes/custom/navigation.html +4 -0
  74. data/.themes/classic/source/_includes/custom/page_meta.html +1 -0
  75. data/.themes/classic/source/_includes/custom/post_meta.html +1 -0
  76. data/.themes/classic/source/_includes/custom/sharing.html +3 -0
  77. data/.themes/classic/source/_includes/disqus.html +22 -0
  78. data/.themes/classic/source/_includes/facebook_like.html +10 -0
  79. data/.themes/classic/source/_includes/feed_entry.xml +10 -0
  80. data/.themes/classic/source/_includes/footer.html +1 -0
  81. data/.themes/classic/source/_includes/gauges_analytics.html +15 -0
  82. data/.themes/classic/source/_includes/google_analytics.html +13 -0
  83. data/.themes/classic/source/_includes/google_plus_one.html +9 -0
  84. data/.themes/classic/source/_includes/head.html +33 -0
  85. data/.themes/classic/source/_includes/header.html +1 -0
  86. data/.themes/classic/source/_includes/navigation.html +15 -0
  87. data/.themes/classic/source/_includes/post/author.html +8 -0
  88. data/.themes/classic/source/_includes/post/categories.html +10 -0
  89. data/.themes/classic/source/_includes/post/date.html +15 -0
  90. data/.themes/classic/source/_includes/post/disqus_thread.html +1 -0
  91. data/.themes/classic/source/_includes/post/meta.html +3 -0
  92. data/.themes/classic/source/_includes/post/sharing.html +36 -0
  93. data/.themes/classic/source/_includes/post/title.html +5 -0
  94. data/.themes/classic/source/_includes/post/variables.html +14 -0
  95. data/.themes/classic/source/_includes/sidebars/blog_index_default.html +3 -0
  96. data/.themes/classic/source/_includes/sidebars/page_default.html +4 -0
  97. data/.themes/classic/source/_includes/sidebars/post_default.html +4 -0
  98. data/.themes/classic/source/_includes/sidebars/sections/delicious.html +8 -0
  99. data/.themes/classic/source/_includes/sidebars/sections/github.html +9 -0
  100. data/.themes/classic/source/_includes/sidebars/sections/google_plus.html +5 -0
  101. data/.themes/classic/source/_includes/sidebars/sections/pinboard.html +17 -0
  102. data/.themes/classic/source/_includes/sidebars/sections/recent_posts.html +10 -0
  103. data/.themes/classic/source/_includes/twitter_sharing.html +11 -0
  104. data/.themes/classic/source/_layouts/category_feed.xml +24 -0
  105. data/.themes/classic/source/_layouts/category_index.html +19 -0
  106. data/.themes/classic/source/_layouts/default.html +14 -0
  107. data/.themes/classic/source/_layouts/page.html +34 -0
  108. data/.themes/classic/source/_layouts/post.html +39 -0
  109. data/.themes/classic/source/archives/index.html +20 -0
  110. data/.themes/classic/source/assets/jwplayer/glow/controlbar/background.png +0 -0
  111. data/.themes/classic/source/assets/jwplayer/glow/controlbar/blankButton.png +0 -0
  112. data/.themes/classic/source/assets/jwplayer/glow/controlbar/divider.png +0 -0
  113. data/.themes/classic/source/assets/jwplayer/glow/controlbar/fullscreenButton.png +0 -0
  114. data/.themes/classic/source/assets/jwplayer/glow/controlbar/fullscreenButtonOver.png +0 -0
  115. data/.themes/classic/source/assets/jwplayer/glow/controlbar/muteButton.png +0 -0
  116. data/.themes/classic/source/assets/jwplayer/glow/controlbar/muteButtonOver.png +0 -0
  117. data/.themes/classic/source/assets/jwplayer/glow/controlbar/normalscreenButton.png +0 -0
  118. data/.themes/classic/source/assets/jwplayer/glow/controlbar/normalscreenButtonOver.png +0 -0
  119. data/.themes/classic/source/assets/jwplayer/glow/controlbar/pauseButton.png +0 -0
  120. data/.themes/classic/source/assets/jwplayer/glow/controlbar/pauseButtonOver.png +0 -0
  121. data/.themes/classic/source/assets/jwplayer/glow/controlbar/playButton.png +0 -0
  122. data/.themes/classic/source/assets/jwplayer/glow/controlbar/playButtonOver.png +0 -0
  123. data/.themes/classic/source/assets/jwplayer/glow/controlbar/timeSliderBuffer.png +0 -0
  124. data/.themes/classic/source/assets/jwplayer/glow/controlbar/timeSliderCapLeft.png +0 -0
  125. data/.themes/classic/source/assets/jwplayer/glow/controlbar/timeSliderCapRight.png +0 -0
  126. data/.themes/classic/source/assets/jwplayer/glow/controlbar/timeSliderProgress.png +0 -0
  127. data/.themes/classic/source/assets/jwplayer/glow/controlbar/timeSliderRail.png +0 -0
  128. data/.themes/classic/source/assets/jwplayer/glow/controlbar/unmuteButton.png +0 -0
  129. data/.themes/classic/source/assets/jwplayer/glow/controlbar/unmuteButtonOver.png +0 -0
  130. data/.themes/classic/source/assets/jwplayer/glow/display/background.png +0 -0
  131. data/.themes/classic/source/assets/jwplayer/glow/display/bufferIcon.png +0 -0
  132. data/.themes/classic/source/assets/jwplayer/glow/display/muteIcon.png +0 -0
  133. data/.themes/classic/source/assets/jwplayer/glow/display/playIcon.png +0 -0
  134. data/.themes/classic/source/assets/jwplayer/glow/dock/button.png +0 -0
  135. data/.themes/classic/source/assets/jwplayer/glow/glow.xml +115 -0
  136. data/.themes/classic/source/assets/jwplayer/glow/playlist/item.png +0 -0
  137. data/.themes/classic/source/assets/jwplayer/glow/playlist/itemOver.png +0 -0
  138. data/.themes/classic/source/assets/jwplayer/glow/playlist/sliderCapBottom.png +0 -0
  139. data/.themes/classic/source/assets/jwplayer/glow/playlist/sliderCapTop.png +0 -0
  140. data/.themes/classic/source/assets/jwplayer/glow/playlist/sliderRail.png +0 -0
  141. data/.themes/classic/source/assets/jwplayer/glow/playlist/sliderThumb.png +0 -0
  142. data/.themes/classic/source/assets/jwplayer/glow/sharing/embedIcon.png +0 -0
  143. data/.themes/classic/source/assets/jwplayer/glow/sharing/embedScreen.png +0 -0
  144. data/.themes/classic/source/assets/jwplayer/glow/sharing/shareIcon.png +0 -0
  145. data/.themes/classic/source/assets/jwplayer/glow/sharing/shareScreen.png +0 -0
  146. data/.themes/classic/source/assets/jwplayer/player.swf +0 -0
  147. data/.themes/classic/source/atom.xml +23 -0
  148. data/.themes/classic/source/images/bird_32_gray.png +0 -0
  149. data/.themes/classic/source/images/bird_32_gray_fail.png +0 -0
  150. data/.themes/classic/source/images/code_bg.png +0 -0
  151. data/.themes/classic/source/images/dotted-border.png +0 -0
  152. data/.themes/classic/source/images/email.png +0 -0
  153. data/.themes/classic/source/images/icon/facebook.png +0 -0
  154. data/.themes/classic/source/images/icon/github.png +0 -0
  155. data/.themes/classic/source/images/icon/googleplus.png +0 -0
  156. data/.themes/classic/source/images/icon/twitter-bird.png +0 -0
  157. data/.themes/classic/source/images/icon/twitter.png +0 -0
  158. data/.themes/classic/source/images/line-tile.png +0 -0
  159. data/.themes/classic/source/images/noise.png +0 -0
  160. data/.themes/classic/source/images/rss.png +0 -0
  161. data/.themes/classic/source/images/search.png +0 -0
  162. data/.themes/classic/source/index.html +30 -0
  163. data/.themes/classic/source/javascripts/jquery.min.js +5 -0
  164. data/.themes/classic/source/octopress-favicon.png +0 -0
  165. data/.themes/classic/source/robots.txt +7 -0
  166. data/.travis.yml +6 -0
  167. data/CHANGELOG.markdown +46 -0
  168. data/CONTRIBUTING.markdown +17 -0
  169. data/Gemfile +2 -0
  170. data/README.markdown +37 -0
  171. data/Rakefile +76 -0
  172. data/bin/octopress +66 -0
  173. data/lib/console +17 -0
  174. data/lib/guard/jekyll.rb +33 -0
  175. data/lib/octopress.rb +89 -0
  176. data/lib/octopress/command.rb +9 -0
  177. data/lib/octopress/commands.rb +14 -0
  178. data/lib/octopress/commands/build.rb +17 -0
  179. data/lib/octopress/commands/build_javascripts.rb +11 -0
  180. data/lib/octopress/commands/build_jekyll.rb +25 -0
  181. data/lib/octopress/commands/build_stylesheets.rb +13 -0
  182. data/lib/octopress/commands/install.rb +45 -0
  183. data/lib/octopress/commands/new.rb +21 -0
  184. data/lib/octopress/commands/scaffold.rb +101 -0
  185. data/lib/octopress/commands/serve.rb +25 -0
  186. data/lib/octopress/configuration.rb +231 -0
  187. data/lib/octopress/core_ext.rb +44 -0
  188. data/lib/octopress/dependency_installer.rb +287 -0
  189. data/lib/octopress/errors.rb +3 -0
  190. data/lib/octopress/filters/content.rb +66 -0
  191. data/lib/octopress/filters/date.rb +46 -0
  192. data/lib/octopress/filters/post.rb +175 -0
  193. data/lib/octopress/filters/url.rb +34 -0
  194. data/lib/octopress/formatters.rb +9 -0
  195. data/lib/octopress/formatters/base_formatter.rb +17 -0
  196. data/lib/octopress/formatters/simple_formatter.rb +9 -0
  197. data/lib/octopress/formatters/verbose_formatter.rb +9 -0
  198. data/lib/octopress/generators/category_generator.rb +196 -0
  199. data/lib/octopress/generators/sitemap_generator.rb +308 -0
  200. data/lib/octopress/guardfile +43 -0
  201. data/lib/octopress/helpers/titlecase.rb +37 -0
  202. data/lib/octopress/ink.rb +12 -0
  203. data/lib/octopress/inquirable_string.rb +12 -0
  204. data/lib/octopress/installer.rb +92 -0
  205. data/lib/octopress/js_asset_manager.rb +98 -0
  206. data/lib/octopress/liquid_helpers/conditional.rb +36 -0
  207. data/lib/octopress/liquid_helpers/config.rb +58 -0
  208. data/lib/octopress/liquid_helpers/include.rb +33 -0
  209. data/lib/octopress/liquid_helpers/url.rb +29 -0
  210. data/lib/octopress/liquid_helpers/vars.rb +30 -0
  211. data/lib/octopress/plugin.rb +33 -0
  212. data/lib/octopress/rake.rb +16 -0
  213. data/lib/octopress/scaffold/.gitignore +18 -0
  214. data/lib/octopress/scaffold/site/Gemfile +3 -0
  215. data/lib/octopress/scaffold/site/config/compass.rb +27 -0
  216. data/lib/octopress/scaffold/site/config/rack.rb +25 -0
  217. data/lib/octopress/scaffold/site/config/site.yml +0 -0
  218. data/lib/octopress/scaffold/site/javascripts/lib/ios-rotate-scaling-fix.js +19 -0
  219. data/lib/octopress/scaffold/site/javascripts/lib/jquery-1.9.1.js +9598 -0
  220. data/lib/octopress/scaffold/site/javascripts/lib/jquery.cookie.js +93 -0
  221. data/lib/octopress/scaffold/site/stylesheets/_config.scss +1 -0
  222. data/lib/octopress/scaffold/site/stylesheets/_style.scss +1 -0
  223. data/lib/octopress/scaffold/site/stylesheets/site.scss +16 -0
  224. data/lib/octopress/tags/assign.rb +34 -0
  225. data/lib/octopress/tags/capture.rb +31 -0
  226. data/lib/octopress/tags/config-tag.rb +23 -0
  227. data/lib/octopress/tags/include.rb +63 -0
  228. data/lib/octopress/tags/js-assets.rb +23 -0
  229. data/lib/octopress/tags/puts.rb +39 -0
  230. data/lib/octopress/tags/render-partial.rb +89 -0
  231. data/lib/octopress/tags/return.rb +21 -0
  232. data/lib/octopress/version.rb +3 -0
  233. data/lib/rake/clean.rake +8 -0
  234. data/lib/rake/clobber.rake +5 -0
  235. data/lib/rake/console.rake +5 -0
  236. data/lib/rake/deploy.rake +4 -0
  237. data/lib/rake/gen_deploy.rake +2 -0
  238. data/lib/rake/generate.rake +4 -0
  239. data/lib/rake/generate_only.rake +14 -0
  240. data/lib/rake/hygiene.rake +29 -0
  241. data/lib/rake/install.rake +8 -0
  242. data/lib/rake/integrate.rake +4 -0
  243. data/lib/rake/isolate.rake +13 -0
  244. data/lib/rake/list_drafts.rake +7 -0
  245. data/lib/rake/new.rake +7 -0
  246. data/lib/rake/new_page.rake +49 -0
  247. data/lib/rake/new_post.rake +32 -0
  248. data/lib/rake/nuke.rake +4 -0
  249. data/lib/rake/preview.rake +4 -0
  250. data/lib/rake/push.rake +37 -0
  251. data/lib/rake/rsync.rake +20 -0
  252. data/lib/rake/set_root_dir.rake +35 -0
  253. data/lib/rake/setup_github_pages.rake +115 -0
  254. data/lib/rake/watch.rake +11 -0
  255. data/lib/scaffold/Rakefile +142 -0
  256. data/lib/scaffold/plugin-name.gemspec +43 -0
  257. data/lib/spec/fixtures/env/defaults/classic.yml +2 -0
  258. data/lib/spec/fixtures/no_override/defaults/classic.yml +11 -0
  259. data/lib/spec/fixtures/override/defaults/classic.yml +11 -0
  260. data/lib/spec/fixtures/override/site.yml +11 -0
  261. data/lib/spec/octopress/configuration_spec.rb +67 -0
  262. data/lib/spec/octopress/dependency_installer_spec.rb +66 -0
  263. data/lib/spec/octopress/ink_spec.rb +10 -0
  264. data/lib/spec/octopress/octopress_spec.rb +97 -0
  265. data/lib/spec/spec_helper.rb +22 -0
  266. data/lib/spec/support/env.rb +36 -0
  267. data/lib/spec/support/simplecov.rb +52 -0
  268. data/octopress.gemspec +52 -0
  269. metadata +697 -0
@@ -0,0 +1,22 @@
1
+ # This file is copied to spec/ when you run 'rails generate rspec:install'
2
+ require './lib/spec/support/simplecov'
3
+ require File.expand_path("../../octopress", __FILE__)
4
+ require 'rspec'
5
+ require 'rspec/autorun'
6
+
7
+ # Requires supporting ruby files with custom matchers and macros, etc,
8
+ # in spec/support/ and its subdirectories.
9
+ Dir[Octopress.lib_root.concat("/spec/support/**/*.rb")].each {|f| require f}
10
+
11
+ RSpec.configure do |config|
12
+ # Include FactoryGirl helpers
13
+ # config.include FactoryGirl::Syntax::Methods
14
+
15
+ # Run specs in random order to surface order dependencies. If you find an
16
+ # order dependency and want to debug it, you can fix the order by providing
17
+ # the seed, which is printed after each run.
18
+ # --seed 1234
19
+ config.order = "random"
20
+
21
+ config.include Octopress::Test::Environment
22
+ end
@@ -0,0 +1,36 @@
1
+ module Octopress
2
+ # Infrastructure for simplifying test setup and teardown for Octopress.
3
+ module Test
4
+ # Manage the `OCTOPRESS_ENV` environment variable to prevent
5
+ # cross-test-method tainting.
6
+ #
7
+ # Simply put the following in the top of your outer-most `describe` block
8
+ # and the rest will be taken care of automatically:
9
+ #
10
+ # ```ruby
11
+ # include Octopress::Test::Environment
12
+ # ```
13
+ module Environment
14
+ def fixture_path(fixture=nil)
15
+ @base_fixture_path ||= File.expand_path(File.join(File.dirname(__FILE__), '..', 'fixtures'))
16
+ path = @base_fixture_path
17
+ path = File.join(path, fixture) if fixture
18
+ return path
19
+ end
20
+
21
+ def self.included(target)
22
+ target.instance_eval do
23
+ before do
24
+ Octopress.clear_config!
25
+ @old_env = ENV['OCTOPRESS_ENV']
26
+ ENV['OCTOPRESS_ENV'] = nil
27
+ end
28
+
29
+ after do
30
+ ENV['OCTOPRESS_ENV'] = @old_env
31
+ end
32
+ end
33
+ end
34
+ end
35
+ end
36
+ end
@@ -0,0 +1,52 @@
1
+ using_coverage = ENV['USING_COVERAGE'] || ''
2
+ if(using_coverage == '')
3
+ using_coverage = false
4
+ else
5
+ using_coverage = (using_coverage.to_i != 0)
6
+ end
7
+
8
+ if(using_coverage)
9
+ puts "Enabling SimpleCov..."
10
+ BASE_DIR = File.expand_path(File.join(__FILE__, '../../../..'))
11
+ def expand_path(p)
12
+ return File.expand_path(File.join(BASE_DIR, p))
13
+ end
14
+ CORE_PATHS=[
15
+ expand_path("lib/octopress.rb"),
16
+ expand_path("lib/octopress"),
17
+ ]
18
+ RAKE_PATHS=[
19
+ expand_path("Rakefile"),
20
+ expand_path("lib/rake"),
21
+ ]
22
+ GUARD_PATHS=[
23
+ expand_path("lib/guard"),
24
+ ]
25
+ MISC_PATHS=[
26
+ expand_path("config.rb"),
27
+ expand_path("config.ru"),
28
+ expand_path("lib/console"),
29
+ ]
30
+ TEST_PATHS=[
31
+ expand_path("lib/spec"),
32
+ ]
33
+
34
+ require 'simplecov'
35
+ SimpleCov.start do
36
+ add_group "Core" do |src_file|
37
+ CORE_PATHS.map { |p| src_file.filename.start_with?(p) }.select { |tf| tf }.count != 0
38
+ end
39
+ add_group "Rake" do |src_file|
40
+ RAKE_PATHS.map { |p| src_file.filename.start_with?(p) }.select { |tf| tf }.count != 0
41
+ end
42
+ add_group "Guard" do |src_file|
43
+ GUARD_PATHS.map { |p| src_file.filename.start_with?(p) }.select { |tf| tf }.count != 0
44
+ end
45
+ add_group "Misc" do |src_file|
46
+ MISC_PATHS.map { |p| src_file.filename.start_with?(p) }.select { |tf| tf }.count != 0
47
+ end
48
+ add_group "Test" do |src_file|
49
+ TEST_PATHS.map { |p| src_file.filename.start_with?(p) }.select { |tf| tf }.count != 0
50
+ end
51
+ end
52
+ end
@@ -0,0 +1,52 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'octopress/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "octopress"
8
+ spec.version = Octopress::VERSION
9
+ spec.authors = ["Brandon Mathis", "Parker Moore"]
10
+ spec.email = ["brandon@imathis.com", "parkrmoore@gmail.com"]
11
+ spec.description = "Octopress is an obsessively designed framework for Jekyll blogging. It's easy to configure and easy to deploy. Sweet huh?"
12
+ spec.summary = "Octopress is an obsessively designed framework for Jekyll blogging."
13
+ spec.homepage = "http://octopress.org"
14
+ spec.license = "MIT"
15
+
16
+ spec.rdoc_options = ["--charset=UTF-8"]
17
+ spec.extra_rdoc_files = %w[README.markdown CHANGELOG.markdown]
18
+
19
+ spec.files = `git ls-files`.split($/)
20
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
21
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
22
+ spec.require_paths = ["lib"]
23
+
24
+ spec.add_runtime_dependency('rake', '~> 10.1.0')
25
+ spec.add_runtime_dependency('rack', '~> 1.5.0')
26
+ spec.add_runtime_dependency('jekyll', '~> 1.0.2')
27
+ spec.add_runtime_dependency('redcarpet', '~> 2.2.2')
28
+ spec.add_runtime_dependency('RedCloth', '~> 4.2.9')
29
+ spec.add_runtime_dependency('haml', '~> 3.1.7')
30
+ spec.add_runtime_dependency('compass', '~> 0.12.2')
31
+ spec.add_runtime_dependency('sass-globbing', '~> 1.0.0')
32
+ spec.add_runtime_dependency('rubypants', '~> 0.2.0')
33
+ spec.add_runtime_dependency('stringex', '~> 1.4.0')
34
+ spec.add_runtime_dependency('liquid', '~> 2.3.0')
35
+ spec.add_runtime_dependency('tzinfo', '~> 0.3.35')
36
+ spec.add_runtime_dependency('json', '~> 1.7.7')
37
+ spec.add_runtime_dependency('sinatra', '~> 1.4.2')
38
+ spec.add_runtime_dependency('stitch-rb', '~> 0.0.8')
39
+ spec.add_runtime_dependency('uglifier', '~> 2.1.0')
40
+ spec.add_runtime_dependency('guard', '~> 1.8.0')
41
+ spec.add_runtime_dependency('guard-shell', '~> 0.5.1')
42
+ spec.add_runtime_dependency('guard-compass', '~> 0.0.6')
43
+ spec.add_runtime_dependency('guard-coffeescript', '~> 1.3.0')
44
+ spec.add_runtime_dependency('rb-inotify', '~> 0.9.0')
45
+ spec.add_runtime_dependency('rb-fsevent', '~> 0.9.3')
46
+ spec.add_runtime_dependency('rb-fchange', '~> 0.0.6')
47
+
48
+ spec.add_development_dependency('bundler', '~> 1.3')
49
+ spec.add_development_dependency('rspec', '~> 2.13.0')
50
+ spec.add_development_dependency('rubocop', '~> 0.8.2')
51
+ spec.add_development_dependency('pry', '~> 0.9.12')
52
+ end
metadata ADDED
@@ -0,0 +1,697 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: octopress
3
+ version: !ruby/object:Gem::Version
4
+ version: 3.0.0.alpha1
5
+ platform: ruby
6
+ authors:
7
+ - Brandon Mathis
8
+ - Parker Moore
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2013-07-13 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: rake
16
+ requirement: !ruby/object:Gem::Requirement
17
+ requirements:
18
+ - - ~>
19
+ - !ruby/object:Gem::Version
20
+ version: 10.1.0
21
+ type: :runtime
22
+ prerelease: false
23
+ version_requirements: !ruby/object:Gem::Requirement
24
+ requirements:
25
+ - - ~>
26
+ - !ruby/object:Gem::Version
27
+ version: 10.1.0
28
+ - !ruby/object:Gem::Dependency
29
+ name: rack
30
+ requirement: !ruby/object:Gem::Requirement
31
+ requirements:
32
+ - - ~>
33
+ - !ruby/object:Gem::Version
34
+ version: 1.5.0
35
+ type: :runtime
36
+ prerelease: false
37
+ version_requirements: !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - ~>
40
+ - !ruby/object:Gem::Version
41
+ version: 1.5.0
42
+ - !ruby/object:Gem::Dependency
43
+ name: jekyll
44
+ requirement: !ruby/object:Gem::Requirement
45
+ requirements:
46
+ - - ~>
47
+ - !ruby/object:Gem::Version
48
+ version: 1.0.2
49
+ type: :runtime
50
+ prerelease: false
51
+ version_requirements: !ruby/object:Gem::Requirement
52
+ requirements:
53
+ - - ~>
54
+ - !ruby/object:Gem::Version
55
+ version: 1.0.2
56
+ - !ruby/object:Gem::Dependency
57
+ name: redcarpet
58
+ requirement: !ruby/object:Gem::Requirement
59
+ requirements:
60
+ - - ~>
61
+ - !ruby/object:Gem::Version
62
+ version: 2.2.2
63
+ type: :runtime
64
+ prerelease: false
65
+ version_requirements: !ruby/object:Gem::Requirement
66
+ requirements:
67
+ - - ~>
68
+ - !ruby/object:Gem::Version
69
+ version: 2.2.2
70
+ - !ruby/object:Gem::Dependency
71
+ name: RedCloth
72
+ requirement: !ruby/object:Gem::Requirement
73
+ requirements:
74
+ - - ~>
75
+ - !ruby/object:Gem::Version
76
+ version: 4.2.9
77
+ type: :runtime
78
+ prerelease: false
79
+ version_requirements: !ruby/object:Gem::Requirement
80
+ requirements:
81
+ - - ~>
82
+ - !ruby/object:Gem::Version
83
+ version: 4.2.9
84
+ - !ruby/object:Gem::Dependency
85
+ name: haml
86
+ requirement: !ruby/object:Gem::Requirement
87
+ requirements:
88
+ - - ~>
89
+ - !ruby/object:Gem::Version
90
+ version: 3.1.7
91
+ type: :runtime
92
+ prerelease: false
93
+ version_requirements: !ruby/object:Gem::Requirement
94
+ requirements:
95
+ - - ~>
96
+ - !ruby/object:Gem::Version
97
+ version: 3.1.7
98
+ - !ruby/object:Gem::Dependency
99
+ name: compass
100
+ requirement: !ruby/object:Gem::Requirement
101
+ requirements:
102
+ - - ~>
103
+ - !ruby/object:Gem::Version
104
+ version: 0.12.2
105
+ type: :runtime
106
+ prerelease: false
107
+ version_requirements: !ruby/object:Gem::Requirement
108
+ requirements:
109
+ - - ~>
110
+ - !ruby/object:Gem::Version
111
+ version: 0.12.2
112
+ - !ruby/object:Gem::Dependency
113
+ name: sass-globbing
114
+ requirement: !ruby/object:Gem::Requirement
115
+ requirements:
116
+ - - ~>
117
+ - !ruby/object:Gem::Version
118
+ version: 1.0.0
119
+ type: :runtime
120
+ prerelease: false
121
+ version_requirements: !ruby/object:Gem::Requirement
122
+ requirements:
123
+ - - ~>
124
+ - !ruby/object:Gem::Version
125
+ version: 1.0.0
126
+ - !ruby/object:Gem::Dependency
127
+ name: rubypants
128
+ requirement: !ruby/object:Gem::Requirement
129
+ requirements:
130
+ - - ~>
131
+ - !ruby/object:Gem::Version
132
+ version: 0.2.0
133
+ type: :runtime
134
+ prerelease: false
135
+ version_requirements: !ruby/object:Gem::Requirement
136
+ requirements:
137
+ - - ~>
138
+ - !ruby/object:Gem::Version
139
+ version: 0.2.0
140
+ - !ruby/object:Gem::Dependency
141
+ name: stringex
142
+ requirement: !ruby/object:Gem::Requirement
143
+ requirements:
144
+ - - ~>
145
+ - !ruby/object:Gem::Version
146
+ version: 1.4.0
147
+ type: :runtime
148
+ prerelease: false
149
+ version_requirements: !ruby/object:Gem::Requirement
150
+ requirements:
151
+ - - ~>
152
+ - !ruby/object:Gem::Version
153
+ version: 1.4.0
154
+ - !ruby/object:Gem::Dependency
155
+ name: liquid
156
+ requirement: !ruby/object:Gem::Requirement
157
+ requirements:
158
+ - - ~>
159
+ - !ruby/object:Gem::Version
160
+ version: 2.3.0
161
+ type: :runtime
162
+ prerelease: false
163
+ version_requirements: !ruby/object:Gem::Requirement
164
+ requirements:
165
+ - - ~>
166
+ - !ruby/object:Gem::Version
167
+ version: 2.3.0
168
+ - !ruby/object:Gem::Dependency
169
+ name: tzinfo
170
+ requirement: !ruby/object:Gem::Requirement
171
+ requirements:
172
+ - - ~>
173
+ - !ruby/object:Gem::Version
174
+ version: 0.3.35
175
+ type: :runtime
176
+ prerelease: false
177
+ version_requirements: !ruby/object:Gem::Requirement
178
+ requirements:
179
+ - - ~>
180
+ - !ruby/object:Gem::Version
181
+ version: 0.3.35
182
+ - !ruby/object:Gem::Dependency
183
+ name: json
184
+ requirement: !ruby/object:Gem::Requirement
185
+ requirements:
186
+ - - ~>
187
+ - !ruby/object:Gem::Version
188
+ version: 1.7.7
189
+ type: :runtime
190
+ prerelease: false
191
+ version_requirements: !ruby/object:Gem::Requirement
192
+ requirements:
193
+ - - ~>
194
+ - !ruby/object:Gem::Version
195
+ version: 1.7.7
196
+ - !ruby/object:Gem::Dependency
197
+ name: sinatra
198
+ requirement: !ruby/object:Gem::Requirement
199
+ requirements:
200
+ - - ~>
201
+ - !ruby/object:Gem::Version
202
+ version: 1.4.2
203
+ type: :runtime
204
+ prerelease: false
205
+ version_requirements: !ruby/object:Gem::Requirement
206
+ requirements:
207
+ - - ~>
208
+ - !ruby/object:Gem::Version
209
+ version: 1.4.2
210
+ - !ruby/object:Gem::Dependency
211
+ name: stitch-rb
212
+ requirement: !ruby/object:Gem::Requirement
213
+ requirements:
214
+ - - ~>
215
+ - !ruby/object:Gem::Version
216
+ version: 0.0.8
217
+ type: :runtime
218
+ prerelease: false
219
+ version_requirements: !ruby/object:Gem::Requirement
220
+ requirements:
221
+ - - ~>
222
+ - !ruby/object:Gem::Version
223
+ version: 0.0.8
224
+ - !ruby/object:Gem::Dependency
225
+ name: uglifier
226
+ requirement: !ruby/object:Gem::Requirement
227
+ requirements:
228
+ - - ~>
229
+ - !ruby/object:Gem::Version
230
+ version: 2.1.0
231
+ type: :runtime
232
+ prerelease: false
233
+ version_requirements: !ruby/object:Gem::Requirement
234
+ requirements:
235
+ - - ~>
236
+ - !ruby/object:Gem::Version
237
+ version: 2.1.0
238
+ - !ruby/object:Gem::Dependency
239
+ name: guard
240
+ requirement: !ruby/object:Gem::Requirement
241
+ requirements:
242
+ - - ~>
243
+ - !ruby/object:Gem::Version
244
+ version: 1.8.0
245
+ type: :runtime
246
+ prerelease: false
247
+ version_requirements: !ruby/object:Gem::Requirement
248
+ requirements:
249
+ - - ~>
250
+ - !ruby/object:Gem::Version
251
+ version: 1.8.0
252
+ - !ruby/object:Gem::Dependency
253
+ name: guard-shell
254
+ requirement: !ruby/object:Gem::Requirement
255
+ requirements:
256
+ - - ~>
257
+ - !ruby/object:Gem::Version
258
+ version: 0.5.1
259
+ type: :runtime
260
+ prerelease: false
261
+ version_requirements: !ruby/object:Gem::Requirement
262
+ requirements:
263
+ - - ~>
264
+ - !ruby/object:Gem::Version
265
+ version: 0.5.1
266
+ - !ruby/object:Gem::Dependency
267
+ name: guard-compass
268
+ requirement: !ruby/object:Gem::Requirement
269
+ requirements:
270
+ - - ~>
271
+ - !ruby/object:Gem::Version
272
+ version: 0.0.6
273
+ type: :runtime
274
+ prerelease: false
275
+ version_requirements: !ruby/object:Gem::Requirement
276
+ requirements:
277
+ - - ~>
278
+ - !ruby/object:Gem::Version
279
+ version: 0.0.6
280
+ - !ruby/object:Gem::Dependency
281
+ name: guard-coffeescript
282
+ requirement: !ruby/object:Gem::Requirement
283
+ requirements:
284
+ - - ~>
285
+ - !ruby/object:Gem::Version
286
+ version: 1.3.0
287
+ type: :runtime
288
+ prerelease: false
289
+ version_requirements: !ruby/object:Gem::Requirement
290
+ requirements:
291
+ - - ~>
292
+ - !ruby/object:Gem::Version
293
+ version: 1.3.0
294
+ - !ruby/object:Gem::Dependency
295
+ name: rb-inotify
296
+ requirement: !ruby/object:Gem::Requirement
297
+ requirements:
298
+ - - ~>
299
+ - !ruby/object:Gem::Version
300
+ version: 0.9.0
301
+ type: :runtime
302
+ prerelease: false
303
+ version_requirements: !ruby/object:Gem::Requirement
304
+ requirements:
305
+ - - ~>
306
+ - !ruby/object:Gem::Version
307
+ version: 0.9.0
308
+ - !ruby/object:Gem::Dependency
309
+ name: rb-fsevent
310
+ requirement: !ruby/object:Gem::Requirement
311
+ requirements:
312
+ - - ~>
313
+ - !ruby/object:Gem::Version
314
+ version: 0.9.3
315
+ type: :runtime
316
+ prerelease: false
317
+ version_requirements: !ruby/object:Gem::Requirement
318
+ requirements:
319
+ - - ~>
320
+ - !ruby/object:Gem::Version
321
+ version: 0.9.3
322
+ - !ruby/object:Gem::Dependency
323
+ name: rb-fchange
324
+ requirement: !ruby/object:Gem::Requirement
325
+ requirements:
326
+ - - ~>
327
+ - !ruby/object:Gem::Version
328
+ version: 0.0.6
329
+ type: :runtime
330
+ prerelease: false
331
+ version_requirements: !ruby/object:Gem::Requirement
332
+ requirements:
333
+ - - ~>
334
+ - !ruby/object:Gem::Version
335
+ version: 0.0.6
336
+ - !ruby/object:Gem::Dependency
337
+ name: bundler
338
+ requirement: !ruby/object:Gem::Requirement
339
+ requirements:
340
+ - - ~>
341
+ - !ruby/object:Gem::Version
342
+ version: '1.3'
343
+ type: :development
344
+ prerelease: false
345
+ version_requirements: !ruby/object:Gem::Requirement
346
+ requirements:
347
+ - - ~>
348
+ - !ruby/object:Gem::Version
349
+ version: '1.3'
350
+ - !ruby/object:Gem::Dependency
351
+ name: rspec
352
+ requirement: !ruby/object:Gem::Requirement
353
+ requirements:
354
+ - - ~>
355
+ - !ruby/object:Gem::Version
356
+ version: 2.13.0
357
+ type: :development
358
+ prerelease: false
359
+ version_requirements: !ruby/object:Gem::Requirement
360
+ requirements:
361
+ - - ~>
362
+ - !ruby/object:Gem::Version
363
+ version: 2.13.0
364
+ - !ruby/object:Gem::Dependency
365
+ name: rubocop
366
+ requirement: !ruby/object:Gem::Requirement
367
+ requirements:
368
+ - - ~>
369
+ - !ruby/object:Gem::Version
370
+ version: 0.8.2
371
+ type: :development
372
+ prerelease: false
373
+ version_requirements: !ruby/object:Gem::Requirement
374
+ requirements:
375
+ - - ~>
376
+ - !ruby/object:Gem::Version
377
+ version: 0.8.2
378
+ - !ruby/object:Gem::Dependency
379
+ name: pry
380
+ requirement: !ruby/object:Gem::Requirement
381
+ requirements:
382
+ - - ~>
383
+ - !ruby/object:Gem::Version
384
+ version: 0.9.12
385
+ type: :development
386
+ prerelease: false
387
+ version_requirements: !ruby/object:Gem::Requirement
388
+ requirements:
389
+ - - ~>
390
+ - !ruby/object:Gem::Version
391
+ version: 0.9.12
392
+ description: Octopress is an obsessively designed framework for Jekyll blogging. It's
393
+ easy to configure and easy to deploy. Sweet huh?
394
+ email:
395
+ - brandon@imathis.com
396
+ - parkrmoore@gmail.com
397
+ executables:
398
+ - octopress
399
+ extensions: []
400
+ extra_rdoc_files:
401
+ - README.markdown
402
+ - CHANGELOG.markdown
403
+ files:
404
+ - .editorconfig
405
+ - .gitattributes
406
+ - .gitignore
407
+ - .powrc
408
+ - .rspec
409
+ - .rubocop.yml
410
+ - .slugignore
411
+ - .themes/classic/.editorconfig
412
+ - .themes/classic/_config/adn-timeline.yml
413
+ - .themes/classic/_config/delicious-feed.yml
414
+ - .themes/classic/_config/deploy/gh_pages.yml
415
+ - .themes/classic/_config/deploy/rsync.yml
416
+ - .themes/classic/_config/disqus.yml
417
+ - .themes/classic/_config/facebook-like.yml
418
+ - .themes/classic/_config/gauges-analytics.yml
419
+ - .themes/classic/_config/github-repos.yml
420
+ - .themes/classic/_config/google-analytics.yml
421
+ - .themes/classic/_config/google-plus.yml
422
+ - .themes/classic/_config/jekyll.yml
423
+ - .themes/classic/_config/pinboard-feed.yml
424
+ - .themes/classic/_config/require-js.yml
425
+ - .themes/classic/_config/theme.yml
426
+ - .themes/classic/_config/twitter-timeline.yml
427
+ - .themes/classic/assets/javascripts/lib/ios-rotate-scaling-fix.js
428
+ - .themes/classic/assets/javascripts/lib/jquery.cookie.js
429
+ - .themes/classic/assets/javascripts/lib/modernizr.js
430
+ - .themes/classic/assets/javascripts/lib/octopress.js
431
+ - .themes/classic/assets/javascripts/modules/adn-timeline.coffee
432
+ - .themes/classic/assets/javascripts/modules/delicious-feed.coffee
433
+ - .themes/classic/assets/javascripts/modules/github-repos.coffee
434
+ - .themes/classic/assets/javascripts/modules/github.coffee
435
+ - .themes/classic/assets/javascripts/modules/helpers.coffee
436
+ - .themes/classic/assets/javascripts/modules/pinboard-feed.coffee
437
+ - .themes/classic/assets/javascripts/modules/site.coffee
438
+ - .themes/classic/assets/stylesheets/_base.scss
439
+ - .themes/classic/assets/stylesheets/_partials.scss
440
+ - .themes/classic/assets/stylesheets/base/_layout.scss
441
+ - .themes/classic/assets/stylesheets/base/_solarized.scss
442
+ - .themes/classic/assets/stylesheets/base/_theme.scss
443
+ - .themes/classic/assets/stylesheets/base/_typography.scss
444
+ - .themes/classic/assets/stylesheets/base/_utilities.scss
445
+ - .themes/classic/assets/stylesheets/custom/_colors.scss
446
+ - .themes/classic/assets/stylesheets/custom/_fonts.scss
447
+ - .themes/classic/assets/stylesheets/custom/_layout.scss
448
+ - .themes/classic/assets/stylesheets/custom/_styles.scss
449
+ - .themes/classic/assets/stylesheets/partials/_archive.scss
450
+ - .themes/classic/assets/stylesheets/partials/_blog.scss
451
+ - .themes/classic/assets/stylesheets/partials/_footer.scss
452
+ - .themes/classic/assets/stylesheets/partials/_header.scss
453
+ - .themes/classic/assets/stylesheets/partials/_navigation.scss
454
+ - .themes/classic/assets/stylesheets/partials/_sharing.scss
455
+ - .themes/classic/assets/stylesheets/partials/_sidebar.scss
456
+ - .themes/classic/assets/stylesheets/partials/_syntax.scss
457
+ - .themes/classic/assets/stylesheets/partials/sidebar/_base.scss
458
+ - .themes/classic/assets/stylesheets/partials/sidebar/_delicious.scss
459
+ - .themes/classic/assets/stylesheets/partials/sidebar/_googleplus.scss
460
+ - .themes/classic/assets/stylesheets/partials/sidebar/_pinboard.scss
461
+ - .themes/classic/assets/stylesheets/plugins/_plugins.scss
462
+ - .themes/classic/assets/stylesheets/screen.scss
463
+ - .themes/classic/source/404.markdown
464
+ - .themes/classic/source/_includes/after_footer.html
465
+ - .themes/classic/source/_includes/archive_post.html
466
+ - .themes/classic/source/_includes/article.html
467
+ - .themes/classic/source/_includes/comments.html
468
+ - .themes/classic/source/_includes/custom/after_footer.html
469
+ - .themes/classic/source/_includes/custom/after_page.html
470
+ - .themes/classic/source/_includes/custom/after_post.html
471
+ - .themes/classic/source/_includes/custom/comments.html
472
+ - .themes/classic/source/_includes/custom/footer.html
473
+ - .themes/classic/source/_includes/custom/head.html
474
+ - .themes/classic/source/_includes/custom/header.html
475
+ - .themes/classic/source/_includes/custom/navigation.html
476
+ - .themes/classic/source/_includes/custom/page_meta.html
477
+ - .themes/classic/source/_includes/custom/post_meta.html
478
+ - .themes/classic/source/_includes/custom/sharing.html
479
+ - .themes/classic/source/_includes/disqus.html
480
+ - .themes/classic/source/_includes/facebook_like.html
481
+ - .themes/classic/source/_includes/feed_entry.xml
482
+ - .themes/classic/source/_includes/footer.html
483
+ - .themes/classic/source/_includes/gauges_analytics.html
484
+ - .themes/classic/source/_includes/google_analytics.html
485
+ - .themes/classic/source/_includes/google_plus_one.html
486
+ - .themes/classic/source/_includes/head.html
487
+ - .themes/classic/source/_includes/header.html
488
+ - .themes/classic/source/_includes/navigation.html
489
+ - .themes/classic/source/_includes/post/author.html
490
+ - .themes/classic/source/_includes/post/categories.html
491
+ - .themes/classic/source/_includes/post/date.html
492
+ - .themes/classic/source/_includes/post/disqus_thread.html
493
+ - .themes/classic/source/_includes/post/meta.html
494
+ - .themes/classic/source/_includes/post/sharing.html
495
+ - .themes/classic/source/_includes/post/title.html
496
+ - .themes/classic/source/_includes/post/variables.html
497
+ - .themes/classic/source/_includes/sidebars/blog_index_default.html
498
+ - .themes/classic/source/_includes/sidebars/page_default.html
499
+ - .themes/classic/source/_includes/sidebars/post_default.html
500
+ - .themes/classic/source/_includes/sidebars/sections/delicious.html
501
+ - .themes/classic/source/_includes/sidebars/sections/github.html
502
+ - .themes/classic/source/_includes/sidebars/sections/google_plus.html
503
+ - .themes/classic/source/_includes/sidebars/sections/pinboard.html
504
+ - .themes/classic/source/_includes/sidebars/sections/recent_posts.html
505
+ - .themes/classic/source/_includes/twitter_sharing.html
506
+ - .themes/classic/source/_layouts/category_feed.xml
507
+ - .themes/classic/source/_layouts/category_index.html
508
+ - .themes/classic/source/_layouts/default.html
509
+ - .themes/classic/source/_layouts/page.html
510
+ - .themes/classic/source/_layouts/post.html
511
+ - .themes/classic/source/archives/index.html
512
+ - .themes/classic/source/assets/jwplayer/glow/controlbar/background.png
513
+ - .themes/classic/source/assets/jwplayer/glow/controlbar/blankButton.png
514
+ - .themes/classic/source/assets/jwplayer/glow/controlbar/divider.png
515
+ - .themes/classic/source/assets/jwplayer/glow/controlbar/fullscreenButton.png
516
+ - .themes/classic/source/assets/jwplayer/glow/controlbar/fullscreenButtonOver.png
517
+ - .themes/classic/source/assets/jwplayer/glow/controlbar/muteButton.png
518
+ - .themes/classic/source/assets/jwplayer/glow/controlbar/muteButtonOver.png
519
+ - .themes/classic/source/assets/jwplayer/glow/controlbar/normalscreenButton.png
520
+ - .themes/classic/source/assets/jwplayer/glow/controlbar/normalscreenButtonOver.png
521
+ - .themes/classic/source/assets/jwplayer/glow/controlbar/pauseButton.png
522
+ - .themes/classic/source/assets/jwplayer/glow/controlbar/pauseButtonOver.png
523
+ - .themes/classic/source/assets/jwplayer/glow/controlbar/playButton.png
524
+ - .themes/classic/source/assets/jwplayer/glow/controlbar/playButtonOver.png
525
+ - .themes/classic/source/assets/jwplayer/glow/controlbar/timeSliderBuffer.png
526
+ - .themes/classic/source/assets/jwplayer/glow/controlbar/timeSliderCapLeft.png
527
+ - .themes/classic/source/assets/jwplayer/glow/controlbar/timeSliderCapRight.png
528
+ - .themes/classic/source/assets/jwplayer/glow/controlbar/timeSliderProgress.png
529
+ - .themes/classic/source/assets/jwplayer/glow/controlbar/timeSliderRail.png
530
+ - .themes/classic/source/assets/jwplayer/glow/controlbar/unmuteButton.png
531
+ - .themes/classic/source/assets/jwplayer/glow/controlbar/unmuteButtonOver.png
532
+ - .themes/classic/source/assets/jwplayer/glow/display/background.png
533
+ - .themes/classic/source/assets/jwplayer/glow/display/bufferIcon.png
534
+ - .themes/classic/source/assets/jwplayer/glow/display/muteIcon.png
535
+ - .themes/classic/source/assets/jwplayer/glow/display/playIcon.png
536
+ - .themes/classic/source/assets/jwplayer/glow/dock/button.png
537
+ - .themes/classic/source/assets/jwplayer/glow/glow.xml
538
+ - .themes/classic/source/assets/jwplayer/glow/playlist/item.png
539
+ - .themes/classic/source/assets/jwplayer/glow/playlist/itemOver.png
540
+ - .themes/classic/source/assets/jwplayer/glow/playlist/sliderCapBottom.png
541
+ - .themes/classic/source/assets/jwplayer/glow/playlist/sliderCapTop.png
542
+ - .themes/classic/source/assets/jwplayer/glow/playlist/sliderRail.png
543
+ - .themes/classic/source/assets/jwplayer/glow/playlist/sliderThumb.png
544
+ - .themes/classic/source/assets/jwplayer/glow/sharing/embedIcon.png
545
+ - .themes/classic/source/assets/jwplayer/glow/sharing/embedScreen.png
546
+ - .themes/classic/source/assets/jwplayer/glow/sharing/shareIcon.png
547
+ - .themes/classic/source/assets/jwplayer/glow/sharing/shareScreen.png
548
+ - .themes/classic/source/assets/jwplayer/player.swf
549
+ - .themes/classic/source/atom.xml
550
+ - .themes/classic/source/images/bird_32_gray.png
551
+ - .themes/classic/source/images/bird_32_gray_fail.png
552
+ - .themes/classic/source/images/code_bg.png
553
+ - .themes/classic/source/images/dotted-border.png
554
+ - .themes/classic/source/images/email.png
555
+ - .themes/classic/source/images/icon/facebook.png
556
+ - .themes/classic/source/images/icon/github.png
557
+ - .themes/classic/source/images/icon/googleplus.png
558
+ - .themes/classic/source/images/icon/twitter-bird.png
559
+ - .themes/classic/source/images/icon/twitter.png
560
+ - .themes/classic/source/images/line-tile.png
561
+ - .themes/classic/source/images/noise.png
562
+ - .themes/classic/source/images/rss.png
563
+ - .themes/classic/source/images/search.png
564
+ - .themes/classic/source/index.html
565
+ - .themes/classic/source/javascripts/jquery.min.js
566
+ - .themes/classic/source/octopress-favicon.png
567
+ - .themes/classic/source/robots.txt
568
+ - .travis.yml
569
+ - CHANGELOG.markdown
570
+ - CONTRIBUTING.markdown
571
+ - Gemfile
572
+ - README.markdown
573
+ - Rakefile
574
+ - bin/octopress
575
+ - lib/console
576
+ - lib/guard/jekyll.rb
577
+ - lib/octopress.rb
578
+ - lib/octopress/command.rb
579
+ - lib/octopress/commands.rb
580
+ - lib/octopress/commands/build.rb
581
+ - lib/octopress/commands/build_javascripts.rb
582
+ - lib/octopress/commands/build_jekyll.rb
583
+ - lib/octopress/commands/build_stylesheets.rb
584
+ - lib/octopress/commands/install.rb
585
+ - lib/octopress/commands/new.rb
586
+ - lib/octopress/commands/scaffold.rb
587
+ - lib/octopress/commands/serve.rb
588
+ - lib/octopress/configuration.rb
589
+ - lib/octopress/core_ext.rb
590
+ - lib/octopress/dependency_installer.rb
591
+ - lib/octopress/errors.rb
592
+ - lib/octopress/filters/content.rb
593
+ - lib/octopress/filters/date.rb
594
+ - lib/octopress/filters/post.rb
595
+ - lib/octopress/filters/url.rb
596
+ - lib/octopress/formatters.rb
597
+ - lib/octopress/formatters/base_formatter.rb
598
+ - lib/octopress/formatters/simple_formatter.rb
599
+ - lib/octopress/formatters/verbose_formatter.rb
600
+ - lib/octopress/generators/category_generator.rb
601
+ - lib/octopress/generators/sitemap_generator.rb
602
+ - lib/octopress/guardfile
603
+ - lib/octopress/helpers/titlecase.rb
604
+ - lib/octopress/ink.rb
605
+ - lib/octopress/inquirable_string.rb
606
+ - lib/octopress/installer.rb
607
+ - lib/octopress/js_asset_manager.rb
608
+ - lib/octopress/liquid_helpers/conditional.rb
609
+ - lib/octopress/liquid_helpers/config.rb
610
+ - lib/octopress/liquid_helpers/include.rb
611
+ - lib/octopress/liquid_helpers/url.rb
612
+ - lib/octopress/liquid_helpers/vars.rb
613
+ - lib/octopress/plugin.rb
614
+ - lib/octopress/rake.rb
615
+ - lib/octopress/scaffold/.gitignore
616
+ - lib/octopress/scaffold/site/Gemfile
617
+ - lib/octopress/scaffold/site/config/compass.rb
618
+ - lib/octopress/scaffold/site/config/rack.rb
619
+ - lib/octopress/scaffold/site/config/site.yml
620
+ - lib/octopress/scaffold/site/javascripts/lib/ios-rotate-scaling-fix.js
621
+ - lib/octopress/scaffold/site/javascripts/lib/jquery-1.9.1.js
622
+ - lib/octopress/scaffold/site/javascripts/lib/jquery.cookie.js
623
+ - lib/octopress/scaffold/site/stylesheets/_config.scss
624
+ - lib/octopress/scaffold/site/stylesheets/_style.scss
625
+ - lib/octopress/scaffold/site/stylesheets/site.scss
626
+ - lib/octopress/tags/assign.rb
627
+ - lib/octopress/tags/capture.rb
628
+ - lib/octopress/tags/config-tag.rb
629
+ - lib/octopress/tags/include.rb
630
+ - lib/octopress/tags/js-assets.rb
631
+ - lib/octopress/tags/puts.rb
632
+ - lib/octopress/tags/render-partial.rb
633
+ - lib/octopress/tags/return.rb
634
+ - lib/octopress/version.rb
635
+ - lib/rake/clean.rake
636
+ - lib/rake/clobber.rake
637
+ - lib/rake/console.rake
638
+ - lib/rake/deploy.rake
639
+ - lib/rake/gen_deploy.rake
640
+ - lib/rake/generate.rake
641
+ - lib/rake/generate_only.rake
642
+ - lib/rake/hygiene.rake
643
+ - lib/rake/install.rake
644
+ - lib/rake/integrate.rake
645
+ - lib/rake/isolate.rake
646
+ - lib/rake/list_drafts.rake
647
+ - lib/rake/new.rake
648
+ - lib/rake/new_page.rake
649
+ - lib/rake/new_post.rake
650
+ - lib/rake/nuke.rake
651
+ - lib/rake/preview.rake
652
+ - lib/rake/push.rake
653
+ - lib/rake/rsync.rake
654
+ - lib/rake/set_root_dir.rake
655
+ - lib/rake/setup_github_pages.rake
656
+ - lib/rake/watch.rake
657
+ - lib/scaffold/Rakefile
658
+ - lib/scaffold/plugin-name.gemspec
659
+ - lib/spec/fixtures/env/defaults/classic.yml
660
+ - lib/spec/fixtures/no_override/defaults/classic.yml
661
+ - lib/spec/fixtures/override/defaults/classic.yml
662
+ - lib/spec/fixtures/override/site.yml
663
+ - lib/spec/octopress/configuration_spec.rb
664
+ - lib/spec/octopress/dependency_installer_spec.rb
665
+ - lib/spec/octopress/ink_spec.rb
666
+ - lib/spec/octopress/octopress_spec.rb
667
+ - lib/spec/spec_helper.rb
668
+ - lib/spec/support/env.rb
669
+ - lib/spec/support/simplecov.rb
670
+ - octopress.gemspec
671
+ homepage: http://octopress.org
672
+ licenses:
673
+ - MIT
674
+ metadata: {}
675
+ post_install_message:
676
+ rdoc_options:
677
+ - --charset=UTF-8
678
+ require_paths:
679
+ - lib
680
+ required_ruby_version: !ruby/object:Gem::Requirement
681
+ requirements:
682
+ - - ! '>='
683
+ - !ruby/object:Gem::Version
684
+ version: '0'
685
+ required_rubygems_version: !ruby/object:Gem::Requirement
686
+ requirements:
687
+ - - ! '>'
688
+ - !ruby/object:Gem::Version
689
+ version: 1.3.1
690
+ requirements: []
691
+ rubyforge_project:
692
+ rubygems_version: 2.0.3
693
+ signing_key:
694
+ specification_version: 4
695
+ summary: Octopress is an obsessively designed framework for Jekyll blogging.
696
+ test_files: []
697
+ has_rdoc: