railsonfire 0.2.16 → 0.2.17
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/bin/railsonfire +3 -29
- data/railsonfire.gemspec +1 -1
- metadata +1 -1
data/bin/railsonfire
CHANGED
@@ -1,31 +1,5 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
|
-
$LOAD_PATH.unshift File.join(File.dirname(__FILE__), '..', 'lib')
|
3
|
-
require 'rubygems'
|
4
|
-
require 'railsonfire'
|
5
|
-
require 'railsonfire/helpers/base'
|
6
|
-
require 'gems'
|
7
2
|
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
e06n1sHu3CgeCinOhdDVNS5r8y0neZrABpHnq9rizk49l6U/KBqmebZL5i90RD/8
|
12
|
-
366UHAYDMAN3ensw8Fb1il3mBwVpdAFsTfmu1LyriJXOOGJKD3zeHzFaCbLqjyzL
|
13
|
-
sHtn9ve/nMUNI/V4z28sWSoP4gLlZD0yQd1loWYb9usjXPlL4ZqKELhn70bu+Omm
|
14
|
-
AxUaO2u0fk9ixurx9nIsydQWTRI3h8xLO1pfx/TcG3QDEhp3trD0KFNVU1a2UvCQ
|
15
|
-
Ynhi9CV9Q9alALkNpKGyhBEMuS4HNtcrVQIDAQAB
|
16
|
-
-----END RSA PUBLIC KEY-----
|
17
|
-
eos
|
18
|
-
|
19
|
-
include Railsonfire::Helper
|
20
|
-
|
21
|
-
begin
|
22
|
-
puts 'We renamend to Codeship'
|
23
|
-
puts ' You can configure all your projects through our website now at https://www.codeship.io. Give it a try, it is really easy and powerful.'
|
24
|
-
puts ' If you have any questions send an email to support@codeship.io so we can help you.'
|
25
|
-
rescue Exception => e
|
26
|
-
if e.class != SystemExit && e.class != Interrupt
|
27
|
-
puts ""
|
28
|
-
puts "Sorry, an Error occured and we were informed. Please try again."
|
29
|
-
notify(e.class, "Cought Exception with: #{e.class}", {:backtrace => e.backtrace, :error_class => e.class, :error_message => e.message})
|
30
|
-
end
|
31
|
-
end
|
3
|
+
puts 'We renamend to Codeship'
|
4
|
+
puts ' You can configure all your projects through our website now at https://www.codeship.io. Give it a try, it is really easy and powerful.'
|
5
|
+
puts ' If you have any questions send an email to support@codeship.io so we can help you.'
|
data/railsonfire.gemspec
CHANGED