yano-bootstrap-rails 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (40) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +9 -0
  3. data/CODE_OF_CONDUCT.md +49 -0
  4. data/Gemfile +4 -0
  5. data/LICENSE.txt +21 -0
  6. data/README.md +41 -0
  7. data/Rakefile +2 -0
  8. data/lib/yano/bootstrap/rails/engine.rb +8 -0
  9. data/lib/yano/bootstrap/rails/version.rb +9 -0
  10. data/lib/yano/bootstrap/rails.rb +9 -0
  11. data/lib/yano-bootstrap-rails.rb +2 -0
  12. data/vendor/assets/fonts/FontAwesome.otf +0 -0
  13. data/vendor/assets/fonts/fontawesome-webfont.eot +0 -0
  14. data/vendor/assets/fonts/fontawesome-webfont.svg +655 -0
  15. data/vendor/assets/fonts/fontawesome-webfont.ttf +0 -0
  16. data/vendor/assets/fonts/fontawesome-webfont.woff +0 -0
  17. data/vendor/assets/fonts/fontawesome-webfont.woff2 +0 -0
  18. data/vendor/assets/fonts/glyphicons-halflings-regular.eot +0 -0
  19. data/vendor/assets/fonts/glyphicons-halflings-regular.svg +288 -0
  20. data/vendor/assets/fonts/glyphicons-halflings-regular.ttf +0 -0
  21. data/vendor/assets/fonts/glyphicons-halflings-regular.woff +0 -0
  22. data/vendor/assets/fonts/glyphicons-halflings-regular.woff2 +0 -0
  23. data/vendor/assets/javascripts/bootstrap/bootstrap.js +2363 -0
  24. data/vendor/assets/javascripts/bootstrap/bootstrap.min.js +7 -0
  25. data/vendor/assets/javascripts/bootstrap.js +2 -0
  26. data/vendor/assets/javascripts/bootstrap.min.js +2 -0
  27. data/vendor/assets/source_maps/bootstrap-theme.css.map +1 -0
  28. data/vendor/assets/source_maps/bootstrap-theme.min.css.map +1 -0
  29. data/vendor/assets/source_maps/bootstrap.css.map +1 -0
  30. data/vendor/assets/source_maps/bootstrap.min.css.map +1 -0
  31. data/vendor/assets/stylesheets/bootstrap/bootstrap-theme.css.erb +587 -0
  32. data/vendor/assets/stylesheets/bootstrap/bootstrap-theme.min.css +6 -0
  33. data/vendor/assets/stylesheets/bootstrap/bootstrap.css.erb +6764 -0
  34. data/vendor/assets/stylesheets/bootstrap/bootstrap.min.css.erb +6 -0
  35. data/vendor/assets/stylesheets/bootstrap/font-awesome.css.erb +2090 -0
  36. data/vendor/assets/stylesheets/bootstrap/font-awesome.min.css.erb +4 -0
  37. data/vendor/assets/stylesheets/bootstrap.css +7 -0
  38. data/vendor/assets/stylesheets/bootstrap.min.css +7 -0
  39. data/yano-bootstrap-rails.gemspec +31 -0
  40. metadata +159 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: c442b7509d3f254ae7093a150b31fb443836cdad
