We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 06b9531 commit f79f9a7Copy full SHA for f79f9a7
install.rb
@@ -0,0 +1,11 @@
1
+version = ARGV.pop
2
+
3
+%w( activesupport activemodel activerecord activeresource actionpack actionmailer railties ).each do |framework|
4
+ puts "Installing #{framework}..."
5
+ `cd #{framework} && gem build #{framework}.gemspec && gem install #{framework}-#{version}.gem --no-ri --no-rdoc && rm #{framework}-#{version}.gem`
6
+end
7
8
+puts "Installing Rails..."
9
+`gem build rails.gemspec`
10
+`gem install rails-#{version}.gem --no-ri --no-rdoc `
11
+`rm rails-#{version}.gem`
0 commit comments