Skip to content

Commit cbf9f07

Browse files
author
Strand McCutchen
committed
Change Komodo Edit to Sublime Text
1 parent 1970f7f commit cbf9f07

15 files changed

+54
-27
lines changed

sites/curriculum/deploying_to_heroku.step

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ situation "First-time setup" do
1616
step "Edit the Gemfile" do
1717
message "Heroku will run our application slightly differently than our development computer does, which requires us to make a small change to our `Gemfile`."
1818

19-
message "Open the file called `Gemfile` in KomodoEdit, or your preferred editor, and find the line containing:"
19+
message "Open the file called `Gemfile` in Sublime Text, or your preferred editor, and find the line containing:"
2020

2121
source_code :ruby, <<-RUBY
2222
gem 'sqlite3'

sites/frontend/frontend.step

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ We're going to be working with:
4242
* Git
4343
* A [GitHub](http://github.com) account of your own
4444
* The code editor of your choice.
45-
[Komodo Edit](http://www.activestate.com/komodo-edit) is a good open source option, if you don't have one yet.
45+
[Sublime Text 2](http://www.sublimetext.com/2) is a good option if you don't have one yet.
4646

4747
MARKDOWN
4848

sites/frontend/get_a_sticker.step

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ end
1414

1515
verify "you can open a local webpage in a browser" do
1616
message <<-MESSAGE
17-
Create a new file called `sticker.html` by opening it in Komodo Edit or your preferred editor.
17+
Create a new file called `sticker.html` by opening it in Sublime Text 2 or your preferred editor.
1818
Make a note of where you save it, you'll need to know in a second.
1919

2020
Fill it with the following contents:

sites/frontend/introduction_to_html.step

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ end
66
steps do
77

88
step do
9-
message "You'll need to fire up your text editor (like Komodo Edit or Text Wrangler) for these steps. We're going to make an html document!"
9+
message "You'll need to fire up your text editor (like Sublime Text 2) for these steps. We're going to make an html document!"
1010
message "Make a new file and call it <b>hello.html</b>. (In some editors, you may need to set the file type to 'HTML'; but usually, just using the .html extension will be enough.)"
1111
message "<img src='img/hello_html.png'>"
1212
message "When you see a blank page called 'hello.html', you're all set."

sites/frontend/tool_installation.step

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ steps do
1616
link "mac_os_git_installation"
1717
end
1818

19-
step "Install Komodo Edit" do
20-
a "Install Komodo Edit for Mac OS X", :href => "/installfest/install_komodo_edit_for_mac"
19+
step "Install Sublime Text 2" do
20+
a "Install Sublime Text 2 for Mac OS X", :href => "/installfest/install_sublime_text_2_for_mac"
2121
end
2222
end
2323
end
64.9 KB
Loading
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
message <<-MARKDOWN
2+
3+
We'll be using the Sublime Text 2 text editor during the workshop, though you are free to use a different editor if you prefer. It must be a plain-text editor, such as vi or Textmate.
4+
5+
MARKDOWN
6+
7+
important "Microsoft Word and other word processing programs, including TextEdit and Notepad, will not work."
8+
9+
step "Download Sublime Text 2" do
10+
message "Download the [Sublime Text 2 installer](http://c758482.r82.cf2.rackcdn.com/Sublime%20Text%202.0.1.dmg)."
11+
end
12+
13+
step 'Select "Open with DiskImageMounter" in the file save dialog' do
14+
message "This should be the default."
15+
16+
message "It will open an installer with a Sublime Text 2 icon and a picture of your Applications folder. Something like this:"
17+
18+
message "![install_sublime_text.png](install_sublime_text.png)"
19+
20+
end
21+
22+
step "Drag Sublime Text 2 into your Applications folder." do
23+
message "It will open an installer with a Sublime Text 2 icon and a picture of your Applications folder. Drag Sublime Text 2 into your Applications folder."
24+
end
25+
26+
step "Unmount the installer disk image" do
27+
message "by dragging it from your desktop to the trash"
28+
end

sites/installfest/installfest.step

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ You will be installing the following tools:
4242
* Rails
4343
* Git
4444
* Heroku
45-
* KomodoEdit (or some editor)
45+
* Sublime Text 2 (or some editor)
4646
* Various useful "ruby gems", including...
4747
* bundler
4848
* sqlite

sites/installfest/osx_lion.step

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,10 @@ step "Install Rails" do
4242
end
4343
end
4444

45-
step "Install KomodoEdit" do
46-
message "We'll be using the KomodoEdit text editor during the workshop, though you are free to use a different editor if you prefer. It must be a plain-text editor, such as vi or TextMate. Microsoft Word and other word processing programs won't work."
45+
step "Install Sublime Text 2" do
46+
message "We'll be using the Sublime Text 2 text editor during the workshop, though you are free to use a different editor if you prefer. It must be a plain-text editor, such as vi or TextMate. Microsoft Word and other word processing programs won't work."
4747

48-
important "When in doubt, use KomodoEdit."
48+
important "When in doubt, use Sublime Text 2."
4949

5050
link "install_komodo_edit_for_mac"
5151
end

sites/installfest/osx_panther.step

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,8 @@ For Tiger ONLY:
9696
MARKDOWN
9797
end
9898

99-
step "Install KomodoEdit" do
100-
link "install_komodo_edit_for_mac"
99+
step "Install Sublime Text 2" do
100+
link "install_sublime_text_2_for_mac"
101101
end
102102

103103
step "Other required libraries" do

0 commit comments

Comments
 (0)