bootstrap_v3 0.0.15 → 0.1
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.
- checksums.yaml +4 -4
- data/README.md +25 -3
- data/lib/bootstrap/v3/rails/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 81219714714ee6d479ca6240025b762669ef2285
|
4
|
+
data.tar.gz: 15b8aa10e4d5f669494ca5fde01cbed4ad7a6d42
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bca20f078518d75262026f4e451c3bd11c13a4e512c8ee3f07a0e0badf9fbbe5a8ace40f1c0823b3212f71fa6158dd409812a9c6b61c684a3107c929e7e8af59
|
7
|
+
data.tar.gz: 9f5963c9fd21f9c28eb3227decc7c811a9b6ee1943fcc8b897e88df787573e9eda2b5fdd1edb6b5420c7e2e82847e62862b94fb6d6b84af65dfd1912dc45853a
|
data/README.md
CHANGED
@@ -1,4 +1,26 @@
|
|
1
|
-
|
2
|
-
============
|
3
|
-
|
1
|
+
# Bootstrap V3 (for Rails)
|
4
2
|
Sleek, intuitive, and powerful mobile first front-end framework for faster and easier web development.
|
3
|
+
|
4
|
+
Homepage: http://getbootstrap.com/
|
5
|
+
|
6
|
+
## Installation
|
7
|
+
Inside your Gemfile add the following lines:
|
8
|
+
```ruby
|
9
|
+
gem 'therubyracer'
|
10
|
+
gem 'less-rails'
|
11
|
+
gem "bootstrap_v3"
|
12
|
+
```
|
13
|
+
Then run `bundle install` to install gems.
|
14
|
+
|
15
|
+
Run generator to include assets to your project
|
16
|
+
```bash
|
17
|
+
rails g bootstrap:install
|
18
|
+
```
|
19
|
+
|
20
|
+
## Contributing
|
21
|
+
|
22
|
+
1. Fork it
|
23
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
24
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
25
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
26
|
+
5. Create new Pull Request
|