Alexei Kozhushkov

Results 2 comments of Alexei Kozhushkov

``` def expand_vendored_gem(spec, options) add_spec(spec) FileUtils.mkdir_p(@path.join("gems")) if RUBY_PLATFORM.downcase =~ /[mswin|mingw]32/ require 'rubygems' require 'win32/dir' Dir.create_junction(@path.join("gems", spec.full_name).to_s, spec.location.to_s) else File.symlink(spec.location, @path.join("gems", spec.full_name)) end end ```

Hi Nemo64, thanks for reply. I use steps 1 - 4 from [here](https://github.com/simison/bootstrap3-less#how-to-install). My /client/app.less contains `@import "/packages/bootstrap3-less/bootstrap.import.less";` only. This imported less file contains import directives for variables, mixins and...