turquoise 0.0.7 → 0.0.8
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/turquoise/version.rb +1 -1
- data/templates/project/manifest.rb +13 -0
- data/templates/project/partials/_base.scss +3 -1
- data/templates/project/partials/layouts/_base.scss +0 -1
- data/templates/project/partials/layouts/_three_col_1.scss +0 -0
- data/templates/project/partials/layouts/_three_col_2.scss +0 -0
- data/templates/project/partials/pages/_home.scss +0 -0
- data/turquoise.gemspec +1 -1
- metadata +6 -3
data/lib/turquoise/version.rb
CHANGED
|
@@ -2,15 +2,28 @@ description "Turquoise framework"
|
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
# Make sure you list all the project template files here in the manifest.
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
# Stylesheets
|
|
5
8
|
discover :stylesheets
|
|
6
9
|
|
|
10
|
+
# Javascripts
|
|
7
11
|
Dir.glob("#{File.dirname(__FILE__)}/javascripts/**/*.js").each do |js_file|
|
|
8
12
|
javascript js_file.sub("#{File.dirname(__FILE__)}/", ""), :to => js_file.sub("#{File.dirname(__FILE__)}/javascripts/", "")
|
|
9
13
|
end
|
|
14
|
+
|
|
15
|
+
# Images
|
|
10
16
|
Dir.glob("#{File.dirname(__FILE__)}/images/**/*.*").each do |image_file|
|
|
11
17
|
image image_file.sub("#{File.dirname(__FILE__)}/", ""), :to => image_file.sub("#{File.dirname(__FILE__)}/images/", "")
|
|
12
18
|
end
|
|
13
19
|
|
|
20
|
+
# App files for a rails app
|
|
21
|
+
Dir.glob("#{File.dirname(__FILE__)}/app/**/*.*").each do |tpl_file|
|
|
22
|
+
file tpl_file.sub("#{File.dirname(__FILE__)}/", ""), :to => tpl_file.sub("#{File.dirname(__FILE__)}/", "")
|
|
23
|
+
end
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
14
27
|
help %Q{
|
|
15
28
|
|
|
16
29
|
This extension outputs a number of files that are laid out in parallel to the optimal file structure of a Rails project.
|
|
@@ -5,6 +5,8 @@
|
|
|
5
5
|
|
|
6
6
|
//LAYOUT
|
|
7
7
|
@import "partials/layouts/base";
|
|
8
|
+
@import "partials/layouts/two_col_1";
|
|
9
|
+
@import "partials/layouts/two_col_2";
|
|
8
10
|
@import "partials/layouts/three_col_1";
|
|
9
11
|
@import "partials/layouts/three_col_2";
|
|
10
12
|
|
|
@@ -16,7 +18,7 @@
|
|
|
16
18
|
@import "partials/utilities/typography";
|
|
17
19
|
@import "partials/utilities/forms";
|
|
18
20
|
@import "partials/utilities/links";
|
|
19
|
-
@import "partials/utilities/link-
|
|
21
|
+
@import "partials/utilities/link-icons";
|
|
20
22
|
@import "partials/utilities/lists";
|
|
21
23
|
@import "partials/utilities/interaction";
|
|
22
24
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
data/turquoise.gemspec
CHANGED
|
@@ -8,7 +8,7 @@ Gem::Specification.new do |s|
|
|
|
8
8
|
s.platform = Gem::Platform::RUBY
|
|
9
9
|
s.authors = ["Volkan Unsal"]
|
|
10
10
|
s.email = ["spocksplanet@gmail.com"]
|
|
11
|
-
s.homepage = ""
|
|
11
|
+
s.homepage = "http://websava.com"
|
|
12
12
|
s.summary = %q{This is a custom extension for the Compass stylesheet authoring framework.}
|
|
13
13
|
s.description = %q{Creates the optimal file structure to start a new Rails project.}
|
|
14
14
|
s.add_dependency "compass"
|
metadata
CHANGED
|
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
|
5
5
|
segments:
|
|
6
6
|
- 0
|
|
7
7
|
- 0
|
|
8
|
-
-
|
|
9
|
-
version: 0.0.
|
|
8
|
+
- 8
|
|
9
|
+
version: 0.0.8
|
|
10
10
|
platform: ruby
|
|
11
11
|
authors:
|
|
12
12
|
- Volkan Unsal
|
|
@@ -97,9 +97,12 @@ files:
|
|
|
97
97
|
- templates/project/manifest.rb
|
|
98
98
|
- templates/project/partials/_base.scss
|
|
99
99
|
- templates/project/partials/layouts/_base.scss
|
|
100
|
+
- templates/project/partials/layouts/_three_col_1.scss
|
|
101
|
+
- templates/project/partials/layouts/_three_col_2.scss
|
|
100
102
|
- templates/project/partials/layouts/_two_col_1.scss
|
|
101
103
|
- templates/project/partials/layouts/_two_col_2.scss
|
|
102
104
|
- templates/project/partials/pages/_base.scss
|
|
105
|
+
- templates/project/partials/pages/_home.scss
|
|
103
106
|
- templates/project/partials/shared/_footer.scss
|
|
104
107
|
- templates/project/partials/shared/_header.scss
|
|
105
108
|
- templates/project/partials/shared/_navigation.scss
|
|
@@ -122,7 +125,7 @@ files:
|
|
|
122
125
|
- templates/project/screen.scss
|
|
123
126
|
- turquoise.gemspec
|
|
124
127
|
has_rdoc: true
|
|
125
|
-
homepage:
|
|
128
|
+
homepage: http://websava.com
|
|
126
129
|
licenses: []
|
|
127
130
|
|
|
128
131
|
post_install_message:
|