bootstrap-sass 2.3.1.0 → 2.3.1.2
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.
Potentially problematic release.
This version of bootstrap-sass might be problematic. Click here for more details.
- checksums.yaml +7 -0
- data/README.md +11 -3
- data/lib/bootstrap-sass.rb +14 -8
- data/lib/bootstrap-sass/compass_functions.rb +12 -7
- data/lib/bootstrap-sass/{rails_functions.rb → sass_functions.rb} +0 -0
- data/templates/project/_variables.scss +301 -0
- data/templates/project/manifest.rb +3 -2
- data/templates/project/styles.scss +4 -1
- data/vendor/assets/stylesheets/bootstrap/_variables.scss +3 -3
- metadata +28 -20
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: abc17b423a1df19e6eecd88f0f2bb6b09312d4ee
|
4
|
+
data.tar.gz: 361f4c2579228f7324e8554a42efef1f7a84eac0
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 3a7cf1bb81f396eb8d2872f6e50ea79f146c96f140ad4e55bef300e0180c17d705e8fc2355077ed78cbcc548118d1c50af81ecce3644f9e75e9beaf79c067ac3
|
7
|
+
data.tar.gz: 018c7206adaccefba88fecf68a982d497286a83c439c2e1c33f2db0ab0b218f0892b8a8b6d83c7488ec15bdda39a743e6050f522d525f1047ebac9485dbcb73f
|
data/README.md
CHANGED
@@ -14,12 +14,20 @@ In your Gemfile:
|
|
14
14
|
|
15
15
|
```ruby
|
16
16
|
gem 'sass-rails', '~> 3.2'
|
17
|
-
gem 'bootstrap-sass', '~> 2.3.1.
|
17
|
+
gem 'bootstrap-sass', '~> 2.3.1.2'
|
18
18
|
```
|
19
19
|
|
20
|
+
`bundle install` and restart your server to make the files available.
|
21
|
+
|
22
|
+
#### Rails 4
|
23
|
+
|
24
|
+
Due to a change in Rails that prevents images from being compiled in vendor and lib, you'll need to add the following line to your application.rb:
|
25
|
+
|
26
|
+
config.assets.precompile += %w(*.png *.jpg *.jpeg *.gif)
|
27
|
+
|
20
28
|
#### CSS
|
21
29
|
|
22
|
-
Import
|
30
|
+
Import Bootstrap in an SCSS file (for example, `application.css.scss`) to get all of Bootstrap's styles, mixins and variables! We recommend against using `//= require` directives, since none of your other stylesheets will be [able to use](https://github.com/thomas-mcdonald/bootstrap-sass/issues/79#issuecomment-4428595) the awesome mixins that Bootstrap has defined.
|
23
31
|
|
24
32
|
```css
|
25
33
|
@import "bootstrap";
|
@@ -115,7 +123,7 @@ Basically this means you should expect to append a separate patch version to the
|
|
115
123
|
### Bundler?
|
116
124
|
|
117
125
|
```ruby
|
118
|
-
gem 'bootstrap-sass', '~> 2.3.1.
|
126
|
+
gem 'bootstrap-sass', '~> 2.3.1.2'
|
119
127
|
```
|
120
128
|
|
121
129
|
Don't use the standard `~> 2.x.y`. Your apps may break.
|
data/lib/bootstrap-sass.rb
CHANGED
@@ -3,20 +3,22 @@ module Bootstrap
|
|
3
3
|
|
4
4
|
# Inspired by Kaminari
|
5
5
|
def self.load!
|
6
|
-
if compass?
|
7
|
-
register_compass_extension
|
8
|
-
register_rails_engine
|
9
|
-
elsif compass?
|
10
|
-
# Only require compass extension if a standalone project
|
6
|
+
if compass?
|
11
7
|
require 'bootstrap-sass/compass_functions'
|
12
8
|
register_compass_extension
|
13
9
|
elsif asset_pipeline?
|
14
|
-
require '
|
10
|
+
require 'bootstrap-sass/sass_functions'
|
11
|
+
end
|
12
|
+
|
13
|
+
if rails?
|
14
|
+
require 'sass-rails'
|
15
15
|
register_rails_engine
|
16
|
-
|
17
|
-
|
16
|
+
end
|
17
|
+
|
18
|
+
if !(rails? || compass?)
|
18
19
|
raise Bootstrap::FrameworkNotFound, "bootstrap-sass requires either Rails > 3.1 or Compass, neither of which are loaded"
|
19
20
|
end
|
21
|
+
|
20
22
|
stylesheets = File.expand_path(File.join("..", 'vendor', 'assets', 'stylesheets'))
|
21
23
|
::Sass.load_paths << stylesheets
|
22
24
|
end
|
@@ -30,6 +32,10 @@ module Bootstrap
|
|
30
32
|
defined?(::Compass)
|
31
33
|
end
|
32
34
|
|
35
|
+
def self.rails?
|
36
|
+
defined?(::Rails)
|
37
|
+
end
|
38
|
+
|
33
39
|
def self.register_compass_extension
|
34
40
|
base = File.join(File.dirname(__FILE__), '..')
|
35
41
|
styles = File.join(base, 'vendor', 'assets', 'stylesheets')
|
@@ -1,14 +1,19 @@
|
|
1
1
|
# This contains functions for use with a project *only* using Compass.
|
2
|
-
|
3
2
|
module Sass::Script::Functions
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
3
|
+
def image_path(source, options = {})
|
4
|
+
if defined?(::Sprockets)
|
5
|
+
::Sass::Script::String.new sprockets_context.image_path(source.value).to_s, :string
|
6
|
+
elsif defined?(::Compass)
|
7
|
+
image_url(source, Sass::Script::Bool.new(true))
|
8
8
|
else
|
9
9
|
# Revert to the old compass-agnostic path determination
|
10
|
-
asset_sans_quotes =
|
10
|
+
asset_sans_quotes = source.value.gsub('"', '')
|
11
11
|
Sass::Script::String.new("/images/#{asset_sans_quotes}", :string)
|
12
12
|
end
|
13
13
|
end
|
14
|
-
|
14
|
+
|
15
|
+
protected
|
16
|
+
def sprockets_context # :nodoc:
|
17
|
+
options[:sprockets][:context]
|
18
|
+
end
|
19
|
+
end
|
File without changes
|
@@ -0,0 +1,301 @@
|
|
1
|
+
//
|
2
|
+
// Variables
|
3
|
+
// --------------------------------------------------
|
4
|
+
|
5
|
+
|
6
|
+
// Global values
|
7
|
+
// --------------------------------------------------
|
8
|
+
|
9
|
+
|
10
|
+
// Grays
|
11
|
+
// -------------------------
|
12
|
+
$black: #000;
|
13
|
+
$grayDarker: #222;
|
14
|
+
$grayDark: #333;
|
15
|
+
$gray: #555;
|
16
|
+
$grayLight: #999;
|
17
|
+
$grayLighter: #eee;
|
18
|
+
$white: #fff;
|
19
|
+
|
20
|
+
|
21
|
+
// Accent colors
|
22
|
+
// -------------------------
|
23
|
+
$blue: #049cdb;
|
24
|
+
$blueDark: #0064cd;
|
25
|
+
$green: #46a546;
|
26
|
+
$red: #9d261d;
|
27
|
+
$yellow: #ffc40d;
|
28
|
+
$orange: #f89406;
|
29
|
+
$pink: #c3325f;
|
30
|
+
$purple: #7a43b6;
|
31
|
+
|
32
|
+
|
33
|
+
// Scaffolding
|
34
|
+
// -------------------------
|
35
|
+
$bodyBackground: $white;
|
36
|
+
$textColor: $grayDark;
|
37
|
+
|
38
|
+
|
39
|
+
// Links
|
40
|
+
// -------------------------
|
41
|
+
$linkColor: #08c;
|
42
|
+
$linkColorHover: darken($linkColor, 15%);
|
43
|
+
|
44
|
+
|
45
|
+
// Typography
|
46
|
+
// -------------------------
|
47
|
+
$sansFontFamily: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
48
|
+
$serifFontFamily: Georgia, "Times New Roman", Times, serif;
|
49
|
+
$monoFontFamily: Monaco, Menlo, Consolas, "Courier New", monospace;
|
50
|
+
|
51
|
+
$baseFontSize: 14px;
|
52
|
+
$baseFontFamily: $sansFontFamily;
|
53
|
+
$baseLineHeight: 20px;
|
54
|
+
$altFontFamily: $serifFontFamily;
|
55
|
+
|
56
|
+
$headingsFontFamily: inherit; // empty to use BS default, $baseFontFamily
|
57
|
+
$headingsFontWeight: bold; // instead of browser default, bold
|
58
|
+
$headingsColor: inherit; // empty to use BS default, $textColor
|
59
|
+
|
60
|
+
|
61
|
+
// Component sizing
|
62
|
+
// -------------------------
|
63
|
+
// Based on 14px font-size and 20px line-height
|
64
|
+
|
65
|
+
$fontSizeLarge: $baseFontSize * 1.25; // ~18px
|
66
|
+
$fontSizeSmall: $baseFontSize * 0.85; // ~12px
|
67
|
+
$fontSizeMini: $baseFontSize * 0.75; // ~11px
|
68
|
+
|
69
|
+
$paddingLarge: 11px 19px; // 44px
|
70
|
+
$paddingSmall: 2px 10px; // 26px
|
71
|
+
$paddingMini: 0px 6px; // 22px
|
72
|
+
|
73
|
+
$baseBorderRadius: 4px;
|
74
|
+
$borderRadiusLarge: 6px;
|
75
|
+
$borderRadiusSmall: 3px;
|
76
|
+
|
77
|
+
|
78
|
+
// Tables
|
79
|
+
// -------------------------
|
80
|
+
$tableBackground: transparent; // overall background-color
|
81
|
+
$tableBackgroundAccent: #f9f9f9; // for striping
|
82
|
+
$tableBackgroundHover: #f5f5f5; // for hover
|
83
|
+
$tableBorder: #ddd; // table and cell border
|
84
|
+
|
85
|
+
// Buttons
|
86
|
+
// -------------------------
|
87
|
+
$btnBackground: $white;
|
88
|
+
$btnBackgroundHighlight: darken($white, 10%);
|
89
|
+
$btnBorder: #ccc;
|
90
|
+
|
91
|
+
$btnPrimaryBackground: $linkColor;
|
92
|
+
$btnPrimaryBackgroundHighlight: adjust-hue($btnPrimaryBackground, 20%);
|
93
|
+
|
94
|
+
$btnInfoBackground: #5bc0de;
|
95
|
+
$btnInfoBackgroundHighlight: #2f96b4;
|
96
|
+
|
97
|
+
$btnSuccessBackground: #62c462;
|
98
|
+
$btnSuccessBackgroundHighlight: #51a351;
|
99
|
+
|
100
|
+
$btnWarningBackground: lighten($orange, 15%);
|
101
|
+
$btnWarningBackgroundHighlight: $orange;
|
102
|
+
|
103
|
+
$btnDangerBackground: #ee5f5b;
|
104
|
+
$btnDangerBackgroundHighlight: #bd362f;
|
105
|
+
|
106
|
+
$btnInverseBackground: #444;
|
107
|
+
$btnInverseBackgroundHighlight: $grayDarker;
|
108
|
+
|
109
|
+
|
110
|
+
// Forms
|
111
|
+
// -------------------------
|
112
|
+
$inputBackground: $white;
|
113
|
+
$inputBorder: #ccc;
|
114
|
+
$inputBorderRadius: $baseBorderRadius;
|
115
|
+
$inputDisabledBackground: $grayLighter;
|
116
|
+
$formActionsBackground: #f5f5f5;
|
117
|
+
$inputHeight: $baseLineHeight + 10px; // base line-height + 8px vertical padding + 2px top/bottom border
|
118
|
+
|
119
|
+
|
120
|
+
// Dropdowns
|
121
|
+
// -------------------------
|
122
|
+
$dropdownBackground: $white;
|
123
|
+
$dropdownBorder: rgba(0,0,0,.2);
|
124
|
+
$dropdownDividerTop: #e5e5e5;
|
125
|
+
$dropdownDividerBottom: $white;
|
126
|
+
|
127
|
+
$dropdownLinkColor: $grayDark;
|
128
|
+
$dropdownLinkColorHover: $white;
|
129
|
+
$dropdownLinkColorActive: $white;
|
130
|
+
|
131
|
+
$dropdownLinkBackgroundActive: $linkColor;
|
132
|
+
$dropdownLinkBackgroundHover: $dropdownLinkBackgroundActive;
|
133
|
+
|
134
|
+
|
135
|
+
|
136
|
+
// COMPONENT VARIABLES
|
137
|
+
// --------------------------------------------------
|
138
|
+
|
139
|
+
|
140
|
+
// Z-index master list
|
141
|
+
// -------------------------
|
142
|
+
// Used for a bird's eye view of components dependent on the z-axis
|
143
|
+
// Try to avoid customizing these :)
|
144
|
+
$zindexDropdown: 1000;
|
145
|
+
$zindexPopover: 1010;
|
146
|
+
$zindexTooltip: 1030;
|
147
|
+
$zindexFixedNavbar: 1030;
|
148
|
+
$zindexModalBackdrop: 1040;
|
149
|
+
$zindexModal: 1050;
|
150
|
+
|
151
|
+
|
152
|
+
// Sprite icons path
|
153
|
+
// -------------------------
|
154
|
+
$iconSpritePath: image-path("glyphicons-halflings.png");
|
155
|
+
$iconWhiteSpritePath: image-path("glyphicons-halflings-white.png");
|
156
|
+
|
157
|
+
|
158
|
+
// Input placeholder text color
|
159
|
+
// -------------------------
|
160
|
+
$placeholderText: $grayLight;
|
161
|
+
|
162
|
+
|
163
|
+
// Hr border color
|
164
|
+
// -------------------------
|
165
|
+
$hrBorder: $grayLighter;
|
166
|
+
|
167
|
+
|
168
|
+
// Horizontal forms & lists
|
169
|
+
// -------------------------
|
170
|
+
$horizontalComponentOffset: 180px;
|
171
|
+
|
172
|
+
|
173
|
+
// Wells
|
174
|
+
// -------------------------
|
175
|
+
$wellBackground: #f5f5f5;
|
176
|
+
|
177
|
+
|
178
|
+
// Navbar
|
179
|
+
// -------------------------
|
180
|
+
$navbarCollapseWidth: 979px;
|
181
|
+
$navbarCollapseDesktopWidth: $navbarCollapseWidth + 1;
|
182
|
+
|
183
|
+
$navbarHeight: 40px;
|
184
|
+
$navbarBackgroundHighlight: #ffffff;
|
185
|
+
$navbarBackground: darken($navbarBackgroundHighlight, 5%);
|
186
|
+
$navbarBorder: darken($navbarBackground, 12%);
|
187
|
+
|
188
|
+
$navbarText: #777;
|
189
|
+
$navbarLinkColor: #777;
|
190
|
+
$navbarLinkColorHover: $grayDark;
|
191
|
+
$navbarLinkColorActive: $gray;
|
192
|
+
$navbarLinkBackgroundHover: transparent;
|
193
|
+
$navbarLinkBackgroundActive: darken($navbarBackground, 5%);
|
194
|
+
|
195
|
+
$navbarBrandColor: $navbarLinkColor;
|
196
|
+
|
197
|
+
// Inverted navbar
|
198
|
+
$navbarInverseBackground: #111111;
|
199
|
+
$navbarInverseBackgroundHighlight: #222222;
|
200
|
+
$navbarInverseBorder: #252525;
|
201
|
+
|
202
|
+
$navbarInverseText: $grayLight;
|
203
|
+
$navbarInverseLinkColor: $grayLight;
|
204
|
+
$navbarInverseLinkColorHover: $white;
|
205
|
+
$navbarInverseLinkColorActive: $navbarInverseLinkColorHover;
|
206
|
+
$navbarInverseLinkBackgroundHover: transparent;
|
207
|
+
$navbarInverseLinkBackgroundActive: $navbarInverseBackground;
|
208
|
+
|
209
|
+
$navbarInverseSearchBackground: lighten($navbarInverseBackground, 25%);
|
210
|
+
$navbarInverseSearchBackgroundFocus: $white;
|
211
|
+
$navbarInverseSearchBorder: $navbarInverseBackground;
|
212
|
+
$navbarInverseSearchPlaceholderColor: #ccc;
|
213
|
+
|
214
|
+
$navbarInverseBrandColor: $navbarInverseLinkColor;
|
215
|
+
|
216
|
+
|
217
|
+
// Pagination
|
218
|
+
// -------------------------
|
219
|
+
$paginationBackground: #fff;
|
220
|
+
$paginationBorder: #ddd;
|
221
|
+
$paginationActiveBackground: #f5f5f5;
|
222
|
+
|
223
|
+
|
224
|
+
// Hero unit
|
225
|
+
// -------------------------
|
226
|
+
$heroUnitBackground: $grayLighter;
|
227
|
+
$heroUnitHeadingColor: inherit;
|
228
|
+
$heroUnitLeadColor: inherit;
|
229
|
+
|
230
|
+
|
231
|
+
// Form states and alerts
|
232
|
+
// -------------------------
|
233
|
+
$warningText: #c09853;
|
234
|
+
$warningBackground: #fcf8e3;
|
235
|
+
$warningBorder: darken(adjust-hue($warningBackground, -10), 3%);
|
236
|
+
|
237
|
+
$errorText: #b94a48;
|
238
|
+
$errorBackground: #f2dede;
|
239
|
+
$errorBorder: darken(adjust-hue($errorBackground, -10), 3%);
|
240
|
+
|
241
|
+
$successText: #468847;
|
242
|
+
$successBackground: #dff0d8;
|
243
|
+
$successBorder: darken(adjust-hue($successBackground, -10), 5%);
|
244
|
+
|
245
|
+
$infoText: #3a87ad;
|
246
|
+
$infoBackground: #d9edf7;
|
247
|
+
$infoBorder: darken(adjust-hue($infoBackground, -10), 7%);
|
248
|
+
|
249
|
+
|
250
|
+
// Tooltips and popovers
|
251
|
+
// -------------------------
|
252
|
+
$tooltipColor: #fff;
|
253
|
+
$tooltipBackground: #000;
|
254
|
+
$tooltipArrowWidth: 5px;
|
255
|
+
$tooltipArrowColor: $tooltipBackground;
|
256
|
+
|
257
|
+
$popoverBackground: #fff;
|
258
|
+
$popoverArrowWidth: 10px;
|
259
|
+
$popoverArrowColor: #fff;
|
260
|
+
$popoverTitleBackground: darken($popoverBackground, 3%);
|
261
|
+
|
262
|
+
// Special enhancement for popovers
|
263
|
+
$popoverArrowOuterWidth: $popoverArrowWidth + 1;
|
264
|
+
$popoverArrowOuterColor: rgba(0,0,0,.25);
|
265
|
+
|
266
|
+
|
267
|
+
|
268
|
+
// GRID
|
269
|
+
// --------------------------------------------------
|
270
|
+
|
271
|
+
|
272
|
+
// Default 940px grid
|
273
|
+
// -------------------------
|
274
|
+
$gridColumns: 12;
|
275
|
+
$gridColumnWidth: 60px;
|
276
|
+
$gridGutterWidth: 20px;
|
277
|
+
$gridRowWidth: ($gridColumns * $gridColumnWidth) + ($gridGutterWidth * ($gridColumns - 1));
|
278
|
+
|
279
|
+
// 1200px min
|
280
|
+
$gridColumnWidth1200: 70px;
|
281
|
+
$gridGutterWidth1200: 30px;
|
282
|
+
$gridRowWidth1200: ($gridColumns * $gridColumnWidth1200) + ($gridGutterWidth1200 * ($gridColumns - 1));
|
283
|
+
|
284
|
+
// 768px-979px
|
285
|
+
$gridColumnWidth768: 42px;
|
286
|
+
$gridGutterWidth768: 20px;
|
287
|
+
$gridRowWidth768: ($gridColumns * $gridColumnWidth768) + ($gridGutterWidth768 * ($gridColumns - 1));
|
288
|
+
|
289
|
+
|
290
|
+
// Fluid grid
|
291
|
+
// -------------------------
|
292
|
+
$fluidGridColumnWidth: percentage($gridColumnWidth/$gridRowWidth);
|
293
|
+
$fluidGridGutterWidth: percentage($gridGutterWidth/$gridRowWidth);
|
294
|
+
|
295
|
+
// 1200px min
|
296
|
+
$fluidGridColumnWidth1200: percentage($gridColumnWidth1200/$gridRowWidth1200);
|
297
|
+
$fluidGridGutterWidth1200: percentage($gridGutterWidth1200/$gridRowWidth1200);
|
298
|
+
|
299
|
+
// 768px-979px
|
300
|
+
$fluidGridColumnWidth768: percentage($gridColumnWidth768/$gridRowWidth768);
|
301
|
+
$fluidGridGutterWidth768: percentage($gridGutterWidth768/$gridRowWidth768);
|
@@ -2,6 +2,7 @@ description "Bootstrap for Sass"
|
|
2
2
|
|
3
3
|
# Stylesheet importing bootstrap
|
4
4
|
stylesheet 'styles.scss'
|
5
|
+
stylesheet '_variables.scss'
|
5
6
|
|
6
7
|
#
|
7
8
|
# Other Bootstrap assets
|
@@ -13,6 +14,6 @@ basedir = '../../vendor/assets'
|
|
13
14
|
end
|
14
15
|
|
15
16
|
# Javascripts
|
16
|
-
%w(alert button carousel collapse dropdown modal popover scrollspy tab tooltip transition typeahead).each do |file|
|
17
|
+
%w(affix alert button carousel collapse dropdown modal popover scrollspy tab tooltip transition typeahead).each do |file|
|
17
18
|
javascript "#{basedir}/javascripts/bootstrap-#{file}.js", :to => "bootstrap-#{file}.js"
|
18
|
-
end
|
19
|
+
end
|
@@ -1,5 +1,8 @@
|
|
1
|
+
// Import all the variables into the main css file.
|
2
|
+
@import "variables";
|
3
|
+
|
1
4
|
// I gather this file is a starting point for the project.
|
2
5
|
@import "bootstrap";
|
3
6
|
|
4
7
|
// Include responsive Bootstrap styles
|
5
|
-
// @import "bootstrap-responsive";
|
8
|
+
// @import "bootstrap-responsive";
|
@@ -62,9 +62,9 @@ $headingsColor: inherit !default; // empty to use BS default, $textColor
|
|
62
62
|
// -------------------------
|
63
63
|
// Based on 14px font-size and 20px line-height
|
64
64
|
|
65
|
-
$fontSizeLarge: $baseFontSize * 1.25; // ~18px
|
66
|
-
$fontSizeSmall: $baseFontSize * 0.85; // ~12px
|
67
|
-
$fontSizeMini: $baseFontSize * 0.75; // ~11px
|
65
|
+
$fontSizeLarge: $baseFontSize * 1.25 !default; // ~18px
|
66
|
+
$fontSizeSmall: $baseFontSize * 0.85 !default; // ~12px
|
67
|
+
$fontSizeMini: $baseFontSize * 0.75 !default; // ~11px
|
68
68
|
|
69
69
|
$paddingLarge: 11px 19px !default; // 44px
|
70
70
|
$paddingSmall: 2px 10px !default; // 26px
|
metadata
CHANGED
@@ -1,49 +1,57 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bootstrap-sass
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.3.1.
|
5
|
-
prerelease:
|
4
|
+
version: 2.3.1.2
|
6
5
|
platform: ruby
|
7
6
|
authors:
|
8
7
|
- Thomas McDonald
|
9
8
|
autorequire:
|
10
9
|
bindir: bin
|
11
10
|
cert_chain: []
|
12
|
-
date: 2013-
|
11
|
+
date: 2013-05-24 00:00:00.000000000 Z
|
13
12
|
dependencies:
|
14
13
|
- !ruby/object:Gem::Dependency
|
15
14
|
name: compass
|
16
|
-
requirement:
|
17
|
-
none: false
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
18
16
|
requirements:
|
19
|
-
- -
|
17
|
+
- - '>='
|
20
18
|
- !ruby/object:Gem::Version
|
21
19
|
version: '0'
|
22
20
|
type: :development
|
23
21
|
prerelease: false
|
24
|
-
version_requirements:
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - '>='
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
25
27
|
- !ruby/object:Gem::Dependency
|
26
28
|
name: sass-rails
|
27
|
-
requirement:
|
28
|
-
none: false
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
29
30
|
requirements:
|
30
31
|
- - ~>
|
31
32
|
- !ruby/object:Gem::Version
|
32
33
|
version: '3.2'
|
33
34
|
type: :development
|
34
35
|
prerelease: false
|
35
|
-
version_requirements:
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ~>
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '3.2'
|
36
41
|
- !ruby/object:Gem::Dependency
|
37
42
|
name: sass
|
38
|
-
requirement:
|
39
|
-
none: false
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
40
44
|
requirements:
|
41
45
|
- - ~>
|
42
46
|
- !ruby/object:Gem::Version
|
43
47
|
version: '3.2'
|
44
48
|
type: :runtime
|
45
49
|
prerelease: false
|
46
|
-
version_requirements:
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ~>
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '3.2'
|
47
55
|
description:
|
48
56
|
email: tom@conceptcoding.co.uk
|
49
57
|
executables: []
|
@@ -111,8 +119,9 @@ files:
|
|
111
119
|
- vendor/assets/images/glyphicons-halflings.png
|
112
120
|
- lib/bootstrap-sass/compass_functions.rb
|
113
121
|
- lib/bootstrap-sass/engine.rb
|
114
|
-
- lib/bootstrap-sass/
|
122
|
+
- lib/bootstrap-sass/sass_functions.rb
|
115
123
|
- lib/bootstrap-sass.rb
|
124
|
+
- templates/project/_variables.scss
|
116
125
|
- templates/project/manifest.rb
|
117
126
|
- templates/project/styles.scss
|
118
127
|
- README.md
|
@@ -120,26 +129,25 @@ files:
|
|
120
129
|
homepage: http://github.com/thomas-mcdonald/bootstrap-sass
|
121
130
|
licenses:
|
122
131
|
- Apache 2.0
|
132
|
+
metadata: {}
|
123
133
|
post_install_message:
|
124
134
|
rdoc_options: []
|
125
135
|
require_paths:
|
126
136
|
- lib
|
127
137
|
required_ruby_version: !ruby/object:Gem::Requirement
|
128
|
-
none: false
|
129
138
|
requirements:
|
130
|
-
- -
|
139
|
+
- - '>='
|
131
140
|
- !ruby/object:Gem::Version
|
132
141
|
version: '0'
|
133
142
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
134
|
-
none: false
|
135
143
|
requirements:
|
136
|
-
- -
|
144
|
+
- - '>='
|
137
145
|
- !ruby/object:Gem::Version
|
138
146
|
version: '0'
|
139
147
|
requirements: []
|
140
148
|
rubyforge_project:
|
141
|
-
rubygems_version:
|
149
|
+
rubygems_version: 2.0.0
|
142
150
|
signing_key:
|
143
|
-
specification_version:
|
151
|
+
specification_version: 4
|
144
152
|
summary: Twitter's Bootstrap, converted to Sass and ready to drop into Rails or Compass
|
145
153
|
test_files: []
|