bootswatch-sprockets 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (46) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +16 -0
  3. data/.gitmodules +3 -0
  4. data/Gemfile +4 -0
  5. data/LICENSE.txt +22 -0
  6. data/README.md +54 -0
  7. data/Rakefile +2 -0
  8. data/assets/stylesheets/bootswatch/cerulean/_bootswatch.scss +125 -0
  9. data/assets/stylesheets/bootswatch/cerulean/_variables.scss +856 -0
  10. data/assets/stylesheets/bootswatch/cosmo/_bootswatch.scss +237 -0
  11. data/assets/stylesheets/bootswatch/cosmo/_variables.scss +856 -0
  12. data/assets/stylesheets/bootswatch/custom/_bootswatch.scss +22 -0
  13. data/assets/stylesheets/bootswatch/custom/_variables.scss +856 -0
  14. data/assets/stylesheets/bootswatch/cyborg/_bootswatch.scss +210 -0
  15. data/assets/stylesheets/bootswatch/cyborg/_variables.scss +856 -0
  16. data/assets/stylesheets/bootswatch/darkly/_bootswatch.scss +328 -0
  17. data/assets/stylesheets/bootswatch/darkly/_variables.scss +856 -0
  18. data/assets/stylesheets/bootswatch/flatly/_bootswatch.scss +311 -0
  19. data/assets/stylesheets/bootswatch/flatly/_variables.scss +856 -0
  20. data/assets/stylesheets/bootswatch/global/build.scss +3 -0
  21. data/assets/stylesheets/bootswatch/journal/_bootswatch.scss +120 -0
  22. data/assets/stylesheets/bootswatch/journal/_variables.scss +856 -0
  23. data/assets/stylesheets/bootswatch/lumen/_bootswatch.scss +481 -0
  24. data/assets/stylesheets/bootswatch/lumen/_variables.scss +856 -0
  25. data/assets/stylesheets/bootswatch/paper/_bootswatch.scss +408 -0
  26. data/assets/stylesheets/bootswatch/paper/_variables.scss +856 -0
  27. data/assets/stylesheets/bootswatch/readable/_bootswatch.scss +187 -0
  28. data/assets/stylesheets/bootswatch/readable/_variables.scss +856 -0
  29. data/assets/stylesheets/bootswatch/sandstone/_bootswatch.scss +195 -0
  30. data/assets/stylesheets/bootswatch/sandstone/_variables.scss +856 -0
  31. data/assets/stylesheets/bootswatch/simplex/_bootswatch.scss +142 -0
  32. data/assets/stylesheets/bootswatch/simplex/_variables.scss +856 -0
  33. data/assets/stylesheets/bootswatch/slate/_bootswatch.scss +417 -0
  34. data/assets/stylesheets/bootswatch/slate/_variables.scss +856 -0
  35. data/assets/stylesheets/bootswatch/spacelab/_bootswatch.scss +137 -0
  36. data/assets/stylesheets/bootswatch/spacelab/_variables.scss +856 -0
  37. data/assets/stylesheets/bootswatch/superhero/_bootswatch.scss +332 -0
  38. data/assets/stylesheets/bootswatch/superhero/_variables.scss +856 -0
  39. data/assets/stylesheets/bootswatch/united/_bootswatch.scss +42 -0
  40. data/assets/stylesheets/bootswatch/united/_variables.scss +856 -0
  41. data/assets/stylesheets/bootswatch/yeti/_bootswatch.scss +437 -0
  42. data/assets/stylesheets/bootswatch/yeti/_variables.scss +856 -0
  43. data/bootswatch_sprockets.gemspec +32 -0
  44. data/lib/bootswatch_sprockets/version.rb +3 -0
  45. data/lib/bootswatch_sprockets.rb +5 -0
  46. metadata +144 -0
