rails-assets-bootstrap 3.3.6

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.
Files changed (26) hide show
  1. checksums.yaml +7 -0
  2. data/Gemfile +4 -0
  3. data/README.md +22 -0
  4. data/Rakefile +1 -0
  5. data/app/assets/documents/bootstrap/grunt/configBridge.json +46 -0
  6. data/app/assets/fonts/bootstrap/dist/fonts/glyphicons-halflings-regular.eot +0 -0
  7. data/app/assets/fonts/bootstrap/dist/fonts/glyphicons-halflings-regular.svg +288 -0
  8. data/app/assets/fonts/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf +0 -0
  9. data/app/assets/fonts/bootstrap/dist/fonts/glyphicons-halflings-regular.woff +0 -0
  10. data/app/assets/fonts/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2 +0 -0
  11. data/app/assets/fonts/bootstrap/fonts/glyphicons-halflings-regular.eot +0 -0
  12. data/app/assets/fonts/bootstrap/fonts/glyphicons-halflings-regular.svg +288 -0
  13. data/app/assets/fonts/bootstrap/fonts/glyphicons-halflings-regular.ttf +0 -0
  14. data/app/assets/fonts/bootstrap/fonts/glyphicons-halflings-regular.woff +0 -0
  15. data/app/assets/fonts/bootstrap/fonts/glyphicons-halflings-regular.woff2 +0 -0
  16. data/app/assets/javascripts/bootstrap/bootstrap.js +2363 -0
  17. data/app/assets/javascripts/bootstrap/npm.js +13 -0
  18. data/app/assets/javascripts/bootstrap.js +1 -0
  19. data/app/assets/stylesheets/bootstrap/bootstrap-theme.scss +586 -0
  20. data/app/assets/stylesheets/bootstrap/bootstrap.scss +6759 -0
  21. data/app/assets/stylesheets/bootstrap.scss +1 -0
  22. data/lib/rails-assets-bootstrap/version.rb +3 -0
  23. data/lib/rails-assets-bootstrap.rb +47 -0
  24. data/rails-assets-bootstrap.gemspec +21 -0
  25. data/rails-assets-bootstrap.json +39 -0
  26. metadata +117 -0
