bootswatch 4.0.0.alpha1

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 (50) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +19 -0
  3. data/Gemfile +4 -0
  4. data/LICENSE.txt +22 -0
  5. data/README.md +45 -0
  6. data/Rakefile +60 -0
  7. data/app/assets/stylesheets/bootswatch/cerulean/_bootswatch.scss +71 -0
  8. data/app/assets/stylesheets/bootswatch/cerulean/_variables.scss +855 -0
  9. data/app/assets/stylesheets/bootswatch/cosmo/_bootswatch.scss +45 -0
  10. data/app/assets/stylesheets/bootswatch/cosmo/_variables.scss +855 -0
  11. data/app/assets/stylesheets/bootswatch/custom/_bootswatch.scss +21 -0
  12. data/app/assets/stylesheets/bootswatch/custom/_variables.scss +857 -0
  13. data/app/assets/stylesheets/bootswatch/cyborg/_bootswatch.scss +140 -0
  14. data/app/assets/stylesheets/bootswatch/cyborg/_variables.scss +855 -0
  15. data/app/assets/stylesheets/bootswatch/darkly/_bootswatch.scss +146 -0
  16. data/app/assets/stylesheets/bootswatch/darkly/_variables.scss +855 -0
  17. data/app/assets/stylesheets/bootswatch/flatly/_bootswatch.scss +116 -0
  18. data/app/assets/stylesheets/bootswatch/flatly/_variables.scss +855 -0
  19. data/app/assets/stylesheets/bootswatch/journal/_bootswatch.scss +65 -0
  20. data/app/assets/stylesheets/bootswatch/journal/_variables.scss +857 -0
  21. data/app/assets/stylesheets/bootswatch/litera/_bootswatch.scss +130 -0
  22. data/app/assets/stylesheets/bootswatch/litera/_variables.scss +855 -0
  23. data/app/assets/stylesheets/bootswatch/lumen/_bootswatch.scss +298 -0
  24. data/app/assets/stylesheets/bootswatch/lumen/_variables.scss +855 -0
  25. data/app/assets/stylesheets/bootswatch/lux/_bootswatch.scss +115 -0
  26. data/app/assets/stylesheets/bootswatch/lux/_variables.scss +857 -0
  27. data/app/assets/stylesheets/bootswatch/materia/_bootswatch.scss +614 -0
  28. data/app/assets/stylesheets/bootswatch/materia/_variables.scss +857 -0
  29. data/app/assets/stylesheets/bootswatch/minty/_bootswatch.scss +89 -0
  30. data/app/assets/stylesheets/bootswatch/minty/_variables.scss +856 -0
  31. data/app/assets/stylesheets/bootswatch/pulse/_bootswatch.scss +126 -0
  32. data/app/assets/stylesheets/bootswatch/pulse/_variables.scss +857 -0
  33. data/app/assets/stylesheets/bootswatch/sandstone/_bootswatch.scss +156 -0
  34. data/app/assets/stylesheets/bootswatch/sandstone/_variables.scss +855 -0
  35. data/app/assets/stylesheets/bootswatch/simplex/_bootswatch.scss +106 -0
  36. data/app/assets/stylesheets/bootswatch/simplex/_variables.scss +857 -0
  37. data/app/assets/stylesheets/bootswatch/slate/_bootswatch.scss +278 -0
  38. data/app/assets/stylesheets/bootswatch/slate/_variables.scss +856 -0
  39. data/app/assets/stylesheets/bootswatch/spacelab/_bootswatch.scss +129 -0
  40. data/app/assets/stylesheets/bootswatch/spacelab/_variables.scss +855 -0
  41. data/app/assets/stylesheets/bootswatch/superhero/_bootswatch.scss +140 -0
  42. data/app/assets/stylesheets/bootswatch/superhero/_variables.scss +856 -0
  43. data/app/assets/stylesheets/bootswatch/united/_bootswatch.scss +36 -0
  44. data/app/assets/stylesheets/bootswatch/united/_variables.scss +855 -0
  45. data/app/assets/stylesheets/bootswatch/yeti/_bootswatch.scss +304 -0
  46. data/app/assets/stylesheets/bootswatch/yeti/_variables.scss +855 -0
  47. data/bootswatch.gemspec +23 -0
  48. data/lib/bootswatch.rb +6 -0
  49. data/lib/bootswatch/version.rb +3 -0
  50. metadata +120 -0