@@ -0,0 +1,32 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'bootswatch_sprockets/version'
5
+ require 'pry'
6
+
7
+ Gem::Specification.new do |spec|
8
+ spec.name = "bootswatch-sprockets"
9
+ spec.version = BootswatchSprockets::VERSION
10
+ spec.authors = ["Thomas Schank"]
11
+ spec.email = ["DrTom@schank.ch"]
12
+ spec.summary = "Bootswatch themes for the sprockets assets pipeline."
13
+ spec.homepage = "https://github.com/DrTom/bootswatch-sprockets"
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_runtime_dependency 'bootstrap-sass', '~> 3.3'
22
+
23
+ spec.add_development_dependency "pry"
24
+ spec.add_development_dependency "bundler", "~> 1.6"
25
+ spec.add_development_dependency "rake", "~> 10.0"
26
+
27
+ spec.files += \
28
+ Dir.glob("assets/**/*scss").reject do |filename|
29
+ filename =~ /bower_components/
30
+ end
31
+
32
+ end
@@ -0,0 +1,3 @@
1
+ module BootswatchSprockets
2
+ VERSION = "0.1.1"
3
+ end
@@ -0,0 +1,5 @@
1
+ require "bootswatch_sprockets/version"
2
+
3
+ module BootswatchSprockets
4
+ # Your code goes here...
5
+ end
metadata ADDED
@@ -0,0 +1,144 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: bootswatch-sprockets
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.1
5
+ platform: ruby
6
+ authors:
7
+ - Thomas Schank
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-11-26 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bootstrap-sass
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '3.3'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '3.3'
27
+ - !ruby/object:Gem::Dependency
28
+ name: pry
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: bundler
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '1.6'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '1.6'
55
+ - !ruby/object:Gem::Dependency
56
+ name: rake
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '10.0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '10.0'
69
+ description:
70
+ email:
71
+ - DrTom@schank.ch
72
+ executables: []
73
+ extensions: []
74
+ extra_rdoc_files: []
75
+ files:
76
+ - ".gitignore"
77
+ - ".gitmodules"
78
+ - Gemfile
79
+ - LICENSE.txt
80
+ - README.md
81
+ - Rakefile
82
+ - assets/stylesheets/bootswatch/cerulean/_bootswatch.scss
83
+ - assets/stylesheets/bootswatch/cerulean/_variables.scss
84
+ - assets/stylesheets/bootswatch/cosmo/_bootswatch.scss
85
+ - assets/stylesheets/bootswatch/cosmo/_variables.scss
86
+ - assets/stylesheets/bootswatch/custom/_bootswatch.scss
87
+ - assets/stylesheets/bootswatch/custom/_variables.scss
88
+ - assets/stylesheets/bootswatch/cyborg/_bootswatch.scss
89
+ - assets/stylesheets/bootswatch/cyborg/_variables.scss
90
+ - assets/stylesheets/bootswatch/darkly/_bootswatch.scss
91
+ - assets/stylesheets/bootswatch/darkly/_variables.scss
92
+ - assets/stylesheets/bootswatch/flatly/_bootswatch.scss
93
+ - assets/stylesheets/bootswatch/flatly/_variables.scss
94
+ - assets/stylesheets/bootswatch/global/build.scss
95
+ - assets/stylesheets/bootswatch/journal/_bootswatch.scss
96
+ - assets/stylesheets/bootswatch/journal/_variables.scss
97
+ - assets/stylesheets/bootswatch/lumen/_bootswatch.scss
98
+ - assets/stylesheets/bootswatch/lumen/_variables.scss
99
+ - assets/stylesheets/bootswatch/paper/_bootswatch.scss
100
+ - assets/stylesheets/bootswatch/paper/_variables.scss
101
+ - assets/stylesheets/bootswatch/readable/_bootswatch.scss
102
+ - assets/stylesheets/bootswatch/readable/_variables.scss
103
+ - assets/stylesheets/bootswatch/sandstone/_bootswatch.scss
104
+ - assets/stylesheets/bootswatch/sandstone/_variables.scss
105
+ - assets/stylesheets/bootswatch/simplex/_bootswatch.scss
106
+ - assets/stylesheets/bootswatch/simplex/_variables.scss
107
+ - assets/stylesheets/bootswatch/slate/_bootswatch.scss
108
+ - assets/stylesheets/bootswatch/slate/_variables.scss
109
+ - assets/stylesheets/bootswatch/spacelab/_bootswatch.scss
110
+ - assets/stylesheets/bootswatch/spacelab/_variables.scss
111
+ - assets/stylesheets/bootswatch/superhero/_bootswatch.scss
112
+ - assets/stylesheets/bootswatch/superhero/_variables.scss
113
+ - assets/stylesheets/bootswatch/united/_bootswatch.scss
114
+ - assets/stylesheets/bootswatch/united/_variables.scss
115
+ - assets/stylesheets/bootswatch/yeti/_bootswatch.scss
116
+ - assets/stylesheets/bootswatch/yeti/_variables.scss
117
+ - bootswatch_sprockets.gemspec
118
+ - lib/bootswatch_sprockets.rb
119
+ - lib/bootswatch_sprockets/version.rb
120
+ homepage: https://github.com/DrTom/bootswatch-sprockets
121
+ licenses:
122
+ - MIT
123
+ metadata: {}
124
+ post_install_message:
125
+ rdoc_options: []
126
+ require_paths:
127
+ - lib
128
+ required_ruby_version: !ruby/object:Gem::Requirement
129
+ requirements:
130
+ - - ">="
131
+ - !ruby/object:Gem::Version
132
+ version: '0'
133
+ required_rubygems_version: !ruby/object:Gem::Requirement
134
+ requirements:
135
+ - - ">="
136
+ - !ruby/object:Gem::Version
137
+ version: '0'
138
+ requirements: []
139
+ rubyforge_project:
140
+ rubygems_version: 2.2.2
141
+ signing_key:
142
+ specification_version: 4
143
+ summary: Bootswatch themes for the sprockets assets pipeline.
144
+ test_files: []