classy_body 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: bf172e42105f89d0ce8eccada1055ba96ff2ae33
4
+ data.tar.gz: 2a6edd9757bd0aa414febf1216a367cf50de857d
5
+ SHA512:
6
+ metadata.gz: 8235e77666cf75944914fc091ef1de04f3c50f9cd62675ab9603a09c7d10db098753ad4d0794fb070c4302449c6921feee04c7ee30e559e95c426edde85eabe8
7
+ data.tar.gz: b859216ecba632a9953a01a9edc5a067c3bbf3d8f884bef2c540996c9fa35922321fe15076914d74d71e68d48c4aec381991f5a0a1210ed40ab8f05f3e926cdb
data/.gitignore ADDED
@@ -0,0 +1,17 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in classy_body.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 Andreas Klinger
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,52 @@
1
+ # ClassyBody
2
+
3
+ Adds a bit of class to your body.
4
+
5
+ By default it adds the controller & the action name and the current id.
6
+
7
+ Optional: mobile and anything you supply.
8
+
9
+ ## Installation
10
+
11
+ Add this line to your application's Gemfile:
12
+
13
+ gem 'classy_body'
14
+
15
+ And then execute:
16
+
17
+ $ bundle install
18
+
19
+ In your applications layout (eg application.html.erb) add this to your body
20
+
21
+ <body class="<%= body_class(yield :body_class) %>">
22
+
23
+ ## Usage
24
+
25
+ By default it will create for eg. http://example.com/users/show/andreasklinger
26
+
27
+ <body class="users show andreasklinger">
28
+
29
+ You can also add custom classes via the view if needed
30
+
31
+ eg. in users#show
32
+
33
+ <% content_for :body_class, %Q(narrow-layout active-user) %>
34
+
35
+ will create when viewed via mobile browser
36
+
37
+ <body class="users show andreasklinger narrow-layout active-user mobile">
38
+
39
+ ## Notes
40
+
41
+ This gem is heavily based on [this gist](https://gist.github.com/darph/2337231) by [@darph](https://github.com/darph)
42
+ After building this gem i found [flutie](https://github.com/thoughtbot/flutie)
43
+ which offers the same functionality.
44
+
45
+
46
+ ## Contributing
47
+
48
+ 1. Fork it ( http://github.com/<my-github-username>/classy_body/fork )
49
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
50
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
51
+ 4. Push to the branch (`git push origin my-new-feature`)
52
+ 5. Create new Pull Request
data/Rakefile ADDED
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
@@ -0,0 +1,23 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'classy_body/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "classy_body"
8
+ spec.version = ClassyBody::VERSION
9
+ spec.authors = ["Andreas Klinger"]
10
+ spec.email = ["register@klinger.io"]
11
+ spec.summary = %q{Very simple helper to add classes to your body. }
12
+ spec.description = %q{Eg. your current controller, current action, current id etc}
13
+ spec.homepage = "http://github.com/andreasklinger/classy_body"
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files -z`.split("\x0")
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_development_dependency "bundler", "~> 1.5"
22
+ spec.add_development_dependency "rake"
23
+ end
@@ -0,0 +1,2 @@
1
+ require "classy_body/version"
2
+ require 'classy_body/railtie' if defined?(Rails)
@@ -0,0 +1,8 @@
1
+ require 'classy_body/view_helpers'
2
+ module ClassyBody
3
+ class Railtie < Rails::Railtie
4
+ initializer "classy_body.view_helpers" do
5
+ ActionView::Base.send :include, ViewHelpers
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,3 @@
1
+ module ClassyBody
2
+ VERSION = "0.0.1"
3
+ end
@@ -0,0 +1,25 @@
1
+ module ClassyBody
2
+ module ViewHelpers
3
+ def body_class
4
+ ary = [controller_name]
5
+ ary << controller.action_name
6
+ ary << params['id'] if params['id'].present?
7
+ ary << 'mobile' if mobile_agent?
8
+
9
+ if content_for?(:body_class)
10
+ ary << content_for(:body_class)
11
+ end
12
+
13
+ ary.join(' ')
14
+ end
15
+
16
+ def controller_name
17
+ controller.controller_path.gsub('/','-')
18
+ end
19
+
20
+ def mobile_agent?
21
+ return true if params[:mobile] == "1"
22
+ request.user_agent =~ /Mobile|webOS/
23
+ end
24
+ end
25
+ end
metadata ADDED
@@ -0,0 +1,82 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: classy_body
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Andreas Klinger
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-05-13 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.5'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.5'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ description: Eg. your current controller, current action, current id etc
42
+ email:
43
+ - register@klinger.io
44
+ executables: []
45
+ extensions: []
46
+ extra_rdoc_files: []
47
+ files:
48
+ - ".gitignore"
49
+ - Gemfile
50
+ - LICENSE.txt
51
+ - README.md
52
+ - Rakefile
53
+ - classy_body.gemspec
54
+ - lib/classy_body.rb
55
+ - lib/classy_body/railtie.rb
56
+ - lib/classy_body/version.rb
57
+ - lib/classy_body/view_helpers.rb
58
+ homepage: http://github.com/andreasklinger/classy_body
59
+ licenses:
60
+ - MIT
61
+ metadata: {}
62
+ post_install_message:
63
+ rdoc_options: []
64
+ require_paths:
65
+ - lib
66
+ required_ruby_version: !ruby/object:Gem::Requirement
67
+ requirements:
68
+ - - ">="
69
+ - !ruby/object:Gem::Version
70
+ version: '0'
71
+ required_rubygems_version: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ requirements: []
77
+ rubyforge_project:
78
+ rubygems_version: 2.2.1
79
+ signing_key:
80
+ specification_version: 4
81
+ summary: Very simple helper to add classes to your body.
82
+ test_files: []