itriagetestrail 0.3.1 → 0.3.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 44ad143da93506b4a1d678405bf4bfadc376434f
4
- data.tar.gz: 7fafe7e9215c948e47740c1cadb8268640f5795b
3
+ metadata.gz: a5999d17c9bd4b994b931ba0157fa66d499fad19
4
+ data.tar.gz: 630446a193f0acc84b9eb35acfaec4e2682dacc0
5
5
  SHA512:
6
- metadata.gz: 98adeed205e172d515937130a926ed6933d196711a571d71bdc03d59b30a398596aa0e1845b9d026d5a4919fa9287cca7db6f3837526dd85e1830cf39de73fee
7
- data.tar.gz: 4acac7a2c65415fabaeb2c38248d38b8503ba59a8607c5d6850672bb76ca59176d02216155255c181507bf51776e498b1345f7704ab2d04aabee301b368b5d37
6
+ metadata.gz: fb22f26e08e3c83c455a00dc4d470e98ab1bf22dbda8812400b9fa3b2013f7dab0889c6a20d7c89be68ca78ad2fff6bac0cb3b2cb4d9f567641b3cad543855a1
7
+ data.tar.gz: 5eea98e5d836ab147220d6b7dd5f65b14ac99f162805af88ba0970ce5cc1c51535139480795e75c4772f1010c23ff3d9a6c5df0b174c71c6bd1abce6bba27726
@@ -1,3 +1,3 @@
1
1
  module Itriagetestrail
2
- VERSION = '0.3.1'
2
+ VERSION = '0.3.2'
3
3
  end
@@ -154,13 +154,13 @@ module Itriagetestrail
154
154
 
155
155
  # determine which quarter we are in
156
156
  if month <= 3
157
- time_zone.utc_to_local(Time.utc(current_year, 3, 31)).strftime('%s')
157
+ Time.utc(current_year, 3, 31).strftime('%s')
158
158
  elsif month <= 6
159
- time_zone.utc_to_local(Time.utc(current_year, 6, 30)).strftime('%s')
159
+ Time.utc(current_year, 6, 30).strftime('%s')
160
160
  elsif month <= 9
161
- time_zone.utc_to_local(Time.utc(current_year, 9, 30)).strftime('%s')
161
+ Time.utc(current_year, 9, 30).strftime('%s')
162
162
  else
163
- time_zone.utc_to_local(Time.utc(current_year, 12, 31)).strftime('%s')
163
+ Time.new(current_year, 12, 31).strftime('%s')
164
164
  end
165
165
  end
166
166
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: itriagetestrail
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.1
4
+ version: 0.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - a801069