markdown-rails 2.0.0.alpha2 → 2.0.0.alpha3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ff3573eb380c93787dd4df94e7244809402da5a8bd59482aa2b6606b6294f154
4
- data.tar.gz: 7de29bab934217a0a8f38ff868d6fe7d0fa87d8c9a3b2de8c93a27d5f61496d8
3
+ metadata.gz: 9028694bb249a0368da3f54c2c14f2d73df7409ca7440dd6fdd7b9b3ff2241cb
4
+ data.tar.gz: 82eb901cbf4a4a1f378bcbc5631ea054c4ec2b0bbc9af605ef1298aa09cfd0b6
5
5
  SHA512:
6
- metadata.gz: b4f738f2f721f7d542f8986d0c63a7f1ac27f266d46091d938afa086b1c08ed967a8e77ebd9a4c8964787d3bddf396ba9eb86e9dd78bf511b937c182f9ce7127
7
- data.tar.gz: 85496233bed31fabcc2585f9e9ef30f92a295b456058bce2d35228ac4e284bc276804570cedddbbfb399cac8f7594d3f69f40d0f1332e8c35d2afa1f39a67762
6
+ metadata.gz: ff5d28ec913cec33a99cd5475652af7528599c649ccb2fed0922b9e25ed7bad40b5eac0fdb57e2db8415533ac18f6442612d8a22a872420bd0b66193db986fe0
7
+ data.tar.gz: 43ffda25ea19dca4acabb9a1a7dcdd7e83a4e3aa5fbe08a035466031ac5e7a63566ba938edbd7bcfbc96f2c0deddaa37baacb7078db9862880cae8a6424e21b3
data/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # markdown-rails
2
2
 
3
3
  > **Note**
4
- > **Everything below is implemented in 2.0.0.alpha1.** . You can start using this by adding to `gem "markdown-rails", version: "2.0.0.alpha"` to your Gemfile or by looking at it being used in the https://github.com/bradgessler/view-playground repo.
4
+ > **Everything below is implemented in 2.0.0.alpha.** . You can start using this by adding to `gem "markdown-rails", version: "2.0.0.alpha"` to your Gemfile or by looking at it being used in the https://github.com/bradgessler/view-playground repo.
5
5
 
