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.
@@ -1,25 +1,29 @@
1
1
  namespace :signupto do
2
- desc "Create a stub uProduce config file"
2
+ desc "Create a stub signupto config file"
3
3
  task :setup do
4
- uproduce_config = File.join(MERB_ROOT, 'config','signupto.yml')
5
- unless File.exist?(uproduce_config)
6
- File.open(uproduce_config, 'w') do |f|
7
- f.puts %{# Please fill in valid details below, and ensure
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
- puts "CONFIG FILE HAS BEEN CREATED"
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
@@ -2,7 +2,7 @@ module MerbSignupto
2
2
  module Version #:nodoc:
3
3
  MAJOR = 0
4
4
  MINOR = 0
5
- TINY = 5
5
+ TINY = 6
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
8
8
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: merb_signupto
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
4
+ version: 0.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tim Perrett