rails-bootstrap-toggle-buttons 0.0.1 → 0.0.4
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.
- data/README.md +10 -1
- data/lib/rails-bootstrap-toggle-buttons.rb +2 -3
- data/{lib/assets/javascripts/jquery.toggle.buttons.js → vendor/assets/javascripts/bootstrap-toggle-buttons.js} +0 -0
- data/{lib → vendor}/assets/stylesheets/bootstrap-toggle-buttons.scss +0 -0
- metadata +22 -11
- data/.gitignore +0 -17
- data/Gemfile +0 -4
- data/Rakefile +0 -1
- data/lib/rails-bootstrap-toggle-buttons/version.rb +0 -9
- data/rails-bootstrap-toggle-buttons.gemspec +0 -19
data/README.md
CHANGED
@@ -18,7 +18,16 @@ Or install it yourself as:
|
|
18
18
|
|
19
19
|
## Usage
|
20
20
|
|
21
|
-
|
21
|
+
Just add to your `application.css`:
|
22
|
+
|
23
|
+
*= require bootstrap-toggle-buttons
|
24
|
+
|
25
|
+
And to your `application.js`:
|
26
|
+
|
27
|
+
//= require bootstrap-toggle-buttons
|
28
|
+
|
29
|
+
Then follow the [official documentation](http://www.larentis.eu/bootstrap_toggle_buttons/).
|
30
|
+
|
22
31
|
|
23
32
|
## Contributing
|
24
33
|
|
File without changes
|
File without changes
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rails-bootstrap-toggle-buttons
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.4
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -10,7 +10,23 @@ autorequire:
|
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
12
|
date: 2012-10-03 00:00:00.000000000 Z
|
13
|
-
dependencies:
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: compass-rails
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ! '>='
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: 1.0.3
|
22
|
+
type: :runtime
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ! '>='
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: 1.0.3
|
14
30
|
description: Just providing the bootstrap-toggle-buttons from https://github.com/nostalgiaz/bootstrap-toggle-buttons
|
15
31
|
into a gem.
|
16
32
|
email:
|
@@ -19,17 +35,12 @@ executables: []
|
|
19
35
|
extensions: []
|
20
36
|
extra_rdoc_files: []
|
21
37
|
files:
|
22
|
-
- .
|
23
|
-
-
|
38
|
+
- lib/rails-bootstrap-toggle-buttons.rb
|
39
|
+
- vendor/assets/javascripts/bootstrap-toggle-buttons.js
|
40
|
+
- vendor/assets/stylesheets/bootstrap-toggle-buttons.scss
|
24
41
|
- LICENSE.txt
|
25
42
|
- README.md
|
26
|
-
-
|
27
|
-
- lib/assets/javascripts/jquery.toggle.buttons.js
|
28
|
-
- lib/assets/stylesheets/bootstrap-toggle-buttons.scss
|
29
|
-
- lib/rails-bootstrap-toggle-buttons.rb
|
30
|
-
- lib/rails-bootstrap-toggle-buttons/version.rb
|
31
|
-
- rails-bootstrap-toggle-buttons.gemspec
|
32
|
-
homepage: http://caarlos0.github.com
|
43
|
+
homepage: https://github.com/caarlos0/rails-bootstrap-toggle-buttons.git
|
33
44
|
licenses: []
|
34
45
|
post_install_message:
|
35
46
|
rdoc_options: []
|
data/.gitignore
DELETED
data/Gemfile
DELETED
data/Rakefile
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
require "bundler/gem_tasks"
|
@@ -1,19 +0,0 @@
|
|
1
|
-
# -*- encoding: utf-8 -*-
|
2
|
-
lib = File.expand_path('../lib', __FILE__)
|
3
|
-
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
-
require 'rails-bootstrap-toggle-buttons/version'
|
5
|
-
|
6
|
-
Gem::Specification.new do |gem|
|
7
|
-
gem.name = "rails-bootstrap-toggle-buttons"
|
8
|
-
gem.version = Rails::Bootstrap::Toggle::Buttons::VERSION
|
9
|
-
gem.authors = ["Carlos Alexandro Becker"]
|
10
|
-
gem.email = ["caarlos0@gmail.com"]
|
11
|
-
gem.description = %q{Just providing the bootstrap-toggle-buttons from https://github.com/nostalgiaz/bootstrap-toggle-buttons into a gem.}
|
12
|
-
gem.summary = %q{A simple gem for https://github.com/nostalgiaz/bootstrap-toggle-buttons }
|
13
|
-
gem.homepage = "http://caarlos0.github.com"
|
14
|
-
|
15
|
-
gem.files = `git ls-files`.split($/)
|
16
|
-
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
17
|
-
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
18
|
-
gem.require_paths = ["lib"]
|
19
|
-
end
|