Skip to content

Commit f526271

Browse files
committed
Initial commit
0 parents  commit f526271

File tree

389 files changed

+73256
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

389 files changed

+73256
-0
lines changed

.editorconfig

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# editorconfig.org
2+
3+
root = true
4+
5+
[*]
6+
charset = utf-8
7+
end_of_line = lf
8+
indent_size = 2
9+
indent_style = space
10+
insert_final_newline = true
11+
trim_trailing_whitespace = true
12+
13+
[*.md]
14+
trim_trailing_whitespace = false
15+
16+
[*.py]
17+
indent_size = 4

.gitattributes

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Enforce Unix newlines
2+
*.css text eol=lf
3+
*.html text eol=lf
4+
*.js text eol=lf
5+
*.json text eol=lf
6+
*.md text eol=lf
7+
*.py text eol=lf
8+
*.rb text eol=lf
9+
*.scss text eol=lf
10+
*.svg text eol=lf
11+
*.yml text eol=lf
12+
# Don't diff or textually merge source maps
13+
*.map binary
14+
15+
bootstrap.css linguist-vendored=false
16+
bootstrap.js linguist-vendored=false

.gitignore

+56
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
# Ignore docs files
2+
_gh_pages
3+
_site
4+
5+
# Ignore ruby files
6+
.ruby-version
7+
.bundle
8+
vendor/cache
9+
vendor/bundle
10+
11+
# Numerous always-ignore extensions
12+
*.diff
13+
*.err
14+
*.log
15+
*.orig
16+
*.rej
17+
*.swo
18+
*.swp
19+
*.vi
20+
*.zip
21+
*~
22+
23+
# OS or Editor folders
24+
._*
25+
.cache
26+
.DS_Store
27+
.idea
28+
.project
29+
.settings
30+
.tmproj
31+
*.esproj
32+
*.sublime-project
33+
*.sublime-workspace
34+
nbproject
35+
Thumbs.db
36+
37+
# Komodo
38+
.komodotools
39+
*.komodoproject
40+
41+
# grunt-html-validation
42+
validation-report.json
43+
validation-status.json
44+
45+
# SCSS-Lint
46+
scss-lint-report.xml
47+
48+
# grunt-contrib-sass cache
49+
.sass-cache
50+
51+
# Jekyll metadata
52+
docs/.jekyll-metadata
53+
54+
# Folders to ignore
55+
bower_components
56+
node_modules

.hound.yml

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
javascript:
2+
enabled: false
3+
scss:
4+
config_file: scss/.scss-lint.yml
5+
enabled: true
6+
ignore_file: scss/_normalize.scss

.travis.yml

+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
sudo: false
2+
language: node_js
3+
git:
4+
depth: 10
5+
node_js:
6+
- "4"
7+
- "5"
8+
before_install:
9+
- rvm install 2.2
10+
- rvm use 2.2 --fuzzy
11+
- export GEMDIR=$(rvm gemdir)
12+
- npm install -g npm@3
13+
- "export TRAVIS_COMMIT_MSG=\"$(git log --format=%B --no-merges -n 1)\""
14+
- echo "$TRAVIS_COMMIT_MSG" | grep '\[skip validator\]'; export TWBS_DO_VALIDATOR=$?; true
15+
- echo "$TRAVIS_COMMIT_MSG" | grep '\[skip sauce\]'; export TWBS_DO_SAUCE=$?; true
16+
- if [ "$TRAVIS_REPO_SLUG" = twbs-savage/bootstrap ]; then export TWBS_DO_VALIDATOR=0; fi
17+
install:
18+
- bundle install --deployment --jobs=3
19+
- cp grunt/npm-shrinkwrap.json ./
20+
- npm install -g grunt-cli
21+
- npm install
22+
# Caching disabled due to https://github.com/travis-ci/travis-ci/issues/5092
23+
#cache:
24+
# directories:
25+
# - node_modules
26+
# - vendor/bundle
27+
env:
28+
global:
29+
- SAUCE_USERNAME="bootstrap"
30+
- secure: "pJkBwnuae9dKU5tEcCqccfS1QQw7/meEcfz63fM7ba7QJNjoA6BaXj08L5Z3Vb5vBmVPwBawxo5Hp0jC0r/Z/O0hGnAmz/Cz09L+cy7dSAZ9x4hvZePSja/UAusaB5ogMoO8l2b773MzgQeSmrLbExr9BWLeqEfjC2hFgdgHLaQ="
31+
- secure: "RKWpS+P20b4tG9tawzCMJSmQftoonmC7tJzyGYiHuEM1TcpHALLBcnzKlr/+DiPTfzDJWY4kS8pxfhK4uXOe8OHnhpMNub7LEWtFPePlZIervOJcsOydaQocTKqVVWD6OUubMeQmQ+tZmvmpjoJ1uPPEbFs9ciF7+dv3U5tLUZ0="
32+
- secure: "XswSKBY0HJ/aO9VOBeWlvGpqSFF/DsJmNKz7o5RkJMJX340qe44J929uUNwwOwlv9YrgptzC2W6l8bpmZQV+p6IYs99SoSA8CCaUfIJaqeU9x/UiT5vIHgqaNax+vFJwvzHLpF5v/ggFqFEKCd54gCDasePLTztHeC4oL104iaQ="
33+
matrix:
34+
- TWBS_TEST=core
35+
- TWBS_TEST=validate-html
36+
- TWBS_TEST=sauce-js-unit
37+
matrix:
38+
fast_finish: true
39+
exclude:
40+
- node_js: "4"
41+
env: TWBS_TEST=validate-html
42+
- node_js: "4"
43+
env: TWBS_TEST=sauce-js-unit
44+
notifications:
45+
slack: heybb:iz4wwosL0N0EdaX1gvgkU0NH
46+
webhooks:
47+
- http://savage.twbsapps.com/savage/travis

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
Bootstrap uses [GitHub's Releases feature](https://github.com/blog/1547-release-your-software) for its changelogs.
2+
3+
See [the Releases section of our GitHub project](https://github.com/twbs/bootstrap/releases) for changelogs for each release version of Bootstrap.
4+
5+
Release announcement posts on [the official Bootstrap blog](http://blog.getbootstrap.com) contain summaries of the most noteworthy changes made in each release.

CNAME

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
v4-alpha.getbootstrap.com

0 commit comments

Comments
 (0)