Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/telecta/panels_for
ActionView Helper for generating Bootstrap panels.
https://github.com/telecta/panels_for
Last synced: 20 days ago
JSON representation
ActionView Helper for generating Bootstrap panels.
- Host: GitHub
- URL: https://github.com/telecta/panels_for
- Owner: telecta
- License: mit
- Created: 2015-10-19T09:12:17.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-07-07T08:07:16.000Z (over 7 years ago)
- Last Synced: 2024-09-18T16:42:15.256Z (3 months ago)
- Language: Ruby
- Size: 46.9 KB
- Stars: 1
- Watchers: 7
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: MIT-LICENSE
Awesome Lists containing this project
README
[travis]: https://travis-ci.org/blacktangent/panels_for
[codeclimate]: https://codeclimate.com/github/blacktangent/panels_for
[coveralls]: https://coveralls.io/r/blacktangent/panels_for
[rubygems]: https://rubygems.org/gems/panels_for
[gemnasium]: https://gemnasium.com/blacktangent/panels_for# PanelsFor
[![Build Status](https://travis-ci.org/blacktangent/panels_for.svg?branch=master)][travis]
[![Code Climate](https://codeclimate.com/github/blacktangent/panels_for/badges/gpa.svg)][codeclimate]
[![Test Coverage](http://img.shields.io/coveralls/blacktangent/panels_for/master.svg)][coveralls]
[![Gem Version](http://img.shields.io/gem/v/panels_for.svg)][rubygems]
[![Dependency Status](https://gemnasium.com/blacktangent/panels_for.png)][gemnasium]ActionView Helper for generating Bootstrap panels.
## Installation
Add this line to your application's Gemfile:
```ruby
gem 'panels_for'
```And then execute:
$ bundle
Or install it yourself as:
$ gem install panels_for
## Usage
```erb
<%= panels_for @project do |b| %>
<%= b.panel :managers, icon: 'users', id: :users do %>
Content goes here!
<% end %>
<%= b.panel :graphs, icon: 'line-chart', collapse: true do %>
Graphs here!
<% end %>
<%= b.panel :files, title: t('.attachments'), icon: 'file', collapse: true, collapsed: true %>
Files here!
<% end %>
<% end %>
```## Options
Possible options for `#panel`:
* __:icon__ - Font Awesome icon to use..
* __:collapse__ - Make panel collapsable.
* __:collapsed__ - Draw panel collapsed.
* __:id__ - ID of HTML element.
* __:title__ - Use as title instead of the autogenerated one.## Development
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake rspec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
## Contributing
Bug reports and pull requests are welcome on GitHub at https://github.com/blacktangent/panels_for. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](contributor-covenant.org) code of conduct.
## Testing
To test against all supported Rails versions, run:
```
appraisal rake test
```To update all supported Rails to latest patch version:
```
appraisal update
```## License
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).