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 next few sections detail the core components that make up RailsInstaller.
30
+
31
+
### Ruby 3.1.2 on Windows
32
+
33
+
RubyInstaller is a self contained package installer which installs Ruby and RubyGems on a windows system, head over to [http://rubyinstaller.org/](http://rubyinstaller.org/) for more information.
34
+
35
+
### Development Kit (DevKit)
36
+
37
+
A MSYS/MinGW based toolkit that enables RailsInstaller to build native C/C++ packages, both for Ruby and gems. DevKit is built and maintained by the wonderful folks over at the RubyInstaller project.
38
+
39
+
### Packaging/Installer
40
+
41
+
We are using [Inno Setup](http://www.jrsoftware.org/isinfo.php"Inno Setup"), a free installer for Windows programs.
42
+
11
43
## How to Contribute
12
44
45
+
The information below is out of date and will be updated soon.
46
+
13
47
RailsInstaller project code repository is located on GitHub and is bootstrapped,
14
48
built and packaged via rake tasks.
15
49
@@ -65,8 +99,9 @@ built and packaged via rake tasks.
65
99
66
100
1. Use Inno Setup to package the installer into an executable (.exe) for testing/distribution.
67
101
68
-
```bat
69
-
SET PATH=C:\Program Files\Inno Setup 5;%PATH%
102
+
Add iscc.exe in your PATH
103
+
```
104
+
C:\Program Files (x86)\Inno Setup 6\ISCC.exe
70
105
rake package
71
106
```
72
107
@@ -82,24 +117,3 @@ built and packaged via rake tasks.
82
117
```
83
118
84
119
1. Now issue a [pull request](https://help.github.com/articles/using-pull-requests) on GitHub.
85
-
86
-
# RailsInstaller Components
87
-
88
-
The next few sections detail the core components that make up RailsInstaller.
89
-
90
-
### Ruby 2.2.3 on Windows
91
-
92
-
RubyInstaller is a self contained package installer which installs Ruby and RubyGems on a windows system, head over to [http://rubyinstaller.org/](http://rubyinstaller.org/) for more information.
93
-
94
-
### Development Kit (DevKit)
95
-
96
-
A MSYS/MinGW based toolkit that enables RailsInstaller to build native C/C++ packages, both for Ruby and gems. DevKit is built and maintained by the wonderful folks over at the RubyInstaller project.
97
-
98
-
### Git
99
-
100
-
The git version that is bundled into RailsInstaller is
101
-
[msysgit](http://msysgit.github.io/).
102
-
103
-
### Packaging/Installer
104
-
105
-
We are using [Inno Setup](http://www.jrsoftware.org/isinfo.php "Inno Setup"), a free installer for Windows programs.
0 commit comments