simple_mailing_list 0.1.2 → 0.1.3

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 39b1223c9df516aed75300ee0bb3d5a641354e38
4
- data.tar.gz: a9b0f2f462bd581c7c64b991b5ff1368b4c0080d
3
+ metadata.gz: 4c6a4b903f7caf0da003f46c3fe9f1390fe202b5
4
+ data.tar.gz: f46f14e4aecb91fe70d728eec2d3986599db60c9
5
5
  SHA512:
6
- metadata.gz: c4f9aa9426469c11650107ca8c626a2fe12bb31ab69b20ec8004d37138b7d4f164c76a3085da8851a7d0886e4b21f7ba80ae158dc13b337095c0b367847fbb10
7
- data.tar.gz: 9540ee671d4bc594d84c9db1e86c8ae721370f31811a5887f5ce4e958975eb5ae691c7f02fbc7dcb7418d09899fbba0cfcd1dacfbc8de9c6d734e8445df8061a
6
+ metadata.gz: c57b729c463e54318c99a94860711cfe52d2dd2bdffe31e7be170addfde14d64d3749a1c25e68a7ef99366ae01ecb39701313034aa58738b627eda59118bd311
7
+ data.tar.gz: cac10d679d053d00a0898429df56451c1f11ff2218bc53fe61587a07680f64feb8b2e9705fef329750a6c41ff48bfaa2b80571f4ff7afdbcbf7a70bd34ca62e3
@@ -9,6 +9,12 @@ options = {
9
9
  dir: Dir.pwd,
10
10
  log_output: true
11
11
  }
12
- options[:ARGV] += ["--", "loop"] unless options[:ARGV].index("--")
13
12
 
14
- Daemons.run("simple_mailing_list", options)
13
+ File.write("daemons_simple_mailing_list.rb", <<EOS
14
+ Dir.chdir(File.dirname(File.expand_path(__FILE__)))
15
+ SimpleMailingList::CLI.start(ARGV)
16
+ EOS
17
+ )
18
+
19
+ ARGV.push( "--", "loop_main_jobs" ) unless ARGV.index("--")
20
+ Daemons.run("daemons_simple_mailing_list.rb", options)
@@ -1,3 +1,3 @@
1
1
  module SimpleMailingList
2
- VERSION = "0.1.2"
2
+ VERSION = "0.1.3"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: simple_mailing_list
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - nodai2hITC