merb_signupto 0.0.5 → 0.0.6
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/lib/merb_signupto/tasks/merbtasks.rb +18 -14
- data/lib/merb_signupto/version.rb +1 -1
- metadata +1 -1
@@ -1,25 +1,29 @@
|
|
1
1
|
namespace :signupto do
|
2
|
-
desc "Create a stub
|
2
|
+
desc "Create a stub signupto config file"
|
3
3
|
task :setup do
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
4
|
+
if defined?(::Merb)
|
5
|
+
merb_root = Merb.root()
|
6
|
+
# puts "merb_root is #{merb_root}"
|
7
|
+
signupto_config = File.join(merb_root, 'config','signupto.yml')
|
8
|
+
unless File.exist?(signupto_config)
|
9
|
+
begin
|
10
|
+
File.open(signupto_config, 'w') do |f|
|
11
|
+
f.puts %{# Please fill in valid details below, and ensure
|
8
12
|
# that you have set your IP in the signup.to dashboard before you
|
9
13
|
# attempt to start sending SMS from your application
|
10
14
|
account_hash: "your_account_has"
|
11
15
|
customer_number: "your_customer_number"
|
12
16
|
}
|
13
|
-
|
14
|
-
puts "
|
15
|
-
|
16
|
-
puts "
|
17
|
-
|
17
|
+
end
|
18
|
+
puts "### [merb_signupto] config file created."
|
19
|
+
rescue => err
|
20
|
+
puts "### [merb_signupto] there was an unknown error: #{err}"
|
21
|
+
end
|
22
|
+
else
|
23
|
+
puts "### [merb_signupto] config file already exsists!!"
|
18
24
|
end
|
19
25
|
else
|
20
|
-
puts "
|
21
|
-
puts "CONFIG FILE ALREADY EXSISTS"
|
22
|
-
puts "############################"
|
26
|
+
puts "### [merb_signupto] Merb module not defined?"
|
23
27
|
end
|
24
28
|
end
|
25
|
-
end
|
29
|
+
end
|