forked from sproutcore/abbot
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathRakefile
37 lines (27 loc) · 847 Bytes
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
desc "Information for setup"
task :default do
puts <<END
===================================================
**********************WARNING**********************
===================================================
It is not recommended that you install Abbot
directly from git. Unless you are hacking on Abbot
you should use the gem:
gem install sproutcore
===================================================
To get the SproutCore framework, run
git submodule init
git submodule update
To update the gem:
- Update VERSION.yml
- Update CHANGELOG
- Make sure the framework is up to date
- Add a new tag
- Build and push the gem:
gem build sproutcore.gemspec
gem push sproutcore-VERSION.gem
- Switch to JRuby and repeat:
gem build sproutcore.gemspec
gem push sproutcore-VERSION-java.gem
END
end