Skip to content

Commit d094002

Browse files
committed
Initial commit
0 parents  commit d094002

File tree

147 files changed

+13056
-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.

147 files changed

+13056
-0
lines changed

.coveralls.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
repo_token: 5WNwnFZBErgECsMLqQGLZJmBYj9oznvHT

.gitignore

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# Mac OSX
2+
.DS_Store
3+
.AppleDouble
4+
.LSOverride
5+
Icon
6+
7+
8+
# Thumbnails
9+
._*
10+
11+
# Files that might appear on external disk
12+
.Spotlight-V100
13+
.Trashes
14+
15+
.bundle/
16+
log/*.log
17+
pkg/
18+
test/dummy/db/*.sqlite3
19+
test/dummy/db/*.sqlite3-journal
20+
test/dummy/log/*.log
21+
test/dummy/tmp/
22+
test/dummy/public/assets
23+
24+
# Others
25+
coverage
26+
tmp
27+
gemfiles/*.lock
28+
*.gem

.gitmodules

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
[submodule "src/scottjehl/Respond"]
2+
path = src/scottjehl/Respond
3+
url = https://github.com/scottjehl/Respond.git
4+
[submodule "src/twbs/bootstrap"]
5+
path = src/twbs/bootstrap
6+
url = https://github.com/twbs/bootstrap.git
7+
[submodule "src/FortAwesome/Font-Awesome"]
8+
path = src/FortAwesome/Font-Awesome
9+
url = https://github.com/FortAwesome/Font-Awesome.git

.travis.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
language: ruby
2+
rvm:
3+
- 1.9.3
4+
- 2.0.0
5+
gemfile:
6+
- gemfiles/Gemfile.rails-3.2.x
7+
- gemfiles/Gemfile.rails-4.0.x

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
Changelog
2+
=========
3+
4+
1.0.0
5+
-----
6+
* Bootstrap 3.0 @ [32468b087b](https://github.com/twbs/bootstrap/commit/32468b087b615d1ed710f9118ff4f669cc5ad5e8)
7+
* Fontawesome 3.2.1 @ [906345058f](https://github.com/FortAwesome/Font-Awesome/commit/906345058f738c2b931f89754a319ed108e17bd8)
8+
* Respond.js 1.3.0 @ [ad87635f83](https://github.com/scottjehl/Respond/commit/ad87635f83f8b811e1da53c082325a4b35960771)

CONTRIBUTING.md

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
# Contributing to Bootstrap
2+
3+
Looking to contribute something to Twbs Less Rails? **Here's how you can help.**
4+
5+
6+
7+
## Reporting issues
8+
9+
We only accept issues that are bug reports or feature requests. Bugs must be isolated and reproducible problems that we can fix within the Twbs Less Rails core. Please read the following guidelines before opening any issue.
10+
11+
1. **Search for existing issues.**
12+
2. **Create an isolated and reproducible test case.**
13+
3. **Include a live example if possible.**
14+
4. **Share as much information as possible.** Include at least Rails version and gem version. Also include steps to reproduce the bug.
15+
16+
17+
18+
## Key branches
19+
20+
- `master` is the latest, deployed version. **Never pull against this branch.**
21+
- `develop` is the official development branch for the next release.
22+
23+
Take a look at [git-flow, A successful Git branching model](http://nvie.com/posts/a-successful-git-branching-model/)
24+
25+
26+
27+
## Pull requests
28+
29+
- Try to submit pull requests against the `develop` branch for easier merging
30+
- Try not to pollute your pull request with unintended changes--keep them simple and small
31+
- **Test. Code coverage should never go below 100%.** If you find a bug, write at first a failing test case and then fix it.
32+
33+
34+
35+
## Coding standards
36+
37+
### Ruby
38+
39+
- [Ruby Styleguide](https://github.com/styleguide/ruby)
40+
41+
42+
43+
## License
44+
45+
By contributing your code, you agree to license your contribution under the terms of the [BSD 2-Clause License](LICENSE)

Gemfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
source "https://rubygems.org"
2+
3+
gemspec

Gemfile.lock

Lines changed: 144 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,144 @@
1+
PATH
2+
remote: .
3+
specs:
4+
twbs_less_rails (1.0.0)
5+
less-rails
6+
rails (>= 3.2.15)
7+
therubyracer
8+
9+
GEM
10+
remote: https://rubygems.org/
11+
specs:
12+
actionmailer (4.0.0)
13+
actionpack (= 4.0.0)
14+
mail (~> 2.5.3)
15+
actionpack (4.0.0)
16+
activesupport (= 4.0.0)
17+
builder (~> 3.1.0)
18+
erubis (~> 2.7.0)
19+
rack (~> 1.5.2)
20+
rack-test (~> 0.6.2)
21+
activemodel (4.0.0)
22+
activesupport (= 4.0.0)
23+
builder (~> 3.1.0)
24+
activerecord (4.0.0)
25+
activemodel (= 4.0.0)
26+
activerecord-deprecated_finders (~> 1.0.2)
27+
activesupport (= 4.0.0)
28+
arel (~> 4.0.0)
29+
activerecord-deprecated_finders (1.0.3)
30+
activesupport (4.0.0)
31+
i18n (~> 0.6, >= 0.6.4)
32+
minitest (~> 4.2)
33+
multi_json (~> 1.3)
34+
thread_safe (~> 0.1)
35+
tzinfo (~> 0.3.37)
36+
ansi (1.4.3)
37+
arel (4.0.0)
38+
atomic (1.1.14)
39+
builder (3.1.4)
40+
capybara (2.1.0)
41+
mime-types (>= 1.16)
42+
nokogiri (>= 1.3.3)
43+
rack (>= 1.0.0)
44+
rack-test (>= 0.5.4)
45+
xpath (~> 2.0)
46+
columnize (0.3.6)
47+
commonjs (0.2.7)
48+
coveralls (0.7.0)
49+
multi_json (~> 1.3)
50+
rest-client
51+
simplecov (>= 0.7)
52+
term-ansicolor
53+
thor
54+
debugger (1.6.2)
55+
columnize (>= 0.3.1)
56+
debugger-linecache (~> 1.2.0)
57+
debugger-ruby_core_source (~> 1.2.3)
58+
debugger-linecache (1.2.0)
59+
debugger-ruby_core_source (1.2.3)
60+
erubis (2.7.0)
61+
hike (1.2.3)
62+
i18n (0.6.5)
63+
less (2.4.0)
64+
commonjs (~> 0.2.7)
65+
less-rails (2.4.2)
66+
actionpack (>= 3.1)
67+
less (~> 2.4.0)
68+
libv8 (3.16.14.3)
69+
mail (2.5.4)
70+
mime-types (~> 1.16)
71+
treetop (~> 1.4.8)
72+
mime-types (1.25)
73+
mini_portile (0.5.1)
74+
minitest (4.7.5)
75+
multi_json (1.8.2)
76+
nokogiri (1.6.0)
77+
mini_portile (~> 0.5.0)
78+
polyglot (0.3.3)
79+
rack (1.5.2)
80+
rack-test (0.6.2)
81+
rack (>= 1.0)
82+
rails (4.0.0)
83+
actionmailer (= 4.0.0)
84+
actionpack (= 4.0.0)
85+
activerecord (= 4.0.0)
86+
activesupport (= 4.0.0)
87+
bundler (>= 1.3.0, < 2.0)
88+
railties (= 4.0.0)
89+
sprockets-rails (~> 2.0.0)
90+
railties (4.0.0)
91+
actionpack (= 4.0.0)
92+
activesupport (= 4.0.0)
93+
rake (>= 0.8.7)
94+
thor (>= 0.18.1, < 2.0)
95+
rake (10.1.0)
96+
ref (1.0.5)
97+
rest-client (1.6.7)
98+
mime-types (>= 1.16)
99+
simplecov (0.7.1)
100+
multi_json (~> 1.0)
101+
simplecov-html (~> 0.7.1)
102+
simplecov-html (0.7.1)
103+
sprockets (2.10.0)
104+
hike (~> 1.2)
105+
multi_json (~> 1.0)
106+
rack (~> 1.0)
107+
tilt (~> 1.1, != 1.3.0)
108+
sprockets-rails (2.0.1)
109+
actionpack (>= 3.0)
110+
activesupport (>= 3.0)
111+
sprockets (~> 2.8)
112+
sqlite3 (1.3.8)
113+
term-ansicolor (1.2.2)
114+
tins (~> 0.8)
115+
therubyracer (0.12.0)
116+
libv8 (~> 3.16.14.0)
117+
ref
118+
thor (0.18.1)
119+
thread_safe (0.1.3)
120+
atomic
121+
tilt (1.4.1)
122+
tins (0.12.0)
123+
treetop (1.4.15)
124+
polyglot
125+
polyglot (>= 0.3.1)
126+
turn (0.9.6)
127+
ansi
128+
tzinfo (0.3.38)
129+
xpath (2.0.0)
130+
nokogiri (~> 1.3)
131+
132+
PLATFORMS
133+
ruby
134+
135+
DEPENDENCIES
136+
capybara
137+
coveralls
138+
debugger
139+
minitest (~> 4)
140+
rake
141+
simplecov
142+
sqlite3
143+
turn
144+
twbs_less_rails!

LICENSE

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
Copyright (c) 2013, diowa
2+
All rights reserved.
3+
4+
Redistribution and use in source and binary forms, with or without
5+
modification, are permitted provided that the following conditions are met:
6+
7+
1. Redistributions of source code must retain the above copyright notice, this
8+
list of conditions and the following disclaimer.
9+
2. Redistributions in binary form must reproduce the above copyright notice,
10+
this list of conditions and the following disclaimer in the documentation
11+
and/or other materials provided with the distribution.
12+
13+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
14+
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
15+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
16+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
17+
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
18+
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
19+
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
20+
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
21+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
22+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23+
24+
Twitter Bootstrap is licensed under the Apache License, Version 2.0
25+
26+
Font Awesome is licensed under the MIT License
27+
28+
Font Awesome font is licensed under the SIL Open Font License
29+
30+
Font Awesome pictograms are licensed under the CC BY 3.0 License

0 commit comments

Comments
 (0)