styler-sass 0.1.1

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 (200) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +10 -0
  3. data/.rspec +2 -0
  4. data/.travis.yml +4 -0
  5. data/Gemfile +4 -0
  6. data/Guardfile +70 -0
  7. data/LICENSE.txt +21 -0
  8. data/README.md +44 -0
  9. data/Rakefile +6 -0
  10. data/app/assets/fonts/awesome/FontAwesome.otf +0 -0
  11. data/app/assets/fonts/awesome/fontawesome-webfont.eot +0 -0
  12. data/app/assets/fonts/awesome/fontawesome-webfont.svg +640 -0
  13. data/app/assets/fonts/awesome/fontawesome-webfont.ttf +0 -0
  14. data/app/assets/fonts/awesome/fontawesome-webfont.woff +0 -0
  15. data/app/assets/fonts/awesome/fontawesome-webfont.woff2 +0 -0
  16. data/app/assets/fonts/bootstrap/glyphicons-halflings-regular.eot +0 -0
  17. data/app/assets/fonts/bootstrap/glyphicons-halflings-regular.svg +288 -0
  18. data/app/assets/fonts/bootstrap/glyphicons-halflings-regular.ttf +0 -0
  19. data/app/assets/fonts/bootstrap/glyphicons-halflings-regular.woff +0 -0
  20. data/app/assets/fonts/bootstrap/glyphicons-halflings-regular.woff2 +0 -0
  21. data/app/assets/images/.keep +0 -0
  22. data/app/assets/javascripts/bootstrap-sprockets.js +12 -0
  23. data/app/assets/javascripts/bootstrap.js +2363 -0
  24. data/app/assets/javascripts/bootstrap.min.js +7 -0
  25. data/app/assets/javascripts/bootstrap/affix.js +162 -0
  26. data/app/assets/javascripts/bootstrap/alert.js +94 -0
  27. data/app/assets/javascripts/bootstrap/button.js +120 -0
  28. data/app/assets/javascripts/bootstrap/carousel.js +237 -0
  29. data/app/assets/javascripts/bootstrap/collapse.js +211 -0
  30. data/app/assets/javascripts/bootstrap/dropdown.js +165 -0
  31. data/app/assets/javascripts/bootstrap/modal.js +337 -0
  32. data/app/assets/javascripts/bootstrap/popover.js +108 -0
  33. data/app/assets/javascripts/bootstrap/scrollspy.js +172 -0
  34. data/app/assets/javascripts/bootstrap/tab.js +155 -0
  35. data/app/assets/javascripts/bootstrap/tooltip.js +514 -0
  36. data/app/assets/javascripts/bootstrap/transition.js +59 -0
  37. data/app/assets/stylesheets/_bootstrap-compass.scss +9 -0
  38. data/app/assets/stylesheets/_bootstrap-mincer.scss +19 -0
  39. data/app/assets/stylesheets/_bootstrap-sprockets.scss +9 -0
  40. data/app/assets/stylesheets/_bootstrap.scss +56 -0
  41. data/app/assets/stylesheets/_bourbon-deprecated-upcoming.scss +411 -0
  42. data/app/assets/stylesheets/_bourbon.scss +87 -0
  43. data/app/assets/stylesheets/_font-awesome.css.scss +2026 -0
  44. data/app/assets/stylesheets/_font-awesome.min.css.scss +4 -0
  45. data/app/assets/stylesheets/_normalize.css.scss +427 -0
  46. data/app/assets/stylesheets/addons/_border-color.scss +26 -0
  47. data/app/assets/stylesheets/addons/_border-radius.scss +48 -0
  48. data/app/assets/stylesheets/addons/_border-style.scss +25 -0
  49. data/app/assets/stylesheets/addons/_border-width.scss +25 -0
  50. data/app/assets/stylesheets/addons/_buttons.scss +64 -0
  51. data/app/assets/stylesheets/addons/_clearfix.scss +25 -0
  52. data/app/assets/stylesheets/addons/_ellipsis.scss +30 -0
  53. data/app/assets/stylesheets/addons/_font-stacks.scss +31 -0
  54. data/app/assets/stylesheets/addons/_hide-text.scss +27 -0
  55. data/app/assets/stylesheets/addons/_margin.scss +26 -0
  56. data/app/assets/stylesheets/addons/_padding.scss +26 -0
  57. data/app/assets/stylesheets/addons/_position.scss +48 -0
  58. data/app/assets/stylesheets/addons/_prefixer.scss +66 -0
  59. data/app/assets/stylesheets/addons/_retina-image.scss +25 -0
  60. data/app/assets/stylesheets/addons/_size.scss +51 -0
  61. data/app/assets/stylesheets/addons/_text-inputs.scss +113 -0
  62. data/app/assets/stylesheets/addons/_timing-functions.scss +34 -0
  63. data/app/assets/stylesheets/addons/_triangle.scss +63 -0
  64. data/app/assets/stylesheets/addons/_word-wrap.scss +29 -0
  65. data/app/assets/stylesheets/bootstrap/_alerts.scss +73 -0
  66. data/app/assets/stylesheets/bootstrap/_badges.scss +68 -0
  67. data/app/assets/stylesheets/bootstrap/_breadcrumbs.scss +28 -0
  68. data/app/assets/stylesheets/bootstrap/_button-groups.scss +244 -0
  69. data/app/assets/stylesheets/bootstrap/_buttons.scss +168 -0
  70. data/app/assets/stylesheets/bootstrap/_carousel.scss +269 -0
  71. data/app/assets/stylesheets/bootstrap/_close.scss +36 -0
  72. data/app/assets/stylesheets/bootstrap/_code.scss +69 -0
  73. data/app/assets/stylesheets/bootstrap/_component-animations.scss +37 -0
  74. data/app/assets/stylesheets/bootstrap/_dropdowns.scss +216 -0
  75. data/app/assets/stylesheets/bootstrap/_forms.scss +611 -0
  76. data/app/assets/stylesheets/bootstrap/_glyphicons.scss +307 -0
  77. data/app/assets/stylesheets/bootstrap/_grid.scss +84 -0
  78. data/app/assets/stylesheets/bootstrap/_input-groups.scss +167 -0
  79. data/app/assets/stylesheets/bootstrap/_jumbotron.scss +52 -0
  80. data/app/assets/stylesheets/bootstrap/_labels.scss +66 -0
  81. data/app/assets/stylesheets/bootstrap/_list-group.scss +130 -0
  82. data/app/assets/stylesheets/bootstrap/_media.scss +66 -0
  83. data/app/assets/stylesheets/bootstrap/_mixins.scss +40 -0
  84. data/app/assets/stylesheets/bootstrap/_modals.scss +150 -0
  85. data/app/assets/stylesheets/bootstrap/_navbar.scss +662 -0
  86. data/app/assets/stylesheets/bootstrap/_navs.scss +242 -0
  87. data/app/assets/stylesheets/bootstrap/_normalize.scss +424 -0
  88. data/app/assets/stylesheets/bootstrap/_pager.scss +54 -0
  89. data/app/assets/stylesheets/bootstrap/_pagination.scss +89 -0
  90. data/app/assets/stylesheets/bootstrap/_panels.scss +271 -0
  91. data/app/assets/stylesheets/bootstrap/_popovers.scss +131 -0
  92. data/app/assets/stylesheets/bootstrap/_print.scss +101 -0
  93. data/app/assets/stylesheets/bootstrap/_progress-bars.scss +87 -0
  94. data/app/assets/stylesheets/bootstrap/_responsive-embed.scss +35 -0
  95. data/app/assets/stylesheets/bootstrap/_responsive-utilities.scss +179 -0
  96. data/app/assets/stylesheets/bootstrap/_scaffolding.scss +161 -0
  97. data/app/assets/stylesheets/bootstrap/_tables.scss +234 -0
  98. data/app/assets/stylesheets/bootstrap/_theme.scss +291 -0
  99. data/app/assets/stylesheets/bootstrap/_thumbnails.scss +38 -0
  100. data/app/assets/stylesheets/bootstrap/_tooltip.scss +101 -0
  101. data/app/assets/stylesheets/bootstrap/_type.scss +298 -0
  102. data/app/assets/stylesheets/bootstrap/_utilities.scss +55 -0
  103. data/app/assets/stylesheets/bootstrap/_variables.scss +872 -0
  104. data/app/assets/stylesheets/bootstrap/_wells.scss +29 -0
  105. data/app/assets/stylesheets/bootstrap/mixins/_alerts.scss +14 -0
  106. data/app/assets/stylesheets/bootstrap/mixins/_background-variant.scss +12 -0
  107. data/app/assets/stylesheets/bootstrap/mixins/_border-radius.scss +18 -0
  108. data/app/assets/stylesheets/bootstrap/mixins/_buttons.scss +68 -0
  109. data/app/assets/stylesheets/bootstrap/mixins/_center-block.scss +7 -0
  110. data/app/assets/stylesheets/bootstrap/mixins/_clearfix.scss +22 -0
  111. data/app/assets/stylesheets/bootstrap/mixins/_forms.scss +88 -0
  112. data/app/assets/stylesheets/bootstrap/mixins/_gradients.scss +58 -0
  113. data/app/assets/stylesheets/bootstrap/mixins/_grid-framework.scss +81 -0
  114. data/app/assets/stylesheets/bootstrap/mixins/_grid.scss +122 -0
  115. data/app/assets/stylesheets/bootstrap/mixins/_hide-text.scss +21 -0
  116. data/app/assets/stylesheets/bootstrap/mixins/_image.scss +33 -0
  117. data/app/assets/stylesheets/bootstrap/mixins/_labels.scss +12 -0
  118. data/app/assets/stylesheets/bootstrap/mixins/_list-group.scss +32 -0
  119. data/app/assets/stylesheets/bootstrap/mixins/_nav-divider.scss +10 -0
  120. data/app/assets/stylesheets/bootstrap/mixins/_nav-vertical-align.scss +9 -0
  121. data/app/assets/stylesheets/bootstrap/mixins/_opacity.scss +8 -0
  122. data/app/assets/stylesheets/bootstrap/mixins/_pagination.scss +24 -0
  123. data/app/assets/stylesheets/bootstrap/mixins/_panels.scss +24 -0
  124. data/app/assets/stylesheets/bootstrap/mixins/_progress-bar.scss +10 -0
  125. data/app/assets/stylesheets/bootstrap/mixins/_reset-filter.scss +8 -0
  126. data/app/assets/stylesheets/bootstrap/mixins/_reset-text.scss +18 -0
  127. data/app/assets/stylesheets/bootstrap/mixins/_resize.scss +6 -0
  128. data/app/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss +21 -0
  129. data/app/assets/stylesheets/bootstrap/mixins/_size.scss +10 -0
  130. data/app/assets/stylesheets/bootstrap/mixins/_tab-focus.scss +9 -0
  131. data/app/assets/stylesheets/bootstrap/mixins/_table-row.scss +28 -0
  132. data/app/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss +12 -0
  133. data/app/assets/stylesheets/bootstrap/mixins/_text-overflow.scss +8 -0
  134. data/app/assets/stylesheets/bootstrap/mixins/_vendor-prefixes.scss +222 -0
  135. data/app/assets/stylesheets/css3/_animation.scss +43 -0
  136. data/app/assets/stylesheets/css3/_appearance.scss +3 -0
  137. data/app/assets/stylesheets/css3/_backface-visibility.scss +3 -0
  138. data/app/assets/stylesheets/css3/_background-image.scss +42 -0
  139. data/app/assets/stylesheets/css3/_background.scss +55 -0
  140. data/app/assets/stylesheets/css3/_border-image.scss +59 -0
  141. data/app/assets/stylesheets/css3/_calc.scss +4 -0
  142. data/app/assets/stylesheets/css3/_columns.scss +47 -0
  143. data/app/assets/stylesheets/css3/_filter.scss +4 -0
  144. data/app/assets/stylesheets/css3/_flex-box.scss +287 -0
  145. data/app/assets/stylesheets/css3/_font-face.scss +24 -0
  146. data/app/assets/stylesheets/css3/_font-feature-settings.scss +4 -0
  147. data/app/assets/stylesheets/css3/_hidpi-media-query.scss +10 -0
  148. data/app/assets/stylesheets/css3/_hyphens.scss +4 -0
  149. data/app/assets/stylesheets/css3/_image-rendering.scss +14 -0
  150. data/app/assets/stylesheets/css3/_keyframes.scss +36 -0
  151. data/app/assets/stylesheets/css3/_linear-gradient.scss +38 -0
  152. data/app/assets/stylesheets/css3/_perspective.scss +8 -0
  153. data/app/assets/stylesheets/css3/_placeholder.scss +8 -0
  154. data/app/assets/stylesheets/css3/_radial-gradient.scss +39 -0
  155. data/app/assets/stylesheets/css3/_selection.scss +42 -0
  156. data/app/assets/stylesheets/css3/_text-decoration.scss +19 -0
  157. data/app/assets/stylesheets/css3/_transform.scss +15 -0
  158. data/app/assets/stylesheets/css3/_transition.scss +71 -0
  159. data/app/assets/stylesheets/css3/_user-select.scss +3 -0
  160. data/app/assets/stylesheets/functions/_assign-inputs.scss +11 -0
  161. data/app/assets/stylesheets/functions/_contains-falsy.scss +20 -0
  162. data/app/assets/stylesheets/functions/_contains.scss +26 -0
  163. data/app/assets/stylesheets/functions/_is-length.scss +11 -0
  164. data/app/assets/stylesheets/functions/_is-light.scss +21 -0
  165. data/app/assets/stylesheets/functions/_is-number.scss +11 -0
  166. data/app/assets/stylesheets/functions/_is-size.scss +13 -0
  167. data/app/assets/stylesheets/functions/_modular-scale.scss +69 -0
  168. data/app/assets/stylesheets/functions/_px-to-em.scss +13 -0
  169. data/app/assets/stylesheets/functions/_px-to-rem.scss +15 -0
  170. data/app/assets/stylesheets/functions/_shade.scss +24 -0
  171. data/app/assets/stylesheets/functions/_strip-units.scss +17 -0
  172. data/app/assets/stylesheets/functions/_tint.scss +24 -0
  173. data/app/assets/stylesheets/functions/_transition-property-name.scss +22 -0
  174. data/app/assets/stylesheets/functions/_unpack.scss +27 -0
  175. data/app/assets/stylesheets/helpers/_convert-units.scss +21 -0
  176. data/app/assets/stylesheets/helpers/_directional-values.scss +96 -0
  177. data/app/assets/stylesheets/helpers/_font-source-declaration.scss +43 -0
  178. data/app/assets/stylesheets/helpers/_gradient-positions-parser.scss +13 -0
  179. data/app/assets/stylesheets/helpers/_linear-angle-parser.scss +25 -0
  180. data/app/assets/stylesheets/helpers/_linear-gradient-parser.scss +41 -0
  181. data/app/assets/stylesheets/helpers/_linear-positions-parser.scss +61 -0
  182. data/app/assets/stylesheets/helpers/_linear-side-corner-parser.scss +31 -0
  183. data/app/assets/stylesheets/helpers/_radial-arg-parser.scss +69 -0
  184. data/app/assets/stylesheets/helpers/_radial-gradient-parser.scss +50 -0
  185. data/app/assets/stylesheets/helpers/_radial-positions-parser.scss +18 -0
  186. data/app/assets/stylesheets/helpers/_render-gradients.scss +26 -0
  187. data/app/assets/stylesheets/helpers/_shape-size-stripper.scss +10 -0
  188. data/app/assets/stylesheets/helpers/_str-to-num.scss +50 -0
  189. data/app/assets/stylesheets/settings/_asset-pipeline.scss +7 -0
  190. data/app/assets/stylesheets/settings/_prefixer.scss +9 -0
  191. data/app/assets/stylesheets/settings/_px-to-em.scss +1 -0
  192. data/bin/console +14 -0
  193. data/bin/setup +7 -0
  194. data/lib/styler.rb +51 -0
  195. data/lib/styler/engine.rb +5 -0
  196. data/lib/styler/generator.rb +80 -0
  197. data/lib/styler/version.rb +3 -0
  198. data/lib/tasks/install.rake +20 -0
  199. data/styler.gemspec +40 -0
  200. metadata +369 -0
