| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -8,6 +8,7 @@ gem 'yajl-ruby', '~> 0.8.2' | |||
| 8 | 8 | gem 'pygments.rb' | |
| 9 | 9 | gem 'mime-types', '~> 1.16' | |
| 10 | 10 | gem 'coderay' | |
| 11 | + gem 'builder' | ||
| 11 | 12 | ||
| 12 | 13 | group :development do | |
| 13 | 14 | gem 'adsf' | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -4,6 +4,7 @@ GEM | |||
| 4 | 4 | adsf (1.1.1) | |
| 5 | 5 | rack (>= 1.0.0) | |
| 6 | 6 | blankslate (2.1.2.4) | |
| 7 | + builder (3.0.0) | ||
| 7 | 8 | coderay (1.0.6) | |
| 8 | 9 | colored (1.2) | |
| 9 | 10 | cri (2.3.0) | |
@@ -28,6 +29,7 @@ PLATFORMS | |||
| 28 | 29 | ||
| 29 | 30 | DEPENDENCIES | |
| 30 | 31 | adsf | |
| 32 | + builder | ||
| 31 | 33 | coderay | |
| 32 | 34 | kramdown (~> 0.13.2) | |
| 33 | 35 | mime-types (~> 1.16) | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -16,6 +16,13 @@ end | |||
| 16 | 16 | compile '/CNAME/' do | |
| 17 | 17 | end | |
| 18 | 18 | ||
| 19 | + compile '/feed/' do | ||
| 20 | + filter :erb | ||
| 21 | + filter :kramdown | ||
| 22 | + filter :colorize_syntax, | ||
| 23 | + :colorizers => {:javascript => :pygmentsrb} | ||
| 24 | + end | ||
| 25 | + | ||
| 19 | 26 | compile '/changes/*/' do | |
| 20 | 27 | filter :erb | |
| 21 | 28 | filter :kramdown | |
@@ -41,6 +48,10 @@ route '/CNAME/' do | |||
| 41 | 48 | '/CNAME' | |
| 42 | 49 | end | |
| 43 | 50 | ||
| 51 | + route '/feed' do | ||
| 52 | + '/changes.atom' | ||
| 53 | + end | ||
| 54 | + | ||
| 44 | 55 | route '*' do | |
| 45 | 56 | item.identifier + 'index.html' | |
| 46 | 57 | end | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,7 +1,7 @@ | |||
| 1 | 1 | # A list of file extensions that nanoc will consider to be textual rather than | |
| 2 | 2 | # binary. If an item with an extension not in this list is found, the file | |
| 3 | 3 | # will be considered as binary. | |
| 4 | - text_extensions: [ 'css', 'erb', 'haml', 'htm', 'html', 'js', 'less', 'markdown', 'md', 'php', 'rb', 'sass', 'scss', 'txt', 'xhtml', 'xml' ] | ||
| 4 | + text_extensions: [ 'css', 'erb', 'haml', 'htm', 'html', 'js', 'less', 'markdown', 'md', 'php', 'rb', 'sass', 'scss', 'txt', 'xhtml', 'xml', 'atom' ] | ||
| 5 | 5 | ||
| 6 | 6 | # The path to the directory where all generated files will be written to. This | |
| 7 | 7 | # can be an absolute path starting with a slash, but it can also be path | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -0,0 +1,9 @@ | |||
| 1 | + --- | ||
| 2 | + title: GitHub API Changes | ||
| 3 | + is_hidden: true | ||
| 4 | + author_name: technoweenie | ||
| 5 | + author_uri: https://github.com/technoweenie | ||
| 6 | + layout: false | ||
| 7 | + --- | ||
| 8 | + | ||
| 9 | + <%= atom_feed :limit => 30 %> | ||
| Back | FazBrowse Home | New Git URL |
0 commit comments