sensible-cinema 0.22.0 → 0.22.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/Rakefile +14 -5
- data/VERSION +1 -1
- data/change_log_with_feature_list.txt +4 -0
- data/sensible-cinema.gemspec +1 -1
- metadata +1 -1
data/Rakefile
CHANGED
|
@@ -120,23 +120,32 @@ task 'zip' do
|
|
|
120
120
|
p 'created ' + name + '.zip, and deleted its folder'
|
|
121
121
|
end
|
|
122
122
|
|
|
123
|
+
def sys arg
|
|
124
|
+
raise unless system arg
|
|
125
|
+
end
|
|
126
|
+
|
|
123
127
|
task 'deploy' do
|
|
124
128
|
name = 'sensible-cinema-' + cur_ver + ".zip"
|
|
129
|
+
=begin
|
|
125
130
|
p 'copying in'
|
|
126
|
-
|
|
131
|
+
sys("scp #{name} rdp@ilab1.cs.byu.edu:~/incoming")
|
|
127
132
|
p 'copying over'
|
|
128
133
|
# ugh ugh ughly
|
|
129
134
|
c = "ssh rdp@ilab1.cs.byu.edu \"scp ~/incoming/#{name} wilkboar@freemusicformormons.com:~/www/rogerdpackt28/sensible-cinema/releases\""
|
|
130
|
-
|
|
135
|
+
sys(c)
|
|
131
136
|
p 'linking'
|
|
132
|
-
|
|
133
|
-
|
|
137
|
+
sys("ssh rdp@ilab1.cs.byu.edu 'ssh wilkboar@freemusicformormons.com \\\"rm \\\\~/www/rogerdpackt28/sensible-cinema/releases/latest-sensible-cinema.zip\\\"'")
|
|
138
|
+
sys("ssh rdp@ilab1.cs.byu.edu 'ssh wilkboar@freemusicformormons.com \\\"ln -s \\~/www/rogerdpackt28/sensible-cinema/releases/#{name} \\\\~/www/rogerdpackt28/sensible-cinema/releases/latest-sensible-cinema.zip\\\"'")
|
|
139
|
+
=end
|
|
140
|
+
sys "ssh rdp@ilab1.cs.byu.edu 'ssh rogerdpack,sensible-cinema@shell.sourceforge.net \"mkdir /home/frs/project/s/se/sensible-cinema/#{cur_ver}\"'"
|
|
141
|
+
sys "ssh rdp@ilab1.cs.byu.edu 'scp ~/incoming/#{name} rogerdpack,sensible-cinema@frs.sourceforge.net:/home/frs/project/s/se/sensible-cinema/#{cur_ver}/#{name}'"
|
|
142
|
+
|
|
134
143
|
end
|
|
135
144
|
|
|
136
145
|
task 'gem_release' do
|
|
137
146
|
FileUtils.rm_rf 'pkg'
|
|
138
147
|
Rake::Task["build"].execute
|
|
139
|
-
|
|
148
|
+
sys("#{Gem.ruby} -S gem push pkg/sensible-cinema-#{cur_ver}.gem")
|
|
140
149
|
FileUtils.rm_rf 'pkg'
|
|
141
150
|
end
|
|
142
151
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.22.
|
|
1
|
+
0.22.1
|
data/sensible-cinema.gemspec
CHANGED