Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap-rubygem.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-08-06sass -> sasscGleb Mazovetskiy
Fixes #159
2018-04-16add bundler/gem_tasks to Rakefilev4.1.0Gleb Mazovetskiy
2017-10-14Fix rake debugGleb Mazovetskiy
2016-03-12Disable testtask warningsGleb Mazovetskiy
They were enabled by default in rake 11, but they generate far too much output for travis to handle.
2016-01-19Fix test harness support for sprockets-rails 3Gleb Mazovetskiy
2015-09-20Test with Rails masterGleb Mazovetskiy
Also test that Autoprefixer is applied
2015-08-31Update and fix `rake dummy_rails`Gleb Mazovetskiy
* Fix the task * Rename to `rake rails_server` * Add tether as a development dependency
2015-08-26Remove obsolete files, s/bootstrap-sass/bootstrapGleb Mazovetskiy
2015-08-20Removed unused rake tasksJan Stevens
2015-07-01Update node.js devDeps, tests, new mincer compatGleb Mazovetskiy
2015-03-16tests: dummy rails app server task & fixesGleb Mazovetskiy
2014-08-25streamline tests, switch to minitestGleb Mazovetskiy
2014-06-24pure scss asset helpers, new pathsGleb Mazovetskiy
2014-05-01Rakefile: load pathGleb Mazovetskiy
2014-04-14bower.json main fieldGleb Mazovetskiy
See #563 #585 #586 Adds `rake bower:spec` to automatically generate main and version fields for bower.json.
2014-03-20Create directory from argument in compile taskCarlos Diaz-Padron
Previously, the compile task would always create a tmp/ directory, even if another directory is specified. The specified directory was also not created if necessary.
2014-02-25rake compile minor fixes #540Gleb Mazovetskiy
2013-12-21Minor refactorings and rake less_to_scssGleb Mazovetskiy
less_to_scss: $ echo '.p { #gradient > .horizontal(red,blue) }' | rake less_to_scss[master] .p { @include gradient-horizontal(red,blue) }
2013-11-15Sass-only supportGleb Mazovetskiy
2013-08-18rake compile will compile CSS to tmp/Gleb Mazovetskiy
2013-05-24Ported converter rake task from compass-twitter-bootstrap gem.Peter Gumeson
2013-04-13Merge branch 'master' into 3Thomas McDonald
Merge updates from master since I started working on 3.
2013-04-13Update to a working copy of 3-wipThomas McDonald
2013-03-21Provide image_path that works with SprocketsTristan Harward
Prior to this, functions in sprockets-sass conflicted with ours and caused an infinite loop and StackError. This fixes thomas-mcdonald/bootstrap-sass#257 Note that Sprockets' asset_path requires configuration if it's not already configured by your framework. For example, in a simple Rack app, add the following to your config.ru: environment.context_class.class_eval do def asset_path(path, options = {}) "/assets/#{path}" end end
2013-01-20Update rake:debug with file locationsThomas McDonald
2012-06-04Alter rake debug to compile bootstrap-responsiveThomas McDonald
2012-05-12Add rake:debug task to quickly build the CSSThomas McDonald
Previously to ensure that changes have been working it was required to build the gem and then push it to a sample application (e.g. Rails & Compass). The rake:debug task uses plain Sass - as we do for testing, and creates the file 'debug.css' without having to rebuild the Gem and fire up an application.
2012-05-06add tests to check for compilation errors with SassThomas McDonald