forked from twbs/bootstrap-sass
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
and everything *should* work.
- Loading branch information
0 parents
commit c303d86
Showing
13 changed files
with
2,077 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
*.gem | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
Copyright 2011 Twitter, Inc. | ||
|
||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
|
||
http://www.apache.org/licenses/LICENSE-2.0 | ||
|
||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Bootstrap for Rails | ||
|
||
`bootstrap-rails` is an SASS-powered version of [Twitter's Bootstrap](http://github.com/twitter/bootstrap), ready to drop right into your asset-pipeline powered Rails applications. | ||
|
||
Enjoy. | ||
|
||
## Usage | ||
|
||
In your gemfile: | ||
|
||
gem 'bootstrap-rails', '1.2.0' | ||
|
||
In your css file of choice: | ||
|
||
/* | ||
*= require bootstrap | ||
*/ | ||
|
||
Simples. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
Gem::Specification.new do |s| | ||
s.name = "bootstrap-rails" | ||
s.version = '1.2.0' | ||
s.authors = ["Thomas McDonald"] | ||
s.email = '[email protected]' | ||
s.summary = "Twitter's Bootstrap, converted to SASS and ready to drop into Rails" | ||
s.homepage = "http://github.com/thomas-mcdonald/bootstrap-rails" | ||
|
||
s.add_dependency 'sass-rails' | ||
|
||
s.files = Dir["vendor/**/*.css.scss"] + ["README.md", "LICENSE", "lib/bootstrap-rails.rb"] | ||
end | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
module Bootstrap | ||
module Rails | ||
class Engine < ::Rails::Engine | ||
# Rails, will you please look in our vendor? kthx | ||
end | ||
end | ||
end | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/*! | ||
* Bootstrap 1.2.0 | ||
* | ||
* Copyright 2011 Twitter, Inc | ||
* Licensed under the Apache License v2.0 | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Designed and built with all the love in the world @twitter by @mdo and @fat, and crafted into SASS by the fine typing of Thomas McDonald | ||
* Date: 6th September, 2011 | ||
*/ | ||
|
||
// CSS Reset | ||
@import "bootstrap/reset"; | ||
|
||
// Core | ||
@import "bootstrap/preboot"; | ||
@import "bootstrap/scaffolding"; | ||
|
||
// Styled patterns and elements | ||
@import "bootstrap/type"; | ||
@import "bootstrap/forms"; | ||
@import "bootstrap/tables"; | ||
@import "bootstrap/patterns"; | ||
|
Oops, something went wrong.