forked from aptana/html.ruble
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
More work on APSTUD-4221 Externalize UI strings in HTML ruble
- v3.4.1.201306062137-studio3
- v3.4.0.201304151603-studio3
- v3.3.2.201302081546-studio3
- v3.3.1.201212171919-studio3
- v3.2.2.201208201020-studio3
- v3.1.1.201306112235-titanium
- v3.1.0.201304151600-titanium
- v3.0.2.201302191606-titanium
- v3.0.1.201212271536-titanium
- v2.1.3.201210021334-titanium
- v2.1.2.201208301612-titanium
- v2.1.2.201208201549-titanium
1 parent
75f0a10
commit 208d1e0
Showing
5 changed files
with
27 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,22 @@ | ||
require 'ruble' | ||
|
||
project_template "Basic Web Template" do |t| | ||
project_template t(:basic_web_template_name) do |t| | ||
t.type = :web | ||
t.location = "templates/basic_web_template.zip" | ||
t.description = "A basic template which includes only a default index.html file" | ||
t.description = t(:basic_web_template_desc) | ||
t.replace_parameters = false | ||
end | ||
|
||
project_template "HTML5 Boilerplate" do |t| | ||
project_template t(:html5_template_name) do |t| | ||
t.type = :web | ||
t.location = "git://github.com/h5bp/html5-boilerplate.git" | ||
t.description = "Paul Irish's HTML5 Boilerplate (http://html5boilerplate.com/). Requires network access." | ||
t.description = t(:html5_template_desc) | ||
t.replace_parameters = false | ||
end | ||
|
||
project_template "HTML5 Boilerplate (Cached)" do |t| | ||
project_template t(:cached_html5_template_name) do |t| | ||
t.type = :web | ||
t.location = "templates/html5_template.zip" | ||
t.description = "Cached version of Paul Irish's HTML5 Boilerplate project for those without network access, current as of 2011-08-01." | ||
t.description = t(:cached_html5_template_desc) | ||
t.replace_parameters = false | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters