ronin-grid 1.0.3 → 1.1.0.alpha.0

Sign up to get free protection for your applications and to get access to all the features.
data/lib/tasks/setup.rake DELETED
@@ -1,13 +0,0 @@
1
- # Currently unusable, as it does not override existing file if ronin-grid is
2
- # not explicitly installed via `rake ronin-grid:install`. Keeping around for
3
- # future reference.
4
- namespace :'ronin-grid' do
5
- desc "Install the app/assets/stylesheets/ronin-grid/_setup.scss file."
6
- task :setup, [:sass_path] do |t, args|
7
- args.with_defaults :sass_path => 'app/assets/stylesheets'
8
- source_root = File.expand_path(File.join(File.dirname(__FILE__), '..', '..'))
9
- `mkdir -p #{Rails.root}/#{args.sass_path}/ronin-grid`
10
- `cp -a #{source_root}/app/assets/stylesheets/ronin-grid/_setup.scss #{Rails.root}/#{args.sass_path}/ronin-grid`
11
- end
12
- end
13
-