@@ -0,0 +1 @@
1
+ @import 'bootstrap/bootstrap.scss';
@@ -0,0 +1,3 @@
1
+ module RailsAssetsBootstrap
2
+ VERSION = "3.3.6"
3
+ end
@@ -0,0 +1,47 @@
1
+ require "rails-assets-bootstrap/version"
2
+
3
+ require "rails-assets-jquery"
4
+
5
+ module RailsAssetsBootstrap
6
+
7
+ def self.gem_path
8
+ Pathname(File.realpath(__FILE__)).join('../..')
9
+ end
10
+
11
+ def self.gem_spec
12
+ Gem::Specification::load(
13
+ gem_path.join("rails-assets-bootstrap.gemspec").to_s
14
+ )
15
+ end
16
+
17
+ def self.load_paths
18
+ gem_path.join('app/assets').each_child.to_a
19
+ end
20
+
21
+ def self.dependencies
22
+ [
23
+ RailsAssetsJquery
24
+ ]
25
+ end
26
+
27
+ if defined?(Rails)
28
+ class Engine < ::Rails::Engine
29
+ # Rails -> use app/assets directory.
30
+ end
31
+ end
32
+
33
+ end
34
+
35
+ class RailsAssets
36
+ @components ||= []
37
+
38
+ class << self
39
+ attr_accessor :components
40
+
41
+ def load_paths
42
+ components.flat_map(&:load_paths)
43
+ end
44
+ end
45
+ end
46
+
47
+ RailsAssets.components << RailsAssetsBootstrap
@@ -0,0 +1,21 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'rails-assets-bootstrap/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "rails-assets-bootstrap"
8
+ spec.version = RailsAssetsBootstrap::VERSION
9
+ spec.authors = ["rails-assets.org"]
10
+ spec.description = "The most popular front-end framework for developing responsive, mobile first projects on the web."
11
+ spec.summary = "The most popular front-end framework for developing responsive, mobile first projects on the web."
12
+ spec.homepage = "http://getbootstrap.com/"
13
+ spec.license = "MIT"
14
+
15
+ spec.files = `find ./* -type f | cut -b 3-`.split($/)
16
+ spec.require_paths = ["lib"]
17
+
18
+ spec.add_dependency "rails-assets-jquery", ">= 1.9.1", "< 3"
19
+ spec.add_development_dependency "bundler", "~> 1.3"
20
+ spec.add_development_dependency "rake"
21
+ end
@@ -0,0 +1,39 @@
1
+ {
2
+ "name": "rails-assets-bootstrap",
3
+ "downloads": null,
4
+ "version": "3.3.6",
5
+ "version_downloads": null,
6
+ "platform": "ruby",
7
+ "authors": "rails-assets.org",
8
+ "info": "The most popular front-end framework for developing responsive, mobile first projects on the web.",
9
+
10
+ "licenses": "MIT",
11
+
12
+ "metadata": {
13
+
14
+ },
15
+ "sha": null,
16
+ "project_uri": "http://getbootstrap.com/",
17
+ "gem_uri": null,
18
+ "homepage_uri": "http://getbootstrap.com/",
19
+ "wiki_uri": null,
20
+ "documentation_uri": null,
21
+ "mailing_list_uri": null,
22
+ "source_code_uri": "http://getbootstrap.com/",
23
+ "bug_tracker_uri": null,
24
+ "dependencies": {
25
+ "development": [
26
+
27
+
28
+ {
29
+ "name": "rails-assets-jquery",
30
+ "requirements": ">= 1.9.1", "< 3"
31
+ },
32
+
33
+
34
+ ],
35
+ "runtime": [
36
+
37
+ ]
38
+ }
39
+ }
metadata ADDED
@@ -0,0 +1,117 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rails-assets-bootstrap
3
+ version: !ruby/object:Gem::Version
4
+ version: 3.3.6
5
+ platform: ruby
6
+ authors:
7
+ - rails-assets.org
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2016-04-27 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rails-assets-jquery
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: 1.9.1
20
+ - - "<"
21
+ - !ruby/object:Gem::Version
22
+ version: '3'
23
+ type: :runtime
24
+ prerelease: false
25
+ version_requirements: !ruby/object:Gem::Requirement
26
+ requirements:
27
+ - - ">="
28
+ - !ruby/object:Gem::Version
29
+ version: 1.9.1
30
+ - - "<"
31
+ - !ruby/object:Gem::Version
32
+ version: '3'
33
+ - !ruby/object:Gem::Dependency
34
+ name: bundler
35
+ requirement: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - "~>"
38
+ - !ruby/object:Gem::Version
39
+ version: '1.3'
40
+ type: :development
41
+ prerelease: false
42
+ version_requirements: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - "~>"
45
+ - !ruby/object:Gem::Version
46
+ version: '1.3'
47
+ - !ruby/object:Gem::Dependency
48
+ name: rake
49
+ requirement: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - ">="
52
+ - !ruby/object:Gem::Version
53
+ version: '0'
54
+ type: :development
55
+ prerelease: false
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ requirements:
58
+ - - ">="
59
+ - !ruby/object:Gem::Version
60
+ version: '0'
61
+ description: The most popular front-end framework for developing responsive, mobile
62
+ first projects on the web.
63
+ email:
64
+ executables: []
65
+ extensions: []
66
+ extra_rdoc_files: []
67
+ files:
68
+ - Gemfile
69
+ - README.md
70
+ - Rakefile
71
+ - app/assets/documents/bootstrap/grunt/configBridge.json
72
+ - app/assets/fonts/bootstrap/dist/fonts/glyphicons-halflings-regular.eot
73
+ - app/assets/fonts/bootstrap/dist/fonts/glyphicons-halflings-regular.svg
74
+ - app/assets/fonts/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf
75
+ - app/assets/fonts/bootstrap/dist/fonts/glyphicons-halflings-regular.woff
76
+ - app/assets/fonts/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2
77
+ - app/assets/fonts/bootstrap/fonts/glyphicons-halflings-regular.eot
78
+ - app/assets/fonts/bootstrap/fonts/glyphicons-halflings-regular.svg
79
+ - app/assets/fonts/bootstrap/fonts/glyphicons-halflings-regular.ttf
80
+ - app/assets/fonts/bootstrap/fonts/glyphicons-halflings-regular.woff
81
+ - app/assets/fonts/bootstrap/fonts/glyphicons-halflings-regular.woff2
82
+ - app/assets/javascripts/bootstrap.js
83
+ - app/assets/javascripts/bootstrap/bootstrap.js
84
+ - app/assets/javascripts/bootstrap/npm.js
85
+ - app/assets/stylesheets/bootstrap.scss
86
+ - app/assets/stylesheets/bootstrap/bootstrap-theme.scss
87
+ - app/assets/stylesheets/bootstrap/bootstrap.scss
88
+ - lib/rails-assets-bootstrap.rb
89
+ - lib/rails-assets-bootstrap/version.rb
90
+ - rails-assets-bootstrap.gemspec
91
+ - rails-assets-bootstrap.json
92
+ homepage: http://getbootstrap.com/
93
+ licenses:
94
+ - MIT
95
+ metadata: {}
96
+ post_install_message:
97
+ rdoc_options: []
98
+ require_paths:
99
+ - lib
100
+ required_ruby_version: !ruby/object:Gem::Requirement
101
+ requirements:
102
+ - - ">="
103
+ - !ruby/object:Gem::Version
104
+ version: '0'
105
+ required_rubygems_version: !ruby/object:Gem::Requirement
106
+ requirements:
107
+ - - ">="
108
+ - !ruby/object:Gem::Version
109
+ version: '0'
110
+ requirements: []
111
+ rubyforge_project:
112
+ rubygems_version: 2.4.8
113
+ signing_key:
114
+ specification_version: 4
115
+ summary: The most popular front-end framework for developing responsive, mobile first
116
+ projects on the web.
117
+ test_files: []