@@ -0,0 +1,5 @@
1
+ module Styler
2
+ class Engine < Rails::Engine
3
+
4
+ end
5
+ end
@@ -0,0 +1,80 @@
1
+ require 'styler/version'
2
+ require "fileutils"
3
+ require 'thor'
4
+
5
+ module Styler
6
+ class Generator < Thor
7
+ map ['-v', '--version'] => :version
8
+
9
+ desc 'install', 'Install Bourbon into your project'
10
+ method_options :path => :string, :force => :boolean
11
+ def install
12
+ if bourbon_files_already_exist? && !options[:force]
13
+ puts "Bourbon files already installed, doing nothing."
14
+ else
15
+ install_files
16
+ puts "Bourbon files installed to #{install_path}/"
17
+ end
18
+ end
19
+
20
+ desc 'update', 'Update Bourbon'
21
+ method_options :path => :string
22
+ def update
23
+ if bourbon_files_already_exist?
24
+ remove_bourbon_directory
25
+ install_files
26
+ puts "Bourbon files updated."
27
+ else
28
+ puts "No existing bourbon installation. Doing nothing."
29
+ end
30
+ end
31
+
32
+ desc 'version', 'Show Bourbon version'
33
+ def version
34
+ say "Bourbon #{Bourbon::VERSION}"
35
+ end
36
+
37
+ private
38
+
39
+ def bourbon_files_already_exist?
40
+ install_path.exist?
41
+ end
42
+
43
+ def install_path
44
+ @install_path ||= if options[:path]
45
+ Pathname.new(File.join(options[:path], 'bourbon'))
46
+ else
47
+ Pathname.new('bourbon')
48
+ end
49
+ end
50
+
51
+ def install_files
52
+ make_install_directory
53
+ copy_in_scss_files
54
+ end
55
+
56
+ def remove_bourbon_directory
57
+ FileUtils.rm_rf("bourbon")
58
+ end
59
+
60
+ def make_install_directory
61
+ FileUtils.mkdir_p(install_path)
62
+ end
63
+
64
+ def copy_in_scss_files
65
+ FileUtils.cp_r(all_stylesheets, install_path)
66
+ end
67
+
68
+ def all_stylesheets
69
+ Dir["#{stylesheets_directory}/*"]
70
+ end
71
+
72
+ def stylesheets_directory
73
+ File.join(top_level_directory, "app", "assets", "stylesheets")
74
+ end
75
+
76
+ def top_level_directory
77
+ File.dirname(File.dirname(File.dirname(__FILE__)))
78
+ end
79
+ end
80
+ end
@@ -0,0 +1,3 @@
1
+ module Styler
2
+ VERSION = "0.1.1"
3
+ end
@@ -0,0 +1,20 @@
1
+ # Needed for pre-3.1.
2
+
3
+ require "fileutils"
4
+ require "find"
5
+
6
+ namespace :bourbon do
7
+ desc "Move files to the Rails assets directory."
8
+ task :install, [:sass_path] do |t, args|
9
+ args.with_defaults(:sass_path => 'public/stylesheets/sass')
10
+ source_root = File.expand_path(File.join(File.dirname(__FILE__), '..', '..'))
11
+ FileUtils.mkdir_p("#{Rails.root}/#{args.sass_path}/bourbon")
12
+ FileUtils.cp_r("#{source_root}/app/assets/stylesheets/.", "#{Rails.root}/#{args.sass_path}/bourbon", { :preserve => true })
13
+ Find.find("#{Rails.root}/#{args.sass_path}/bourbon") do |path|
14
+ if path.end_with?(".css.scss")
15
+ path_without_css_extension = path.gsub(/\.css\.scss$/, ".scss")
16
+ FileUtils.mv(path, path_without_css_extension)
17
+ end
18
+ end
19
+ end
20
+ end
data/styler.gemspec ADDED
@@ -0,0 +1,40 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'styler/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "styler-sass"
8
+ spec.version = Styler::VERSION
9
+ spec.authors = ["Alinuxfriend"]
10
+ spec.email = ["ajoshi856@gmail.com"]
11
+
12
+ spec.summary = %q{Hybrid Solution for bootstrap bourbon awesome font normalize}
13
+ spec.description = %q{Hybrid Solution for bootstrap bourbon awesome font normalize}
14
+ spec.homepage = "https://github.com/Alinuxfriend/Styler"
15
+ spec.license = "MIT"
16
+
17
+ # Prevent pushing this gem to RubyGems.org by setting 'allowed_push_host', or
18
+ # delete this section to allow pushing this gem to any host.
19
+ if spec.respond_to?(:metadata)
20
+ spec.metadata['allowed_push_host'] = "https://rubygems.org"
21
+ else
22
+ raise "RubyGems 2.0 or newer is required to protect against public gem pushes."
23
+ end
24
+
25
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
26
+ spec.bindir = "exe"
27
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
28
+ spec.require_paths = ["lib"]
29
+
30
+ spec.add_development_dependency "bundler", "~> 1.10"
31
+ spec.add_development_dependency "rake", "~> 10.0"
32
+ spec.add_development_dependency "rspec"
33
+ spec.add_runtime_dependency("sass", "~> 3.4")
34
+ spec.add_runtime_dependency("thor", "~> 0.19")
35
+
36
+ spec.add_development_dependency("aruba", "~> 0.6.2")
37
+ spec.add_development_dependency("css_parser", "~> 1.3")
38
+ spec.add_development_dependency("scss_lint", "0.41")
39
+ spec.add_development_dependency("guard-rspec")
40
+ end
metadata ADDED
@@ -0,0 +1,369 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: styler-sass
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.1
5
+ platform: ruby
6
+ authors:
7
+ - Alinuxfriend
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2015-11-11 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.10'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.10'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rspec
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: sass
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '3.4'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '3.4'
69
+ - !ruby/object:Gem::Dependency
70
+ name: thor
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '0.19'
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '0.19'
83
+ - !ruby/object:Gem::Dependency
84
+ name: aruba
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: 0.6.2
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: 0.6.2
97
+ - !ruby/object:Gem::Dependency
98
+ name: css_parser
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - "~>"
102
+ - !ruby/object:Gem::Version
103
+ version: '1.3'
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - "~>"
109
+ - !ruby/object:Gem::Version
110
+ version: '1.3'
111
+ - !ruby/object:Gem::Dependency
112
+ name: scss_lint
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - '='
116
+ - !ruby/object:Gem::Version
117
+ version: '0.41'
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - '='
123
+ - !ruby/object:Gem::Version
124
+ version: '0.41'
125
+ - !ruby/object:Gem::Dependency
126
+ name: guard-rspec
127
+ requirement: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - ">="
130
+ - !ruby/object:Gem::Version
131
+ version: '0'
132
+ type: :development
133
+ prerelease: false
134
+ version_requirements: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - ">="
137
+ - !ruby/object:Gem::Version
138
+ version: '0'
139
+ description: Hybrid Solution for bootstrap bourbon awesome font normalize
140
+ email:
141
+ - ajoshi856@gmail.com
142
+ executables: []
143
+ extensions: []
144
+ extra_rdoc_files: []
145
+ files:
146
+ - ".gitignore"
147
+ - ".rspec"
148
+ - ".travis.yml"
149
+ - Gemfile
150
+ - Guardfile
151
+ - LICENSE.txt
152
+ - README.md
153
+ - Rakefile
154
+ - app/assets/fonts/awesome/FontAwesome.otf
155
+ - app/assets/fonts/awesome/fontawesome-webfont.eot
156
+ - app/assets/fonts/awesome/fontawesome-webfont.svg
157
+ - app/assets/fonts/awesome/fontawesome-webfont.ttf
158
+ - app/assets/fonts/awesome/fontawesome-webfont.woff
159
+ - app/assets/fonts/awesome/fontawesome-webfont.woff2
160
+ - app/assets/fonts/bootstrap/glyphicons-halflings-regular.eot
161
+ - app/assets/fonts/bootstrap/glyphicons-halflings-regular.svg
162
+ - app/assets/fonts/bootstrap/glyphicons-halflings-regular.ttf
163
+ - app/assets/fonts/bootstrap/glyphicons-halflings-regular.woff
164
+ - app/assets/fonts/bootstrap/glyphicons-halflings-regular.woff2
165
+ - app/assets/images/.keep
166
+ - app/assets/javascripts/bootstrap-sprockets.js
167
+ - app/assets/javascripts/bootstrap.js
168
+ - app/assets/javascripts/bootstrap.min.js
169
+ - app/assets/javascripts/bootstrap/affix.js
170
+ - app/assets/javascripts/bootstrap/alert.js
171
+ - app/assets/javascripts/bootstrap/button.js
172
+ - app/assets/javascripts/bootstrap/carousel.js
173
+ - app/assets/javascripts/bootstrap/collapse.js
174
+ - app/assets/javascripts/bootstrap/dropdown.js
175
+ - app/assets/javascripts/bootstrap/modal.js
176
+ - app/assets/javascripts/bootstrap/popover.js
177
+ - app/assets/javascripts/bootstrap/scrollspy.js
178
+ - app/assets/javascripts/bootstrap/tab.js
179
+ - app/assets/javascripts/bootstrap/tooltip.js
180
+ - app/assets/javascripts/bootstrap/transition.js
181
+ - app/assets/stylesheets/_bootstrap-compass.scss
182
+ - app/assets/stylesheets/_bootstrap-mincer.scss
183
+ - app/assets/stylesheets/_bootstrap-sprockets.scss
184
+ - app/assets/stylesheets/_bootstrap.scss
185
+ - app/assets/stylesheets/_bourbon-deprecated-upcoming.scss
186
+ - app/assets/stylesheets/_bourbon.scss
187
+ - app/assets/stylesheets/_font-awesome.css.scss
188
+ - app/assets/stylesheets/_font-awesome.min.css.scss
189
+ - app/assets/stylesheets/_normalize.css.scss
190
+ - app/assets/stylesheets/addons/_border-color.scss
191
+ - app/assets/stylesheets/addons/_border-radius.scss
192
+ - app/assets/stylesheets/addons/_border-style.scss
193
+ - app/assets/stylesheets/addons/_border-width.scss
194
+ - app/assets/stylesheets/addons/_buttons.scss
195
+ - app/assets/stylesheets/addons/_clearfix.scss
196
+ - app/assets/stylesheets/addons/_ellipsis.scss
197
+ - app/assets/stylesheets/addons/_font-stacks.scss
198
+ - app/assets/stylesheets/addons/_hide-text.scss
199
+ - app/assets/stylesheets/addons/_margin.scss
200
+ - app/assets/stylesheets/addons/_padding.scss
201
+ - app/assets/stylesheets/addons/_position.scss
202
+ - app/assets/stylesheets/addons/_prefixer.scss
203
+ - app/assets/stylesheets/addons/_retina-image.scss
204
+ - app/assets/stylesheets/addons/_size.scss
205
+ - app/assets/stylesheets/addons/_text-inputs.scss
206
+ - app/assets/stylesheets/addons/_timing-functions.scss
207
+ - app/assets/stylesheets/addons/_triangle.scss
208
+ - app/assets/stylesheets/addons/_word-wrap.scss
209
+ - app/assets/stylesheets/bootstrap/_alerts.scss
210
+ - app/assets/stylesheets/bootstrap/_badges.scss
211
+ - app/assets/stylesheets/bootstrap/_breadcrumbs.scss
212
+ - app/assets/stylesheets/bootstrap/_button-groups.scss
213
+ - app/assets/stylesheets/bootstrap/_buttons.scss
214
+ - app/assets/stylesheets/bootstrap/_carousel.scss
215
+ - app/assets/stylesheets/bootstrap/_close.scss
216
+ - app/assets/stylesheets/bootstrap/_code.scss
217
+ - app/assets/stylesheets/bootstrap/_component-animations.scss
218
+ - app/assets/stylesheets/bootstrap/_dropdowns.scss
219
+ - app/assets/stylesheets/bootstrap/_forms.scss
220
+ - app/assets/stylesheets/bootstrap/_glyphicons.scss
221
+ - app/assets/stylesheets/bootstrap/_grid.scss
222
+ - app/assets/stylesheets/bootstrap/_input-groups.scss
223
+ - app/assets/stylesheets/bootstrap/_jumbotron.scss
224
+ - app/assets/stylesheets/bootstrap/_labels.scss
225
+ - app/assets/stylesheets/bootstrap/_list-group.scss
226
+ - app/assets/stylesheets/bootstrap/_media.scss
227
+ - app/assets/stylesheets/bootstrap/_mixins.scss
228
+ - app/assets/stylesheets/bootstrap/_modals.scss
229
+ - app/assets/stylesheets/bootstrap/_navbar.scss
230
+ - app/assets/stylesheets/bootstrap/_navs.scss
231
+ - app/assets/stylesheets/bootstrap/_normalize.scss
232
+ - app/assets/stylesheets/bootstrap/_pager.scss
233
+ - app/assets/stylesheets/bootstrap/_pagination.scss
234
+ - app/assets/stylesheets/bootstrap/_panels.scss
235
+ - app/assets/stylesheets/bootstrap/_popovers.scss
236
+ - app/assets/stylesheets/bootstrap/_print.scss
237
+ - app/assets/stylesheets/bootstrap/_progress-bars.scss
238
+ - app/assets/stylesheets/bootstrap/_responsive-embed.scss
239
+ - app/assets/stylesheets/bootstrap/_responsive-utilities.scss
240
+ - app/assets/stylesheets/bootstrap/_scaffolding.scss
241
+ - app/assets/stylesheets/bootstrap/_tables.scss
242
+ - app/assets/stylesheets/bootstrap/_theme.scss
243
+ - app/assets/stylesheets/bootstrap/_thumbnails.scss
244
+ - app/assets/stylesheets/bootstrap/_tooltip.scss
245
+ - app/assets/stylesheets/bootstrap/_type.scss
246
+ - app/assets/stylesheets/bootstrap/_utilities.scss
247
+ - app/assets/stylesheets/bootstrap/_variables.scss
248
+ - app/assets/stylesheets/bootstrap/_wells.scss
249
+ - app/assets/stylesheets/bootstrap/mixins/_alerts.scss
250
+ - app/assets/stylesheets/bootstrap/mixins/_background-variant.scss
251
+ - app/assets/stylesheets/bootstrap/mixins/_border-radius.scss
252
+ - app/assets/stylesheets/bootstrap/mixins/_buttons.scss
253
+ - app/assets/stylesheets/bootstrap/mixins/_center-block.scss
254
+ - app/assets/stylesheets/bootstrap/mixins/_clearfix.scss
255
+ - app/assets/stylesheets/bootstrap/mixins/_forms.scss
256
+ - app/assets/stylesheets/bootstrap/mixins/_gradients.scss
257
+ - app/assets/stylesheets/bootstrap/mixins/_grid-framework.scss
258
+ - app/assets/stylesheets/bootstrap/mixins/_grid.scss
259
+ - app/assets/stylesheets/bootstrap/mixins/_hide-text.scss
260
+ - app/assets/stylesheets/bootstrap/mixins/_image.scss
261
+ - app/assets/stylesheets/bootstrap/mixins/_labels.scss
262
+ - app/assets/stylesheets/bootstrap/mixins/_list-group.scss
263
+ - app/assets/stylesheets/bootstrap/mixins/_nav-divider.scss
264
+ - app/assets/stylesheets/bootstrap/mixins/_nav-vertical-align.scss
265
+ - app/assets/stylesheets/bootstrap/mixins/_opacity.scss
266
+ - app/assets/stylesheets/bootstrap/mixins/_pagination.scss
267
+ - app/assets/stylesheets/bootstrap/mixins/_panels.scss
268
+ - app/assets/stylesheets/bootstrap/mixins/_progress-bar.scss
269
+ - app/assets/stylesheets/bootstrap/mixins/_reset-filter.scss
270
+ - app/assets/stylesheets/bootstrap/mixins/_reset-text.scss
271
+ - app/assets/stylesheets/bootstrap/mixins/_resize.scss
272
+ - app/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss
273
+ - app/assets/stylesheets/bootstrap/mixins/_size.scss
274
+ - app/assets/stylesheets/bootstrap/mixins/_tab-focus.scss
275
+ - app/assets/stylesheets/bootstrap/mixins/_table-row.scss
276
+ - app/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss
277
+ - app/assets/stylesheets/bootstrap/mixins/_text-overflow.scss
278
+ - app/assets/stylesheets/bootstrap/mixins/_vendor-prefixes.scss
279
+ - app/assets/stylesheets/css3/_animation.scss
280
+ - app/assets/stylesheets/css3/_appearance.scss
281
+ - app/assets/stylesheets/css3/_backface-visibility.scss
282
+ - app/assets/stylesheets/css3/_background-image.scss
283
+ - app/assets/stylesheets/css3/_background.scss
284
+ - app/assets/stylesheets/css3/_border-image.scss
285
+ - app/assets/stylesheets/css3/_calc.scss
286
+ - app/assets/stylesheets/css3/_columns.scss
287
+ - app/assets/stylesheets/css3/_filter.scss
288
+ - app/assets/stylesheets/css3/_flex-box.scss
289
+ - app/assets/stylesheets/css3/_font-face.scss
290
+ - app/assets/stylesheets/css3/_font-feature-settings.scss
291
+ - app/assets/stylesheets/css3/_hidpi-media-query.scss
292
+ - app/assets/stylesheets/css3/_hyphens.scss
293
+ - app/assets/stylesheets/css3/_image-rendering.scss
294
+ - app/assets/stylesheets/css3/_keyframes.scss
295
+ - app/assets/stylesheets/css3/_linear-gradient.scss
296
+ - app/assets/stylesheets/css3/_perspective.scss
297
+ - app/assets/stylesheets/css3/_placeholder.scss
298
+ - app/assets/stylesheets/css3/_radial-gradient.scss
299
+ - app/assets/stylesheets/css3/_selection.scss
300
+ - app/assets/stylesheets/css3/_text-decoration.scss
301
+ - app/assets/stylesheets/css3/_transform.scss
302
+ - app/assets/stylesheets/css3/_transition.scss
303
+ - app/assets/stylesheets/css3/_user-select.scss
304
+ - app/assets/stylesheets/functions/_assign-inputs.scss
305
+ - app/assets/stylesheets/functions/_contains-falsy.scss
306
+ - app/assets/stylesheets/functions/_contains.scss
307
+ - app/assets/stylesheets/functions/_is-length.scss
308
+ - app/assets/stylesheets/functions/_is-light.scss
309
+ - app/assets/stylesheets/functions/_is-number.scss
310
+ - app/assets/stylesheets/functions/_is-size.scss
311
+ - app/assets/stylesheets/functions/_modular-scale.scss
312
+ - app/assets/stylesheets/functions/_px-to-em.scss
313
+ - app/assets/stylesheets/functions/_px-to-rem.scss
314
+ - app/assets/stylesheets/functions/_shade.scss
315
+ - app/assets/stylesheets/functions/_strip-units.scss
316
+ - app/assets/stylesheets/functions/_tint.scss
317
+ - app/assets/stylesheets/functions/_transition-property-name.scss
318
+ - app/assets/stylesheets/functions/_unpack.scss
319
+ - app/assets/stylesheets/helpers/_convert-units.scss
320
+ - app/assets/stylesheets/helpers/_directional-values.scss
321
+ - app/assets/stylesheets/helpers/_font-source-declaration.scss
322
+ - app/assets/stylesheets/helpers/_gradient-positions-parser.scss
323
+ - app/assets/stylesheets/helpers/_linear-angle-parser.scss
324
+ - app/assets/stylesheets/helpers/_linear-gradient-parser.scss
325
+ - app/assets/stylesheets/helpers/_linear-positions-parser.scss
326
+ - app/assets/stylesheets/helpers/_linear-side-corner-parser.scss
327
+ - app/assets/stylesheets/helpers/_radial-arg-parser.scss
328
+ - app/assets/stylesheets/helpers/_radial-gradient-parser.scss
329
+ - app/assets/stylesheets/helpers/_radial-positions-parser.scss
330
+ - app/assets/stylesheets/helpers/_render-gradients.scss
331
+ - app/assets/stylesheets/helpers/_shape-size-stripper.scss
332
+ - app/assets/stylesheets/helpers/_str-to-num.scss
333
+ - app/assets/stylesheets/settings/_asset-pipeline.scss
334
+ - app/assets/stylesheets/settings/_prefixer.scss
335
+ - app/assets/stylesheets/settings/_px-to-em.scss
336
+ - bin/console
337
+ - bin/setup
338
+ - lib/styler.rb
339
+ - lib/styler/engine.rb
340
+ - lib/styler/generator.rb
341
+ - lib/styler/version.rb
342
+ - lib/tasks/install.rake
343
+ - styler.gemspec
344
+ homepage: https://github.com/Alinuxfriend/Styler
345
+ licenses:
346
+ - MIT
347
+ metadata:
348
+ allowed_push_host: https://rubygems.org
349
+ post_install_message:
350
+ rdoc_options: []
351
+ require_paths:
352
+ - lib
353
+ required_ruby_version: !ruby/object:Gem::Requirement
354
+ requirements:
355
+ - - ">="
356
+ - !ruby/object:Gem::Version
357
+ version: '0'
358
+ required_rubygems_version: !ruby/object:Gem::Requirement
359
+ requirements:
360
+ - - ">="
361
+ - !ruby/object:Gem::Version
362
+ version: '0'
363
+ requirements: []
364
+ rubyforge_project:
365
+ rubygems_version: 2.4.8
366
+ signing_key:
367
+ specification_version: 4
368
+ summary: Hybrid Solution for bootstrap bourbon awesome font normalize
369
+ test_files: []