ronin-grid 1.0.3 → 1.1.0.alpha.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
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
-