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
path: root/tasks
AgeCommit message (Collapse)Author
2021-08-12Update JS updater for v5.1.0Gleb Mazovetskiy
2021-05-06Update to v5.0.0v5.0.0Gleb Mazovetskiy
1. Updater: Add `util/backdrop.js` to the list of inlined srcs. 2. `bundle exec rake 'update[v5.0.0]' 3. Update version numbers. 4. Bump minimum Popper version from 2.9.1 to 2.9.2
2021-04-25Updater: Mark util/scrollbar.js as inlinedGleb Mazovetskiy
2021-04-25Updater: log file on network errorGleb Mazovetskiy
2021-02-27JS: Define components in the `bootstrap` namespaceGleb Mazovetskiy
They were previously defined directly on `window` when using `//=require bootstrap-sprockets`.
2021-02-27Bump to v5.0.0.beta2Gleb Mazovetskiy
1. Removed `base-component.js` from `js.rb` exclusion list as it is no longer inlined. 2. `bundle exec rake update '[v5.0.0-beta2]'` 3. Updated version in `version.rb` and `README.md`
2021-01-05Update JS updater for v5.0.0-beta1Gleb Mazovetskiy
2020-08-09updater/js.rb: Update paths for v5Gleb Mazovetskiy
2020-05-18Use URI.open instead of deprecated openTejas Bubane
Got multiple errors while running rake update on ruby 2.7.1 ``` /opensource/bootstrap-rubygem/tasks/updater/network.rb:28: warning: calling URI.open via Kernel#open is deprecated, call URI.open directly or use URI#open ``` ``` /opensource/bootstrap-rubygem/tasks/updater/network.rb:65: warning: calling URI.open via Kernel#open is deprecated, call URI.open directly or use URI#open ```
2019-02-13Updater: Exclude tools/sanitizer.js from bootstrap_js_filesGleb Mazovetskiy
2017-12-29update: stabilize requires orderGleb Mazovetskiy
2017-10-23Remove sourceMappingURL - Refs #124Gleb Mazovetskiy
2017-10-13Drop Compass support, bump minimum Sass versionGleb Mazovetskiy
Compass is no longer maintained and hasn't seen a release for 3 years. The compass gem locks Sass to version < 3.5. However, we now need Sass v3.5+ due to https://github.com/sass/sass/issues/2383 This commit removes compass support and bumps minimum Ruby Sass version to v3.5.2.
2017-09-03Update the JS updater script for the latest v4-devGleb Mazovetskiy
There is no longer a list of JS files in the correct order in package.js, so we scan and topologically sort `import`s instead.
2017-08-16Revert "Variables template: import functions and variables"Gleb Mazovetskiy
This reverts commit 7f6a060d6ca870eb6ef5c777d816d97646c0507a.
2017-08-15Variables template: import functions and variablesGleb Mazovetskiy
There are lots of questions on the issue tracker and StackOverflow about why overriding a variable fails. In most of the cases, this happens when the overriden variable value uses the value of another variable or a function. Importing variables and functions by default fixes most of these issues.
2017-05-30Variables template: comment out mixins/functionsGleb Mazovetskiy
Fixes #70
2017-05-30Remove sourceMappingUrlsGleb Mazovetskiy
This gem does not ship with source maps. Fixes #87
2017-05-29Update the updater taskGleb Mazovetskiy
Fixes #82
2017-01-06remove bootstrap-flex update handling since it's goneBlake Gentry
2016-09-10Update variables template generator for alpha4Gleb Mazovetskiy
2016-05-17updater: fix deprecated use of Thread.exclusiveGleb Mazovetskiy
2015-11-03Removes source map comments from JS files #12Gleb Mazovetskiy
2015-09-11Remove the assets directory before updatingGleb Mazovetskiy
2015-09-02Read JS concat order directly from GruntfileGleb Mazovetskiy
2015-08-27Compass template .sass -> .scssGleb Mazovetskiy
2015-08-27Fix comments in templates/project/_bootstrap-variables.sassGleb Mazovetskiy
2015-08-26Remove custom license from the updaterGleb Mazovetskiy
No LESS to Sass conversion code remains
2015-08-26Rename js_conversion.rb and scss_conversion.rbGleb Mazovetskiy
2015-08-26Refactor scss_conversion and explain what it doesGleb Mazovetskiy
2015-08-26Fix updater caching, use upstream version for variablesGleb Mazovetskiy
2015-08-26Remove obsolete files, s/bootstrap-sass/bootstrapGleb Mazovetskiy
2015-08-20Renamed converter to updater since its an updater and does not convert anymoreJan Stevens
2015-08-20Removed unused rake tasksJan Stevens
2015-08-19Fixed regex so we escape everything in the template fileJan Stevens
2015-08-19removed unused converter filesJan Stevens
2015-08-19Removed font dir from main property for bower.jsonJan Stevens
2015-08-19Removed the font converter since bootstrap does not include a custom font ↵Jan Stevens
anymore
2015-08-19Removing the less converter and using scss converter, also removed font ↵Jan Stevens
converter
2015-08-19The javascript files are now in dist so lets fetch distJan Stevens
2015-08-19Added a scss converter based on the javascript converterJan Stevens
2015-07-01Fix #919Gleb Mazovetskiy
Work around for https://github.com/sass/libsass/issues/1115
2015-04-27wrap at-groups with @at-root #805Gleb Mazovetskiy
2015-04-27converter: extract a& in _buttons.scssGleb Mazovetskiy
2015-03-16converter: simplify replace_mixinsGleb Mazovetskiy
2015-03-16converter: recursive tree fetchGleb Mazovetskiy
2015-03-16tests: dummy rails app server task & fixesGleb Mazovetskiy
2015-01-20Bump to v3.3.3Gleb Mazovetskiy
This is a re-packaged release of 3.3.2.1 (v3.3.2+1). Versions are now strictly semver. The PATCH version may be ahead of the upstream. Framework version: Bootstrap **v3.3.2**.
2015-01-20Revert "Fix #803 by unquoting all UTF8 escapes"Gleb Mazovetskiy
This reverts commit 443d5b49eac84aec1cb2f8ea173554327bfc8c14. This "fix" breaks everything. Sorry!
2015-01-18Fix #803 by unquoting all UTF8 escapesGleb Mazovetskiy
Work around Sass 3.4.x generating BOM that break IE10+ https://github.com/sass/sass/issues/1395