Skip to content

Commit

Permalink
Merge pull request #42 from envato/general-clean-up
Browse files Browse the repository at this point in the history
General clean up
  • Loading branch information
ppj committed Apr 5, 2016
2 parents 7c9cbf9 + 1913c3c commit e82d0e2
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -12,7 +12,7 @@ Document your application with a living component library and styleguide.

### JavaScript Assets

This app use `browserify` to bundle client-side JavaScript files.
This app uses `browserify` to bundle client-side JavaScript files.

To start adding new JavaScript file to the project, simply add it to `javascript/application.js`. Source code will be compiled to `app/assets/javascripts/guide/application` and load through `<%= javascript_include_tag "guide/application" %>`.

Expand Down
4 changes: 2 additions & 2 deletions app/helpers/guide/document_helper.rb
Expand Up @@ -13,8 +13,8 @@ def code_example(language='markup', show_rendered_element=true, &block)
capture do
concat content_tag(:div, code_stream, :class => "sg-content__demo") if show_rendered_element
concat content_tag(:pre, content_tag(:code, code_string),
:class => "sg-content__code language-#{language} line-numbers",
:"data-language" => language)
:class => "sg-content__code language-#{language} line-numbers",
:"data-language" => language)
end
end
end
Empty file removed app/models/guide/fixtures.rb
Empty file.
2 changes: 2 additions & 0 deletions spec/spec_helper.rb
Expand Up @@ -61,6 +61,7 @@
# - http://www.teaisaweso.me/blog/2013/05/27/rspecs-new-message-expectation-syntax/
# - http://myronmars.to/n/dev-blog/2014/05/notable-changes-in-rspec-3#new__config_option_to_disable_rspeccore_monkey_patching
config.disable_monkey_patching!
=end

# Many RSpec users commonly either run the entire suite or an individual
# file, and it's useful to allow more verbose output when running an
Expand All @@ -72,6 +73,7 @@
config.default_formatter = 'doc'
end

=begin
# Print the 10 slowest examples and example groups at the
# end of the spec run, to help surface which specs are running
# particularly slow.
Expand Down

0 comments on commit e82d0e2

Please sign in to comment.