You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
the [RailsInstaller project on github](https://github.com/railsinstaller/railsinstaller-windows.git)
25
-
into your own github account.
25
+
into your own GitHub account.
26
26
27
27
1. Open the the command prompt from the start menu and change directory to where you like to keep your projects.
28
28
29
29
1. Clone your fork of the project.
30
30
31
-
> git clone git@github.com:{{your github user name}}/railsinstaller-windows
32
-
33
-
> cd railsinstaller-windows
31
+
```bash
32
+
git clone https://github.com/{{your GitHub user name}}/railsinstaller-windows.git
33
+
cd railsinstaller-windows
34
+
```
34
35
35
36
1. Update from origin master (or 2.0.0) branch and checkout a new topic branch for your feature/bugfix.
36
37
37
-
> git checkout master
38
-
39
-
> git pull origin master
40
-
41
-
> git checkout -b mybranchname
38
+
```bash
39
+
git checkout master
40
+
git pull origin master
41
+
git checkout -b mybranchname
42
+
```
42
43
43
44
1. Bootstrap the project. From the project root run:
44
45
45
-
> rake bootstrap
46
+
```bash
47
+
rake bootstrap
48
+
```
46
49
47
50
1. Implement your new feature and/or fix your bug in your newly forked Railsinstaller project code.
48
51
@@ -54,24 +57,29 @@ built and packaged via rake tasks.
54
57
55
58
1. Next build all components onto the stage (into the stage/ directory)
56
59
57
-
> rake build
60
+
```bash
61
+
rake build
62
+
```
58
63
59
64
1. Use Inno Setup to package the installer into an executable (.exe) for testing/distribution.
60
65
61
-
> SET PATH=C:\Program Files\Inno Setup 5;%PATH%
62
-
> rake package
66
+
```bat
67
+
SET PATH=C:\Program Files\Inno Setup 5;%PATH%
68
+
rake package
69
+
```
63
70
64
71
* This creates the executable (.exe) package file in the pkg/ directory from the files staged during the build process in the stage/ directory.
65
72
66
73
* NOTE - You can run the package task with --trace for debugging output if the package fails to build or if you simply want to see what is being done as it is done).
67
74
68
75
1. Once you have verified your new feature/bug-fix, push your branch up to GitHub.
69
76
70
-
> git commit -a -m "Implemented featureX/bugfixX which <description>..."
71
-
72
-
> git push origin mybranchname
77
+
```bash
78
+
git commit -a -m "Implemented featureX/bugfixX which <description>..."
79
+
git push origin mybranchname
80
+
```
73
81
74
-
1. Now issue a [pull request](http://help.github.com/pull-requests/) on GitHub.
82
+
1. Now issue a [pull request](https://help.github.com/articles/using-pull-requests) on GitHub.
en.InstallingLabel=Installing [name], this will take a few minutes...
90
90
en.WelcomeLabel1=Welcome to [name]!
91
-
en.WelcomeLabel2=This will install [name/ver] on your computer which includes Ruby 1.9.3, Rails 3.2.14, Git, Sqlite3, DevKit, and TinyTDS with FreeTDS. Please close any console applications before continuing.
91
+
en.WelcomeLabel2=This will install [name/ver] on your computer which includes Ruby 1.9.3, Rails 3.2.18, Git, Sqlite3, DevKit, and TinyTDS with FreeTDS. Please close any console applications before continuing.
0 commit comments