altria 0.2.0 → 0.2.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4b98f66713f2b99ebd22c0b8f196a391cfc6cb1e
4
- data.tar.gz: a15fa6c3775b36dc6c41d7a8be14a41af121c8ba
3
+ metadata.gz: 0cee1ef4c1f8c6c5135f90836a428b60d3e844ed
4
+ data.tar.gz: d87c15f1cf77482eae69b24c0bb4206f653f20a1
5
5
  SHA512:
6
- metadata.gz: ec56abf4c8e3058fd8f5448ae5760d32525bdd2069a727d034aa5f10334a12973696730fc589e0e5696a4e34417863bbdb24a042805050049fd14844a4cb2a7d
7
- data.tar.gz: 0a544b51ce1e18e99549cad616afd3b728417247078ea28f24843a2457ea05dde296021d704e4101a90e0ddfc0998ebba6d0d50b98703b185b0163e83d0d570a
6
+ metadata.gz: f538704bc09803e5a1fd81027bcb235af313eed1ef1f748516e64df5b82a3ea4290345031b01d3a3ad71a123823ddd5234d89c7a603956a37a13729b205641cc
7
+ data.tar.gz: 94f66ea322ff25e372014c2591ea3bae2dd0331f7eeae6e470f5e6403820b1d0bf506baa52cb5044af4180dd0dbedade294a6e0d58bb188b4884612520bb76a3
data/README.md CHANGED
@@ -1,5 +1,5 @@
1
1
  # Altria [![Build Status](https://travis-ci.org/r7kamura/altria.png?branch=master)](https://travis-ci.org/r7kamura/altria) [![Code Climate](https://codeclimate.com/github/r7kamura/altria.png)](https://codeclimate.com/github/r7kamura/altria) [![Coverage Status](https://coveralls.io/repos/r7kamura/altria/badge.png)](https://coveralls.io/r/r7kamura/altria)
2
- Casual CI server system.
2
+ Alternative Ruby Integration Application.
3
3
 
4
4
  ![](http://gifzo.net/f2zmQFtkzv.gif)
5
5
 
@@ -31,7 +31,7 @@ module Altria
31
31
  end
32
32
 
33
33
  def lines
34
- script.gsub("\n", ";")
34
+ script.gsub(/\r\n|\n/, ";")
35
35
  end
36
36
  end
37
37
  end
@@ -1,3 +1,3 @@
1
1
  module Altria
2
- VERSION = "0.2.0"
2
+ VERSION = "0.2.1"
3
3
  end
@@ -1,5 +1,5 @@
1
1
  require File.expand_path("../../config/environment.rb", __FILE__)
2
2
 
3
3
  Clockwork.every(1.minute, "JobEnqueueWorker") do
4
- Job.scheduled.each(&:enqueue)
4
+ Job.scheduled.each(&:enqueue_with_before_enqueues)
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: altria
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ryo Nakamura