@@ -0,0 +1,23 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'bootswatch/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "bootswatch"
8
+ spec.version = Bootswatch::VERSION
9
+ spec.authors = ["mkhairi"]
10
+ spec.email = ["khairi@labs.my"]
11
+ spec.summary = %q{Bootswatches sass for rails.}
12
+ spec.description = %q{Bootswatches in your Rails asset pipeline.}
13
+ spec.homepage = "https://github.com/mkhairi/bootswatch"
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files -z`.split("\x0")
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_development_dependency "bundler", "~> 1.7"
22
+ spec.add_development_dependency "rake", "~> 10.0"
23
+ end
data/lib/bootswatch.rb ADDED
@@ -0,0 +1,6 @@
1
+ require "bootswatch/version"
2
+
3
+ module Bootswatch
4
+ class Engine < ::Rails::Engine
5
+ end
6
+ end
@@ -0,0 +1,3 @@
1
+ module Bootswatch
2
+ VERSION = '4.0.0.alpha1'
3
+ end
metadata ADDED
@@ -0,0 +1,120 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: bootswatch
3
+ version: !ruby/object:Gem::Version
4
+ version: 4.0.0.alpha1
5
+ platform: ruby
6
+ authors:
7
+ - mkhairi
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2017-01-03 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.7'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.7'
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
+ description: Bootswatches in your Rails asset pipeline.
42
+ email:
43
+ - khairi@labs.my
44
+ executables: []
45
+ extensions: []
46
+ extra_rdoc_files: []
47
+ files:
48
+ - ".gitignore"
49
+ - Gemfile
50
+ - LICENSE.txt
51
+ - README.md
52
+ - Rakefile
53
+ - app/assets/stylesheets/bootswatch/cerulean/_bootswatch.scss
54
+ - app/assets/stylesheets/bootswatch/cerulean/_variables.scss
55
+ - app/assets/stylesheets/bootswatch/cosmo/_bootswatch.scss
56
+ - app/assets/stylesheets/bootswatch/cosmo/_variables.scss
57
+ - app/assets/stylesheets/bootswatch/custom/_bootswatch.scss
58
+ - app/assets/stylesheets/bootswatch/custom/_variables.scss
59
+ - app/assets/stylesheets/bootswatch/cyborg/_bootswatch.scss
60
+ - app/assets/stylesheets/bootswatch/cyborg/_variables.scss
61
+ - app/assets/stylesheets/bootswatch/darkly/_bootswatch.scss
62
+ - app/assets/stylesheets/bootswatch/darkly/_variables.scss
63
+ - app/assets/stylesheets/bootswatch/flatly/_bootswatch.scss
64
+ - app/assets/stylesheets/bootswatch/flatly/_variables.scss
65
+ - app/assets/stylesheets/bootswatch/journal/_bootswatch.scss
66
+ - app/assets/stylesheets/bootswatch/journal/_variables.scss
67
+ - app/assets/stylesheets/bootswatch/litera/_bootswatch.scss
68
+ - app/assets/stylesheets/bootswatch/litera/_variables.scss
69
+ - app/assets/stylesheets/bootswatch/lumen/_bootswatch.scss
70
+ - app/assets/stylesheets/bootswatch/lumen/_variables.scss
71
+ - app/assets/stylesheets/bootswatch/lux/_bootswatch.scss
72
+ - app/assets/stylesheets/bootswatch/lux/_variables.scss
73
+ - app/assets/stylesheets/bootswatch/materia/_bootswatch.scss
74
+ - app/assets/stylesheets/bootswatch/materia/_variables.scss
75
+ - app/assets/stylesheets/bootswatch/minty/_bootswatch.scss
76
+ - app/assets/stylesheets/bootswatch/minty/_variables.scss
77
+ - app/assets/stylesheets/bootswatch/pulse/_bootswatch.scss
78
+ - app/assets/stylesheets/bootswatch/pulse/_variables.scss
79
+ - app/assets/stylesheets/bootswatch/sandstone/_bootswatch.scss
80
+ - app/assets/stylesheets/bootswatch/sandstone/_variables.scss
81
+ - app/assets/stylesheets/bootswatch/simplex/_bootswatch.scss
82
+ - app/assets/stylesheets/bootswatch/simplex/_variables.scss
83
+ - app/assets/stylesheets/bootswatch/slate/_bootswatch.scss
84
+ - app/assets/stylesheets/bootswatch/slate/_variables.scss
85
+ - app/assets/stylesheets/bootswatch/spacelab/_bootswatch.scss
86
+ - app/assets/stylesheets/bootswatch/spacelab/_variables.scss
87
+ - app/assets/stylesheets/bootswatch/superhero/_bootswatch.scss
88
+ - app/assets/stylesheets/bootswatch/superhero/_variables.scss
89
+ - app/assets/stylesheets/bootswatch/united/_bootswatch.scss
90
+ - app/assets/stylesheets/bootswatch/united/_variables.scss
91
+ - app/assets/stylesheets/bootswatch/yeti/_bootswatch.scss
92
+ - app/assets/stylesheets/bootswatch/yeti/_variables.scss
93
+ - bootswatch.gemspec
94
+ - lib/bootswatch.rb
95
+ - lib/bootswatch/version.rb
96
+ homepage: https://github.com/mkhairi/bootswatch
97
+ licenses:
98
+ - MIT
99
+ metadata: {}
100
+ post_install_message:
101
+ rdoc_options: []
102
+ require_paths:
103
+ - lib
104
+ required_ruby_version: !ruby/object:Gem::Requirement
105
+ requirements:
106
+ - - ">="
107
+ - !ruby/object:Gem::Version
108
+ version: '0'
109
+ required_rubygems_version: !ruby/object:Gem::Requirement
110
+ requirements:
111
+ - - ">"
112
+ - !ruby/object:Gem::Version
113
+ version: 1.3.1
114
+ requirements: []
115
+ rubyforge_project:
116
+ rubygems_version: 2.5.1
117
+ signing_key:
118
+ specification_version: 4
119
+ summary: Bootswatches sass for rails.
120
+ test_files: []