6
6
  This gem allows you to write static Rails views and partials using the [Markdown](http://daringfireball.net/projects/markdown/syntax) syntax. No more editing prose in HTML!
7
7
 
@@ -29,7 +29,7 @@ Then from the root of your Rails project, run:
29
29
  $ bin/rails g markdown:install
30
30
  ```
31
31
 
32
- This adds a `config/initializers/markdown.rb` file where you can register template handlers for your Markdown renders that are located in `./app/markdown/*.rb`.
32
+ This adds a `config/initializers/markdown.rb` file where you can register template handler for your Markdown renders that are located in `./app/markdown/*.rb`.
33
33
 
34
34
  Now add views or partials ending in `.md` in your `./app/views/**/**` directories and behold!
35
35
 
@@ -57,7 +57,7 @@ Applications commonly need various markdown variants within one application. For
57
57
  # ./config/initializers/markdown.rb
58
58
  # Restart the server to see changes made to this file.
59
59
 
60
- # Setup markdown stacks to work with different template handlers in Rails.
60
+ # Setup markdown stacks to work with different template handler in Rails.
61
61
  Markdown::Rails.handle :md do
62
62
  ApplicationMarkdown.new
63
63
  end
@@ -71,11 +71,11 @@ end
71
71
 
72
72
  Only enable Erb in Markdown if you trust the source of the file. Do not enable it for markdown provided by users or they will be able to execute arbitrary Ruby code.
73
73
 
74
- To enable Erb, you can tell Rails to render all view files ending with `.markerb` using the `Markdown::Rails::Handlers::Erb` handler.
74
+ To enable Erb, you can tell Rails to render all view files ending with `.markerb` using the `Markdown::Rails::Handler::Erb` handler.
75
75
 
76
76
  ```ruby
77
77
  # ./config/initializers/markdown.rb
78
- Markdown::Rails.handle :markerb, with: Markdown::Rails::Handlers::Erb do
78
+ Markdown::Rails.handle :markerb, with: Markdown::Rails::Handler::Erb do
79
79
  ApplicationMarkdown.new
80
80
  end
81
81
  ```
@@ -86,19 +86,19 @@ You *could* change `:markerb` to `:md`, but I don't recommend it for all Markdow
86
86
  # ./config/initializers/markdown.rb
87
87
  # Restart the server to see changes made to this file.
88
88
 
89
- # Setup markdown stacks to work with different template handlers in Rails.
89
+ # Setup markdown stacks to work with different template handler in Rails.
90
90
  Markdown::Rails.handle :md do
91
91
  ApplicationMarkdown.new
92
92
  end
93
93
 
94
- Markdown::Rails.handle :markerb, with: Markdown::Rails::Handlers::Erb do
94
+ Markdown::Rails.handle :markerb, with: Markdown::Rails::Handler::Erb do
95
95
  ApplicationMarkdown.new
96
96
  end
97
97
  ```
98
98
 
99
- ## Customizing renderers
99
+ ## Customizing renderer
100
100
 
101
- You might want to customize your Markdown handlers to do things like syntax code highlighting, etc.
101
+ You might want to customize your Markdown handler to do things like syntax code highlighting, etc.
102
102
 
103
103
  ```ruby
104
104
  # ./app/markdown/application_markdown.rb
@@ -1,13 +1,13 @@
1
1
  # You should read the docs at https://github.com/vmg/redcarpet and probably
2
2
  # delete a bunch of stuff below if you don't need it.
3
3
 
4
- class ApplicationMarkdown < Markdown::Rails::Renderers::Rails
4
+ class ApplicationMarkdown < Markdown::Rails::Renderer::Rails
5
5
  # Reformats your boring punctation like " and " into “ and ” so you can look
6
6
  # and feel smarter. Read the docs at https://github.com/vmg/redcarpet#also-now-our-pants-are-much-smarter
7
7
  include Redcarpet::Render::SmartyPants
8
8
 
9
9
  # If you need access to ActionController::Base.helpers, you can delegate by uncommenting
10
- # and adding to the list below. Several are already included for you in the `Markdown::Rails::Renderers::Rails`,
10
+ # and adding to the list below. Several are already included for you in the `Markdown::Rails::Renderer::Rails`,
11
11
  # but you can add more here.
12
12
  #
13
13
  # To see a list of methods available run `bin/rails runner "puts ActionController::Base.helpers.public_methods.sort"`
@@ -1,6 +1,6 @@
1
1
  # Restart the server to see changes made to this file.
2
2
 
3
- # Setup markdown stacks to work with different template handlers in Rails.
3
+ # Setup markdown stacks to work with different template handler in Rails.
4
4
  Markdown::Rails.handle :md, :markdown do
5
5
  ApplicationMarkdown.new
6
6
  end
@@ -8,6 +8,6 @@ end
8
8
  # Don't use Erb for untrusted markdown content created by users; otherwise they
9
9
  # can execute arbitrary code on your server. This should only be used for input you
10
10
  # trust, like content files from your code repo.
11
- Markdown::Rails.handle :markerb, with: Markdown::Rails::Handlers::Erb do
11
+ Markdown::Rails.handle :markerb, with: Markdown::Rails::Handler::Erb do
12
12
  ApplicationMarkdown.new
13
13
  end
@@ -1,6 +1,6 @@
1
1
  module Markdown
2
2
  module Rails
3
- module Handlers
3
+ module Handler
4
4
  class Erb < Markdown
5
5
  def call(template, source = template.source)
6
6
  compiled_source = compile_erb template, source
@@ -1,6 +1,6 @@
1
1
  module Markdown
2
2
  module Rails
3
- module Handlers
3
+ module Handler
4
4
  # We cannot use Markdown::Rails because it conflicts with RDiscount's Markdown class
5
5
  class Markdown
6
6
  def initialize(&block)
@@ -1,10 +1,10 @@
1
1
  module Markdown
2
2
  module Rails
3
- module Renderers
3
+ module Renderer
4
4
  class Base < Redcarpet::Render::HTML
5
5
  def enable
6
6
  # This is a very restrictive Markdown renderer that errs on the side of safety.
7
- # For more details read the docs at https://github.com/vmg/redcarpet#darling-i-packed-you-a-couple-renderers-for-lunch
7
+ # For more details read the docs at https://github.com/vmg/redcarpet#darling-i-packed-you-a-couple-renderer-for-lunch
8
8
  [
9
9
  :filter_html,
10
10
  :no_images,
@@ -1,6 +1,6 @@
1
1
  module Markdown
2
2
  module Rails
3
- module Renderers
3
+ module Renderer
4
4
  class Rails < Base
5
5
  include ::Rails.application.routes.url_helpers
6
6
 
@@ -1,5 +1,5 @@
1
1
  module Markdown
2
2
  module Rails
3
- VERSION = "2.0.0.alpha2"
3
+ VERSION = "2.0.0.alpha3"
4
4
  end
5
5
  end
@@ -3,18 +3,18 @@ require "markdown/rails/engine"
3
3
 
4
4
  module Markdown
5
5
  module Rails
6
- def self.handle(*extensions, with: Handlers::Markdown, &block)
6
+ def self.handle(*extensions, with: Handler::Markdown, &block)
7
7
  with.handle *extensions, &block
8
8
  end
9
9
 
10
- module Handlers
11
- autoload :Markdown, "markdown/rails/handlers/markdown"
12
- autoload :Erb, "markdown/rails/handlers/erb"
10
+ module Handler
11
+ autoload :Markdown, "markdown/rails/handler/markdown"
12
+ autoload :Erb, "markdown/rails/handler/erb"
13
13
  end
14
14
 
15
- module Renderers
16
- autoload :Base, "markdown/rails/renderers/base"
17
- autoload :Rails, "markdown/rails/renderers/rails"
15
+ module Renderer
16
+ autoload :Base, "markdown/rails/renderer/base"
17
+ autoload :Rails, "markdown/rails/renderer/rails"
18
18
  end
19
19
  end
20
20
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: markdown-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0.alpha2
4
+ version: 2.0.0.alpha3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brad Gessler
@@ -57,11 +57,11 @@ files:
57
57
  - lib/markdown-rails.rb
58
58
  - lib/markdown/rails.rb
59
59
  - lib/markdown/rails/engine.rb
60
- - lib/markdown/rails/handlers/erb.rb
61
- - lib/markdown/rails/handlers/markdown.rb
60
+ - lib/markdown/rails/handler/erb.rb
61
+ - lib/markdown/rails/handler/markdown.rb
62
62
  - lib/markdown/rails/railtie.rb
63
- - lib/markdown/rails/renderers/base.rb
64
- - lib/markdown/rails/renderers/rails.rb
63
+ - lib/markdown/rails/renderer/base.rb
64
+ - lib/markdown/rails/renderer/rails.rb
65
65
  - lib/markdown/rails/version.rb
66
66
  - lib/tasks/markdown/rails_tasks.rake
67
67
  homepage: https://github.com/sitepress/markdown-rails