modularis 0.1 → 1.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.
- checksums.yaml +8 -8
- data/CHANGELOG.md +0 -0
- data/README.md +54 -25
- data/lib/modularis.rb +8 -16
- metadata +11 -44
- data/.gitignore +0 -24
- data/.idea/scopes/scope_settings.xml +0 -5
- data/.rbenv-version +0 -1
- data/CONTRIBUTING.md +0 -53
- data/Gemfile +0 -4
- data/Gemfile.lock +0 -19
- data/Gruntfile.js +0 -27
- data/LICENSE +0 -22
- data/Rakefile +0 -2
- data/js/modularis/index.js +0 -18
- data/js/vendor/custom.modernizr.js +0 -4
- data/js/vendor/jquery.js +0 -9597
- data/js/vendor/zepto.js +0 -1884
- data/lib/modularis/engine.rb +0 -18
- data/lib/modularis/generators/USAGE +0 -15
- data/lib/modularis/generators/install_generator.rb +0 -54
- data/lib/modularis/generators/templates/application.html.erb +0 -46
- data/lib/modularis/generators/templates/application.html.haml +0 -31
- data/lib/modularis/generators/templates/application.html.slim +0 -28
- data/lib/modularis/version.rb +0 -3
- data/modularis.gemspec +0 -20
- data/package.json +0 -15
- data/scss/compagecss/_settings.scss +0 -1192
- data/scss/modularis.scss +0 -5
- data/scss/normalize.scss +0 -402
- data/templates/project/.gitignore +0 -44
- data/templates/project/MIT-LICENSE.txt +0 -20
- data/templates/project/config.rb +0 -49
- data/templates/project/humans.txt +0 -8
- data/templates/project/index.html +0 -124
- data/templates/project/manifest.rb +0 -42
- data/templates/project/robots.txt +0 -4
- data/templates/project/scss/app.scss +0 -48
- data/templates/upgrade/manifest.rb +0 -34
@@ -1,48 +0,0 @@
|
|
1
|
-
// Global Modularis Settings
|
2
|
-
@import "settings";
|
3
|
-
|
4
|
-
// Comment out this import if you don't want to use normalize
|
5
|
-
@import "normalize";
|
6
|
-
|
7
|
-
// Comment out this import if you are customizing you imports below
|
8
|
-
@import "modularis";
|
9
|
-
|
10
|
-
// Import specific parts of Modularis by commenting the import "modularis"
|
11
|
-
// and uncommenting what you want below. You must uncomment the following if customizing
|
12
|
-
|
13
|
-
// @import "modularis/components/global"; // *always required
|
14
|
-
// @import "modularis/components/grid";
|
15
|
-
// @import "modularis/components/visibility";
|
16
|
-
// @import "modularis/components/block-grid";
|
17
|
-
// @import "modularis/components/type";
|
18
|
-
// @import "modularis/components/buttons";
|
19
|
-
// @import "modularis/components/forms"; // *requires components/buttons
|
20
|
-
// @import "modularis/components/custom-forms"; // *requires components/buttons, components/forms
|
21
|
-
// @import "modularis/components/button-groups"; // *requires components/buttons
|
22
|
-
// @import "modularis/components/dropdown-buttons"; // *requires components/buttons
|
23
|
-
// @import "modularis/components/split-buttons"; // *requires components/buttons
|
24
|
-
// @import "modularis/components/flex-video";
|
25
|
-
// @import "modularis/components/section";
|
26
|
-
// @import "modularis/components/top-bar"; // *requires components/grid
|
27
|
-
// @import "modularis/components/orbit";
|
28
|
-
// @import "modularis/components/reveal";
|
29
|
-
// @import "modularis/components/joyride";
|
30
|
-
// @import "modularis/components/clearing";
|
31
|
-
// @import "modularis/components/alert-boxes";
|
32
|
-
// @import "modularis/components/breadcrumbs";
|
33
|
-
// @import "modularis/components/keystrokes";
|
34
|
-
// @import "modularis/components/labels";
|
35
|
-
// @import "modularis/components/inline-lists";
|
36
|
-
// @import "modularis/components/pagination";
|
37
|
-
// @import "modularis/components/panels";
|
38
|
-
// @import "modularis/components/pricing-tables";
|
39
|
-
// @import "modularis/components/progress-bars";
|
40
|
-
// @import "modularis/components/side-nav";
|
41
|
-
// @import "modularis/components/sub-nav";
|
42
|
-
// @import "modularis/components/switch";
|
43
|
-
// @import "modularis/components/magellan";
|
44
|
-
// @import "modularis/components/tables";
|
45
|
-
// @import "modularis/components/thumbs";
|
46
|
-
// @import "modularis/components/tooltips";
|
47
|
-
// @import "modularis/components/dropdown";
|
48
|
-
|
@@ -1,34 +0,0 @@
|
|
1
|
-
description 'Modularis Compass Gem'
|
2
|
-
|
3
|
-
stylesheet '../project/scss/_settings.scss', :to => '_settings.scss'
|
4
|
-
stylesheet '../project/scss/app.scss', :to => 'app.scss'
|
5
|
-
stylesheet '../../scss/normalize.scss', :to => 'normalize.scss', :media => "screen, projector, print"
|
6
|
-
|
7
|
-
def copy_js_from(relative_path, prefix_path, excludes=[])
|
8
|
-
absolute_path = File.join(File.dirname(__FILE__), relative_path, prefix_path)
|
9
|
-
js_files = Dir.glob("#{absolute_path}/*.js")
|
10
|
-
js_files.reject! {|f| excludes.include? File.basename(f)}
|
11
|
-
js_files.each do |js|
|
12
|
-
javascript "#{relative_path}/#{prefix_path}/#{File.basename(js)}",
|
13
|
-
:to => "#{prefix_path}/#{File.basename(js)}"
|
14
|
-
end
|
15
|
-
end
|
16
|
-
|
17
|
-
javascripts = copy_js_from("../../js", "modularis", ["index.js"])
|
18
|
-
copy_js_from("../../js", "vendor")
|
19
|
-
|
20
|
-
html '../project/index.html', :erb => true, :javascripts => javascripts, :version => Modularis::VERSION, :to => 'upgrade.html'
|
21
|
-
|
22
|
-
help %Q{
|
23
|
-
|
24
|
-
If you need help, email us at modularis@themepile.com or visit modularis.themepile.com"
|
25
|
-
|
26
|
-
}
|
27
|
-
|
28
|
-
welcome_message %Q{
|
29
|
-
|
30
|
-
bundle exec compass install -r themepile-modularis modularis/upgrade
|
31
|
-
|
32
|
-
Your project assets have been upgraded, w00t! It's possible there have been additional customizable settings added to Modularis so you should check out http://modularis.themepile.com/docs/gem-install.php#settings.
|
33
|
-
|
34
|
-
}
|