-
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.
- Loading branch information
thamizh
committed
Jul 11, 2013
1 parent
f608f6e
commit f22a47b
Showing
7 changed files
with
81 additions
and
2 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 |
---|---|---|
|
@@ -13,3 +13,5 @@ | |
# Ignore all logfiles and tempfiles. | ||
/log/*.log | ||
/tmp | ||
/public/assets | ||
/public/assets/* |
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
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
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 |
---|---|---|
|
@@ -12,4 +12,5 @@ | |
// | ||
//= require jquery | ||
//= require jquery_ujs | ||
//= require twitter/bootstrap | ||
//= require_tree . |
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,3 @@ | ||
jQuery -> | ||
$("a[rel~=popover], .has-popover").popover() | ||
$("a[rel~=tooltip], .has-tooltip").tooltip() |
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,30 @@ | ||
@import "twitter/bootstrap/bootstrap"; | ||
@import "twitter/bootstrap/responsive"; | ||
|
||
// Set the correct sprite paths | ||
@iconSpritePath: image-url("twitter/bootstrap/glyphicons-halflings.png"); | ||
@iconWhiteSpritePath: image-url("twitter/bootstrap/glyphicons-halflings-white.png"); | ||
|
||
// Set the Font Awesome (Font Awesome is default. You can disable by commenting below lines) | ||
@fontAwesomeEotPath: asset-url("fontawesome-webfont.eot"); | ||
@fontAwesomeEotPath_iefix: asset-url("fontawesome-webfont.eot?#iefix"); | ||
@fontAwesomeWoffPath: asset-url("fontawesome-webfont.woff"); | ||
@fontAwesomeTtfPath: asset-url("fontawesome-webfont.ttf"); | ||
@fontAwesomeSvgPath: asset-url("fontawesome-webfont.svg#fontawesomeregular"); | ||
|
||
// Font Awesome | ||
@import "fontawesome/font-awesome"; | ||
|
||
// Glyphicons | ||
//@import "twitter/bootstrap/sprites.less"; | ||
|
||
// Your custom LESS stylesheets goes here | ||
// | ||
// Since bootstrap was imported above you have access to its mixins which | ||
// you may use and inherit here | ||
// | ||
// If you'd like to override bootstrap's own variables, you can do so here as well | ||
// See http://twitter.github.com/bootstrap/customize.html#variables for their names and documentation | ||
// | ||
// Example: | ||
// @linkColor: #ff0000; |
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,18 @@ | ||
# Sample localization file for English. Add more files in this directory for other locales. | ||
# See https://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points. | ||
|
||
en: | ||
helpers: | ||
actions: "Actions" | ||
links: | ||
back: "Back" | ||
cancel: "Cancel" | ||
confirm: "Are you sure?" | ||
destroy: "Delete" | ||
new: "New" | ||
edit: "Edit" | ||
titles: | ||
edit: "Edit %{model}" | ||
save: "Save %{model}" | ||
new: "New %{model}" | ||
delete: "Delete %{model}" |