4
+ data.tar.gz: 48577360ee636be2c39bbf3160426b81353d8bbb
5
+ SHA512:
6
+ metadata.gz: af17eada93786a3439702a220a77f8680e2b1ebcc26c6e4fddab1bee1665db0651712b34d8a6332a3e1f765e3be58a1bc13221598bfb719c540562b6fd034487
7
+ data.tar.gz: f293d452393a029f9543079601af8f632d630736d9a4c8181395e722c2fbeb16d308dfacee96b411ef1c63f7728db41dcc0618103a756cc7fcbbe10d759a2708
data/.gitignore ADDED
@@ -0,0 +1,9 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
@@ -0,0 +1,49 @@
1
+ # Contributor Code of Conduct
2
+
3
+ As contributors and maintainers of this project, and in the interest of
4
+ fostering an open and welcoming community, we pledge to respect all people who
5
+ contribute through reporting issues, posting feature requests, updating
6
+ documentation, submitting pull requests or patches, and other activities.
7
+
8
+ We are committed to making participation in this project a harassment-free
9
+ experience for everyone, regardless of level of experience, gender, gender
10
+ identity and expression, sexual orientation, disability, personal appearance,
11
+ body size, race, ethnicity, age, religion, or nationality.
12
+
13
+ Examples of unacceptable behavior by participants include:
14
+
15
+ * The use of sexualized language or imagery
16
+ * Personal attacks
17
+ * Trolling or insulting/derogatory comments
18
+ * Public or private harassment
19
+ * Publishing other's private information, such as physical or electronic
20
+ addresses, without explicit permission
21
+ * Other unethical or unprofessional conduct
22
+
23
+ Project maintainers have the right and responsibility to remove, edit, or
24
+ reject comments, commits, code, wiki edits, issues, and other contributions
25
+ that are not aligned to this Code of Conduct, or to ban temporarily or
26
+ permanently any contributor for other behaviors that they deem inappropriate,
27
+ threatening, offensive, or harmful.
28
+
29
+ By adopting this Code of Conduct, project maintainers commit themselves to
30
+ fairly and consistently applying these principles to every aspect of managing
31
+ this project. Project maintainers who do not follow or enforce the Code of
32
+ Conduct may be permanently removed from the project team.
33
+
34
+ This code of conduct applies both within project spaces and in public spaces
35
+ when an individual is representing the project or its community.
36
+
37
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
38
+ reported by contacting a project maintainer at jonathanccalixto@gmail.com. All
39
+ complaints will be reviewed and investigated and will result in a response that
40
+ is deemed necessary and appropriate to the circumstances. Maintainers are
41
+ obligated to maintain confidentiality with regard to the reporter of an
42
+ incident.
43
+
44
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage],
45
+ version 1.3.0, available at
46
+ [http://contributor-covenant.org/version/1/3/0/][version]
47
+
48
+ [homepage]: http://contributor-covenant.org
49
+ [version]: http://contributor-covenant.org/version/1/3/0/
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in yano-bootstrap-rails.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2016 Jonathan C. Calixto
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,41 @@
1
+ # Yano::Bootstrap::Rails
2
+
3
+ Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/yano/bootstrap/rails`. To experiment with that code, run `bin/console` for an interactive prompt.
4
+
5
+ TODO: Delete this and the text above, and describe your gem
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ ```ruby
12
+ gem 'yano-bootstrap-rails'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install yano-bootstrap-rails
22
+
23
+ ## Usage
24
+
25
+ TODO: Write usage instructions here
26
+
27
+ ## Development
28
+
29
+ After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
30
+
31
+ 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).
32
+
33
+ ## Contributing
34
+
35
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/yano-bootstrap-rails. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
36
+
37
+
38
+ ## License
39
+
40
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
41
+
data/Rakefile ADDED
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+ task :default => :spec
@@ -0,0 +1,8 @@
1
+ module Yano
2
+ module Bootstrap
3
+ module Rails
4
+ class Engine < ::Rails::Engine
5
+ end
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,9 @@
1
+ module Yano
2
+ module Bootstrap
3
+ module Rails
4
+ VERSION = "0.0.1"
5
+ BOOTSTRAP_VERSION = "3.3.6"
6
+ FONT_AWESOME_VERSION = "4.5.0"
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ require "yano/bootstrap/rails/engine"
2
+ require "yano/bootstrap/rails/version"
3
+
4
+ module Yano
5
+ module Bootstrap
6
+ module Rails
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,2 @@
1
+ require 'yano-jquery-rails'
2
+ require 'yano/bootstrap/rails'
Binary file