bootstrap-sass-rails 3.0.0.3 → 3.1.0.0
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.
- data/LICENSE +1 -1
- data/README.md +24 -113
- data/app/assets/javascripts/twitter/bootstrap/affix.js +1 -126
- data/app/assets/javascripts/twitter/bootstrap/alert.js +1 -98
- data/app/assets/javascripts/twitter/bootstrap/button.js +1 -109
- data/app/assets/javascripts/twitter/bootstrap/carousel.js +1 -217
- data/app/assets/javascripts/twitter/bootstrap/collapse.js +1 -179
- data/app/assets/javascripts/twitter/bootstrap/dropdown.js +1 -154
- data/app/assets/javascripts/twitter/bootstrap/modal.js +1 -246
- data/app/assets/javascripts/twitter/bootstrap/popover.js +1 -117
- data/app/assets/javascripts/twitter/bootstrap/scrollspy.js +1 -158
- data/app/assets/javascripts/twitter/bootstrap/tab.js +1 -135
- data/app/assets/javascripts/twitter/bootstrap/tooltip.js +1 -386
- data/app/assets/javascripts/twitter/bootstrap/transition.js +1 -56
- data/app/assets/javascripts/twitter/bootstrap.js +1 -12
- data/app/assets/stylesheets/twitter/bootstrap/_alerts.scss +1 -67
- data/app/assets/stylesheets/twitter/bootstrap/_badges.scss +1 -51
- data/app/assets/stylesheets/twitter/bootstrap/_breadcrumbs.scss +1 -23
- data/app/assets/stylesheets/twitter/bootstrap/_button-groups.scss +1 -248
- data/app/assets/stylesheets/twitter/bootstrap/_buttons.scss +1 -160
- data/app/assets/stylesheets/twitter/bootstrap/_carousel.scss +1 -209
- data/app/assets/stylesheets/twitter/bootstrap/_close.scss +1 -33
- data/app/assets/stylesheets/twitter/bootstrap/_code.scss +1 -56
- data/app/assets/stylesheets/twitter/bootstrap/_component-animations.scss +1 -29
- data/app/assets/stylesheets/twitter/bootstrap/_dropdowns.scss +1 -193
- data/app/assets/stylesheets/twitter/bootstrap/_forms.scss +1 -350
- data/app/assets/stylesheets/twitter/bootstrap/_glyphicons.scss +1 -232
- data/app/assets/stylesheets/twitter/bootstrap/_grid.scss +1 -346
- data/app/assets/stylesheets/twitter/bootstrap/_input-groups.scss +1 -127
- data/app/assets/stylesheets/twitter/bootstrap/_jumbotron.scss +1 -40
- data/app/assets/stylesheets/twitter/bootstrap/_labels.scss +1 -58
- data/app/assets/stylesheets/twitter/bootstrap/_list-group.scss +1 -89
- data/app/assets/stylesheets/twitter/bootstrap/_media.scss +1 -56
- data/app/assets/stylesheets/twitter/bootstrap/_mixins.scss +1 -736
- data/app/assets/stylesheets/twitter/bootstrap/_modals.scss +1 -145
- data/app/assets/stylesheets/twitter/bootstrap/_navbar.scss +1 -625
- data/app/assets/stylesheets/twitter/bootstrap/_navs.scss +1 -229
- data/app/assets/stylesheets/twitter/bootstrap/_normalize.scss +1 -396
- data/app/assets/stylesheets/twitter/bootstrap/_pager.scss +1 -55
- data/app/assets/stylesheets/twitter/bootstrap/_pagination.scss +1 -83
- data/app/assets/stylesheets/twitter/bootstrap/_panels.scss +1 -148
- data/app/assets/stylesheets/twitter/bootstrap/_popovers.scss +1 -133
- data/app/assets/stylesheets/twitter/bootstrap/_print.scss +1 -100
- data/app/assets/stylesheets/twitter/bootstrap/_progress-bars.scss +1 -95
- data/app/assets/stylesheets/twitter/bootstrap/_responsive-utilities.scss +1 -209
- data/app/assets/stylesheets/twitter/bootstrap/_scaffolding.scss +1 -130
- data/app/assets/stylesheets/twitter/bootstrap/_tables.scss +1 -236
- data/app/assets/stylesheets/twitter/bootstrap/_theme.scss +1 -232
- data/app/assets/stylesheets/twitter/bootstrap/_thumbnails.scss +1 -31
- data/app/assets/stylesheets/twitter/bootstrap/_tooltip.scss +1 -95
- data/app/assets/stylesheets/twitter/bootstrap/_type.scss +1 -238
- data/app/assets/stylesheets/twitter/bootstrap/_utilities.scss +1 -42
- data/app/assets/stylesheets/twitter/bootstrap/_variables.scss +1 -620
- data/app/assets/stylesheets/twitter/bootstrap/_wells.scss +1 -29
- data/app/assets/stylesheets/twitter/bootstrap.css.scss +1 -59
- data/lib/bootstrap/sass/rails/engine.rb +4 -1
- data/lib/bootstrap/sass/rails/version.rb +2 -1
- data/lib/bootstrap-sass-rails.rb +1 -1
- data/lib/generators/bootstrap/customize_generator.rb +37 -0
- data/lib/generators/bootstrap/templates/USAGE +23 -0
- data/lib/generators/bootstrap/templates/bootstrap-custom.css.scss +18 -0
- data/lib/generators/bootstrap/templates/bootstrap-custom.js +3 -0
- data/test/cases/less_to_sass_spec.rb +1 -1
- data/test/cases/usage_css_spec.rb +0 -3
- metadata +60 -18
- checksums.yaml +0 -15
- data/app/assets/fonts/twitter/bootstrap/glyphicons-halflings-regular.eot +0 -0
- data/app/assets/fonts/twitter/bootstrap/glyphicons-halflings-regular.svg +0 -228
- data/app/assets/fonts/twitter/bootstrap/glyphicons-halflings-regular.ttf +0 -0
- data/app/assets/fonts/twitter/bootstrap/glyphicons-halflings-regular.woff +0 -0
- data/lib/bootstrap/sass/extensions/functions.rb +0 -15
- data/lib/bootstrap/sass/extensions.rb +0 -5
@@ -1,59 +1 @@
|
|
1
|
-
|
2
|
-
* Bootstrap v3.0.0
|
3
|
-
*
|
4
|
-
* Copyright 2013 Twitter, Inc
|
5
|
-
* Licensed under the Apache License v2.0
|
6
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
7
|
-
*
|
8
|
-
* Designed and built with all the love in the world by @mdo and @fat.
|
9
|
-
*/
|
10
|
-
|
11
|
-
// Core variables and mixins
|
12
|
-
@import "twitter/bootstrap/variables";
|
13
|
-
@import "twitter/bootstrap/mixins";
|
14
|
-
|
15
|
-
// Reset
|
16
|
-
@import "twitter/bootstrap/normalize";
|
17
|
-
@import "twitter/bootstrap/print";
|
18
|
-
|
19
|
-
// Core CSS
|
20
|
-
@import "twitter/bootstrap/scaffolding";
|
21
|
-
@import "twitter/bootstrap/type";
|
22
|
-
@import "twitter/bootstrap/code";
|
23
|
-
@import "twitter/bootstrap/grid";
|
24
|
-
@import "twitter/bootstrap/tables";
|
25
|
-
@import "twitter/bootstrap/forms";
|
26
|
-
@import "twitter/bootstrap/buttons";
|
27
|
-
|
28
|
-
// Components
|
29
|
-
@import "twitter/bootstrap/component-animations";
|
30
|
-
@import "twitter/bootstrap/glyphicons";
|
31
|
-
@import "twitter/bootstrap/dropdowns";
|
32
|
-
@import "twitter/bootstrap/button-groups";
|
33
|
-
@import "twitter/bootstrap/input-groups";
|
34
|
-
@import "twitter/bootstrap/navs";
|
35
|
-
@import "twitter/bootstrap/navbar";
|
36
|
-
@import "twitter/bootstrap/breadcrumbs";
|
37
|
-
@import "twitter/bootstrap/pagination";
|
38
|
-
@import "twitter/bootstrap/pager";
|
39
|
-
@import "twitter/bootstrap/labels";
|
40
|
-
@import "twitter/bootstrap/badges";
|
41
|
-
@import "twitter/bootstrap/jumbotron";
|
42
|
-
@import "twitter/bootstrap/thumbnails";
|
43
|
-
@import "twitter/bootstrap/alerts";
|
44
|
-
@import "twitter/bootstrap/progress-bars";
|
45
|
-
@import "twitter/bootstrap/media";
|
46
|
-
@import "twitter/bootstrap/list-group";
|
47
|
-
@import "twitter/bootstrap/panels";
|
48
|
-
@import "twitter/bootstrap/wells";
|
49
|
-
@import "twitter/bootstrap/close";
|
50
|
-
|
51
|
-
// Components w/ JavaScript
|
52
|
-
@import "twitter/bootstrap/modals";
|
53
|
-
@import "twitter/bootstrap/tooltip";
|
54
|
-
@import "twitter/bootstrap/popovers";
|
55
|
-
@import "twitter/bootstrap/carousel";
|
56
|
-
|
57
|
-
// Utility classes
|
58
|
-
@import "twitter/bootstrap/utilities";
|
59
|
-
@import "twitter/bootstrap/responsive-utilities";
|
1
|
+
@import "bootstrap/bootstrap";
|
@@ -2,7 +2,10 @@ module Bootstrap
|
|
2
2
|
module Sass
|
3
3
|
module Rails
|
4
4
|
class Engine < ::Rails::Engine
|
5
|
-
|
5
|
+
initializer :after_append_asset_paths, :group => :all, :after => :append_assets_path do |app|
|
6
|
+
::Bootstrap.load!
|
7
|
+
app.config.assets.paths.unshift File.join(::Bootstrap.stylesheets_path, 'bootstrap')
|
8
|
+
end
|
6
9
|
end
|
7
10
|
end
|
8
11
|
end
|
data/lib/bootstrap-sass-rails.rb
CHANGED
@@ -0,0 +1,37 @@
|
|
1
|
+
require 'rails/generators'
|
2
|
+
|
3
|
+
module Bootstrap
|
4
|
+
class CustomizeGenerator < Rails::Generators::Base
|
5
|
+
source_root File.expand_path("../templates", __FILE__)
|
6
|
+
|
7
|
+
class_option :customize_variables, type: :boolean, default: true, desc: 'Customize variables to define colors, sizes and more inside your custom stylesheets'
|
8
|
+
class_option :css_components, type: :boolean, default: false, desc: 'Choose which SCSS files to compile into your custom build of Bootstrap'
|
9
|
+
class_option :js_components, type: :boolean, default: false, desc: 'Choose which JS files to compile into your custom build of Bootstrap'
|
10
|
+
|
11
|
+
# Copy all needed stylesheets in the asset directory of the application
|
12
|
+
def customize_default_variables
|
13
|
+
template "bootstrap-custom.css.scss", "app/assets/stylesheets/bootstrap-custom.css.scss"
|
14
|
+
end
|
15
|
+
|
16
|
+
def customize_css_components
|
17
|
+
if options.css_components?
|
18
|
+
append_file "app/assets/stylesheets/bootstrap-custom.css.scss" do
|
19
|
+
File.read File.expand_path("../../../../app/assets/stylesheets/twitter/bootstrap.css.scss", __FILE__)
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
23
|
+
|
24
|
+
def customize_js_components
|
25
|
+
if options.js_components?
|
26
|
+
template "bootstrap-custom.js", "app/assets/javascripts/bootstrap-custom.js"
|
27
|
+
append_file "app/assets/javascripts/bootstrap-custom.js" do
|
28
|
+
File.read File.expand_path("../../../../app/assets/javascripts/twitter/bootstrap.js", __FILE__)
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
32
|
+
|
33
|
+
def show_usage
|
34
|
+
readme "USAGE" if behavior == :invoke
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
===============================================================================
|
2
|
+
|
3
|
+
Some setup you must do manually:
|
4
|
+
|
5
|
+
1. Include the bootstrap-custom stylesheet in your application.css.scss before
|
6
|
+
you import the twitter/bootstrap file:
|
7
|
+
|
8
|
+
@import "bootstrap-custom";
|
9
|
+
|
10
|
+
2. If you chose to customize the CSS components remove the following line
|
11
|
+
from your application.css.scss, the bootstrap components will be imported
|
12
|
+
from the bootstrap-custom.css.scss file:
|
13
|
+
|
14
|
+
@import "bootstrap";
|
15
|
+
|
16
|
+
3. If you chose to customize the JS components add the necessary require
|
17
|
+
directive to your application.js file:
|
18
|
+
|
19
|
+
//= require bootstrap-custom
|
20
|
+
|
21
|
+
Thank you for using bootstrap-sass-rails!
|
22
|
+
|
23
|
+
===============================================================================
|
@@ -0,0 +1,18 @@
|
|
1
|
+
//
|
2
|
+
// Bootstrap Customization
|
3
|
+
//
|
4
|
+
// For all available variables hava a look at the
|
5
|
+
// Bootstrap Customizer provided by the authors:
|
6
|
+
//
|
7
|
+
// http://getbootstrap.com/customize/#less-variables
|
8
|
+
//
|
9
|
+
// Or you can look into the SCSS variables to see
|
10
|
+
// the Sass equivalents:
|
11
|
+
//
|
12
|
+
// https://github.com/yabawock/bootstrap-sass-rails/blob/master/app/assets/stylesheets/twitter/bootstrap/_variables.scss
|
13
|
+
|
14
|
+
// Customization
|
15
|
+
// -------------------------
|
16
|
+
$body-bg: #fff;
|
17
|
+
$text-color: lighten(#000, 20%);
|
18
|
+
|
@@ -7,7 +7,7 @@ class LessToSassSpec < Bootstrap::Sass::Rails::Spec
|
|
7
7
|
let(:app_css) { dummy_asset('application.css').gsub(/\n+\s+/, ' ') }
|
8
8
|
|
9
9
|
it 'should include the clearfix helper classes' do
|
10
|
-
app_css.must_include '.clearfix:before, .clearfix:after { content: " ";
|
10
|
+
app_css.must_include '.clearfix:before, .clearfix:after { content: " "; display: table; }'
|
11
11
|
app_css.must_include '.clearfix:after { clear: both; }'
|
12
12
|
end
|
13
13
|
|
@@ -7,8 +7,6 @@ class UsageCssSpec < Bootstrap::Sass::Rails::Spec
|
|
7
7
|
let(:app_css) { dummy_asset('application.css').gsub(/\n+\s+/, ' ') }
|
8
8
|
|
9
9
|
it 'will render main bootstrap.less file and all included modules' do
|
10
|
-
app_css.must_include 'Bootstrap v'
|
11
|
-
|
12
10
|
app_css.must_include '.alert {'
|
13
11
|
app_css.must_include '.badge {'
|
14
12
|
app_css.must_include '.breadcrumb {'
|
@@ -75,7 +73,6 @@ class UsageCssSpec < Bootstrap::Sass::Rails::Spec
|
|
75
73
|
let(:sprockets_css) { dummy_asset('sprockets.css').gsub(/\n+\s+/, ' ') }
|
76
74
|
|
77
75
|
it 'will render main bootstrap.css file and all included modules' do
|
78
|
-
sprockets_css.must_include 'Bootstrap v'
|
79
76
|
sprockets_css.must_include '.alert {'
|
80
77
|
sprockets_css.must_include '.badge {'
|
81
78
|
sprockets_css.must_include '.breadcrumb {'
|
metadata
CHANGED
@@ -1,46 +1,68 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bootstrap-sass-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.0
|
4
|
+
version: 3.1.0.0
|
5
|
+
prerelease:
|
5
6
|
platform: ruby
|
6
7
|
authors:
|
7
8
|
- Morton Jonuschat
|
8
9
|
autorequire:
|
9
10
|
bindir: bin
|
10
11
|
cert_chain: []
|
11
|
-
date:
|
12
|
+
date: 2014-01-31 00:00:00.000000000 Z
|
12
13
|
dependencies:
|
13
14
|
- !ruby/object:Gem::Dependency
|
14
15
|
name: railties
|
15
16
|
requirement: !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
16
18
|
requirements:
|
17
19
|
- - ! '>='
|
18
20
|
- !ruby/object:Gem::Version
|
19
|
-
version: 3.
|
21
|
+
version: 3.2.0
|
20
22
|
type: :runtime
|
21
23
|
prerelease: false
|
22
24
|
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
23
26
|
requirements:
|
24
27
|
- - ! '>='
|
25
28
|
- !ruby/object:Gem::Version
|
26
|
-
version: 3.
|
29
|
+
version: 3.2.0
|
27
30
|
- !ruby/object:Gem::Dependency
|
28
31
|
name: sass-rails
|
29
32
|
requirement: !ruby/object:Gem::Requirement
|
33
|
+
none: false
|
30
34
|
requirements:
|
31
35
|
- - ! '>='
|
32
36
|
- !ruby/object:Gem::Version
|
33
|
-
version: 3.
|
37
|
+
version: 3.2.0
|
34
38
|
type: :runtime
|
35
39
|
prerelease: false
|
36
40
|
version_requirements: !ruby/object:Gem::Requirement
|
41
|
+
none: false
|
37
42
|
requirements:
|
38
43
|
- - ! '>='
|
39
44
|
- !ruby/object:Gem::Version
|
40
|
-
version: 3.
|
45
|
+
version: 3.2.0
|
46
|
+
- !ruby/object:Gem::Dependency
|
47
|
+
name: bootstrap-sass
|
48
|
+
requirement: !ruby/object:Gem::Requirement
|
49
|
+
none: false
|
50
|
+
requirements:
|
51
|
+
- - ~>
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
version: 3.1.0.0
|
54
|
+
type: :runtime
|
55
|
+
prerelease: false
|
56
|
+
version_requirements: !ruby/object:Gem::Requirement
|
57
|
+
none: false
|
58
|
+
requirements:
|
59
|
+
- - ~>
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: 3.1.0.0
|
41
62
|
- !ruby/object:Gem::Dependency
|
42
63
|
name: rake
|
43
64
|
requirement: !ruby/object:Gem::Requirement
|
65
|
+
none: false
|
44
66
|
requirements:
|
45
67
|
- - ! '>='
|
46
68
|
- !ruby/object:Gem::Version
|
@@ -48,6 +70,7 @@ dependencies:
|
|
48
70
|
type: :development
|
49
71
|
prerelease: false
|
50
72
|
version_requirements: !ruby/object:Gem::Requirement
|
73
|
+
none: false
|
51
74
|
requirements:
|
52
75
|
- - ! '>='
|
53
76
|
- !ruby/object:Gem::Version
|
@@ -55,20 +78,23 @@ dependencies:
|
|
55
78
|
- !ruby/object:Gem::Dependency
|
56
79
|
name: rails
|
57
80
|
requirement: !ruby/object:Gem::Requirement
|
81
|
+
none: false
|
58
82
|
requirements:
|
59
83
|
- - ! '>='
|
60
84
|
- !ruby/object:Gem::Version
|
61
|
-
version: 3.
|
85
|
+
version: 3.2.0
|
62
86
|
type: :development
|
63
87
|
prerelease: false
|
64
88
|
version_requirements: !ruby/object:Gem::Requirement
|
89
|
+
none: false
|
65
90
|
requirements:
|
66
91
|
- - ! '>='
|
67
92
|
- !ruby/object:Gem::Version
|
68
|
-
version: 3.
|
93
|
+
version: 3.2.0
|
69
94
|
- !ruby/object:Gem::Dependency
|
70
95
|
name: appraisal
|
71
96
|
requirement: !ruby/object:Gem::Requirement
|
97
|
+
none: false
|
72
98
|
requirements:
|
73
99
|
- - ~>
|
74
100
|
- !ruby/object:Gem::Version
|
@@ -76,6 +102,7 @@ dependencies:
|
|
76
102
|
type: :development
|
77
103
|
prerelease: false
|
78
104
|
version_requirements: !ruby/object:Gem::Requirement
|
105
|
+
none: false
|
79
106
|
requirements:
|
80
107
|
- - ~>
|
81
108
|
- !ruby/object:Gem::Version
|
@@ -89,10 +116,6 @@ executables: []
|
|
89
116
|
extensions: []
|
90
117
|
extra_rdoc_files: []
|
91
118
|
files:
|
92
|
-
- app/assets/fonts/twitter/bootstrap/glyphicons-halflings-regular.eot
|
93
|
-
- app/assets/fonts/twitter/bootstrap/glyphicons-halflings-regular.svg
|
94
|
-
- app/assets/fonts/twitter/bootstrap/glyphicons-halflings-regular.ttf
|
95
|
-
- app/assets/fonts/twitter/bootstrap/glyphicons-halflings-regular.woff
|
96
119
|
- app/assets/javascripts/twitter/bootstrap/affix.js
|
97
120
|
- app/assets/javascripts/twitter/bootstrap/alert.js
|
98
121
|
- app/assets/javascripts/twitter/bootstrap/button.js
|
@@ -146,12 +169,14 @@ files:
|
|
146
169
|
- app/assets/stylesheets/twitter/bootstrap/_variables.scss
|
147
170
|
- app/assets/stylesheets/twitter/bootstrap/_wells.scss
|
148
171
|
- app/assets/stylesheets/twitter/bootstrap.css.scss
|
149
|
-
- lib/bootstrap/sass/extensions/functions.rb
|
150
|
-
- lib/bootstrap/sass/extensions.rb
|
151
172
|
- lib/bootstrap/sass/rails/engine.rb
|
152
173
|
- lib/bootstrap/sass/rails/version.rb
|
153
174
|
- lib/bootstrap/sass/rails.rb
|
154
175
|
- lib/bootstrap-sass-rails.rb
|
176
|
+
- lib/generators/bootstrap/customize_generator.rb
|
177
|
+
- lib/generators/bootstrap/templates/bootstrap-custom.css.scss
|
178
|
+
- lib/generators/bootstrap/templates/bootstrap-custom.js
|
179
|
+
- lib/generators/bootstrap/templates/USAGE
|
155
180
|
- LICENSE
|
156
181
|
- Rakefile
|
157
182
|
- README.md
|
@@ -193,26 +218,43 @@ files:
|
|
193
218
|
- test/support/helpers.rb
|
194
219
|
homepage: https://github.com/yabawock/bootstrap-sass-rails
|
195
220
|
licenses: []
|
196
|
-
|
197
|
-
|
221
|
+
post_install_message: ! "# DEPRECATION NOTICE\n\nThe bootstrap-sass-rails is deprecated
|
222
|
+
starting with version 3.1.0.0.\nThere is an official Sass port of Bootstrap now
|
223
|
+
which can be found\nwithin the twbs organization on GitHub:\n\nhttps://github.com/twbs/bootstrap-sass\n\nYou
|
224
|
+
are recommended to upgrade your Gemfile to directly use bootstrap-sass\nfrom now
|
225
|
+
on. Upgrading should be really simple, the differences between the\ngems are mostly
|
226
|
+
in the namespacing.\n\nUPGRADING\n\n Remove the twitter/ prefix from all your `@import`
|
227
|
+
and `= require`\n statements:\n\n Before:\n @import \"twitter/bootstrap\";\n
|
228
|
+
\ @import \"twitter/bootstrap/modal\";\n\n After:\n @import \"bootstrap\";\n
|
229
|
+
\ @import \"bootstrap/modal\";\n\n Before:\n //= require \"twitter/bootstrap\";\n
|
230
|
+
\ //= require \"twitter/bootstrap/modal\";\n\n After:\n //= require \"bootstrap\";\n
|
231
|
+
\ //= require \"bootstrap/modal\";\n\n Thank you for using bootstrap-sass-rails!\n"
|
198
232
|
rdoc_options: []
|
199
233
|
require_paths:
|
200
234
|
- lib
|
201
235
|
required_ruby_version: !ruby/object:Gem::Requirement
|
236
|
+
none: false
|
202
237
|
requirements:
|
203
238
|
- - ! '>='
|
204
239
|
- !ruby/object:Gem::Version
|
205
240
|
version: '0'
|
241
|
+
segments:
|
242
|
+
- 0
|
243
|
+
hash: 1563281602919206843
|
206
244
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
245
|
+
none: false
|
207
246
|
requirements:
|
208
247
|
- - ! '>='
|
209
248
|
- !ruby/object:Gem::Version
|
210
249
|
version: '0'
|
250
|
+
segments:
|
251
|
+
- 0
|
252
|
+
hash: 1563281602919206843
|
211
253
|
requirements: []
|
212
254
|
rubyforge_project:
|
213
|
-
rubygems_version:
|
255
|
+
rubygems_version: 1.8.23
|
214
256
|
signing_key:
|
215
|
-
specification_version:
|
257
|
+
specification_version: 3
|
216
258
|
summary: HTML, CSS, and JS toolkit from Twitter converted to Sasss and the Rails asset
|
217
259
|
pipeline
|
218
260
|
test_files:
|
checksums.yaml
DELETED
@@ -1,15 +0,0 @@
|
|
1
|
-
---
|
2
|
-
!binary "U0hBMQ==":
|
3
|
-
metadata.gz: !binary |-
|
4
|
-
YTdiN2RkMjQ1OWYyNjViMWZmZmFlYWI5ZGU1YTcxNGU0M2YyZjJhNg==
|
5
|
-
data.tar.gz: !binary |-
|
6
|
-
ODliNjFmZjdhOTdlYTcxYzUzYTExZjM0NGQ4Y2RkYWU1M2Y3MmRmNg==
|
7
|
-
!binary "U0hBNTEy":
|
8
|
-
metadata.gz: !binary |-
|
9
|
-
ZGNhYjRjMjY2ODc1MzYyNjVkMzM1NzRiYzIzMGMxZjE0Mzc2Y2U2NmM5ZGU1
|
10
|
-
MWY2OTYwNmYyNTQ2YmNmYTdlYzhmYzkyMWM0YzY4MjJiNDZmYjdkNTlmZTQ2
|
11
|
-
ZmYyZmQzYTViNDU0NzI5NDBkYTJhODQ3MWZiNTEzZDVjZGU0OTE=
|
12
|
-
data.tar.gz: !binary |-
|
13
|
-
Yzk5Yzk4ZjRiZjUyN2Q5MmM1YTQ4N2Y0M2ZhOTEwMDRmN2IyNDQ5OTg4MDky
|
14
|
-
ZTQ4MGNhYzVmYjhhYjZlZWI1ODVhN2M0N2YyZWY0MDhmZTgzMGM0NGM3NzBh
|
15
|
-
MTIzZTQ5NThlMjliODY2ODcyZGRkZjRkZjdjZDY1OGZiMWE3MTY=
|
Binary file
|