rails-bootstrap-toggle-buttons 0.0.1 → 0.0.4

Sign up to get free protection for your applications and to get access to all the features.
data/README.md CHANGED
@@ -18,7 +18,16 @@ Or install it yourself as:
18
18
 
19
19
  ## Usage
20
20
 
21
- TODO: Write usage instructions here
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
 
@@ -1,10 +1,9 @@
1
- require "rails-bootstrap-toggle-buttons/version"
2
-
3
1
  module Rails
4
2
  module Bootstrap
5
3
  module Toggle
6
4
  module Buttons
7
- # Your code goes here...
5
+ class Engine < ::Rails::Engine
6
+ end
8
7
  end
9
8
  end
10
9
  end
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.1
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
- - .gitignore
23
- - Gemfile
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
- - Rakefile
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
@@ -1,17 +0,0 @@
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 DELETED
@@ -1,4 +0,0 @@
1
- source 'https://rubygems.org'
2
-
3
- # Specify your gem's dependencies in rails-bootstrap-toggle-buttons.gemspec
4
- gemspec
data/Rakefile DELETED
@@ -1 +0,0 @@
1
- require "bundler/gem_tasks"
@@ -1,9 +0,0 @@
1
- module Rails
2
- module Bootstrap
3
- module Toggle
4
- module Buttons
5
- VERSION = "0.0.1"
6
- end
7
- end
8
- end
9
- end
@@ -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