gris 0.5.4 → 0.5.5

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: 2f18df032b26b058792ef0126cd1804e521e8069
4
- data.tar.gz: 96a39de8380c363ce3021c6f1334a203dc4d6623
3
+ metadata.gz: 806d8b12a86460223ec05be9625f91ad2f157994
4
+ data.tar.gz: 72c085d56b68769094ed4add8f503173164cc405
5
5
  SHA512:
6
- metadata.gz: bb2d11765da753b182bdbe99b10c3821e2eb3395740a0f98c6ed71b54e2fa48b7795d5131c7d44ccb2d88cfccdf2711fc6f6bf89c769cd7475892dee977e0c5d
7
- data.tar.gz: 9f8603b80f808921782d336b1f094c96fa2b9aa9256b6524589a50499233f05eaf70cc01b8237ef102a4350dd26fada60cda586d4dccb923f1514ae45c3c55cb
6
+ metadata.gz: d948115b698f722b0c7d812e5b0fbe59cf69446f97f03f75e82774bc29a60e13925efda5c438f8e34acc96274cc4a30f0d91c5bb2b0abb92c25769bceb510862
7
+ data.tar.gz: e6c409135ef90b37f2db836913ba4a657cddd71258c8b48537ff1137c1472984a93bd3537fa81a0ba4c0760c09ed11ed2214608ff162e38feb3afcc3f49ea6a2
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- gris (0.5.4)
4
+ gris (0.5.5)
5
5
  activesupport (~> 4.2, >= 4.2.0)
6
6
  chronic (~> 0.10.0)
7
7
  dalli (~> 2.7)
@@ -3,15 +3,16 @@ require File.expand_path('../config/boot', __FILE__)
3
3
 
4
4
  Dir.glob('./lib/tasks/*.rake').each { |r| import r }
5
5
 
6
- require 'rspec/core/rake_task'
7
- require 'rubocop/rake_task'
6
+ if Gris.env.development? || Gris.env.test?
7
+ require 'rspec/core/rake_task'
8
+ require 'rubocop/rake_task'
9
+ RSpec::Core::RakeTask.new
8
10
 
9
- RSpec::Core::RakeTask.new
11
+ desc 'Run RuboCop'
12
+ RuboCop::RakeTask.new(:rubocop) do |task|
13
+ task.fail_on_error = true
14
+ task.options = %w(-D --auto-correct)
15
+ end
10
16
 
11
- desc 'Run RuboCop'
12
- RuboCop::RakeTask.new(:rubocop) do |task|
13
- task.fail_on_error = true
14
- task.options = %w(-D --auto-correct)
17
+ task default: [:rubocop, :spec]
15
18
  end
16
-
17
- task default: [:rubocop, :spec]
data/lib/gris/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  module Gris
2
- VERSION = '0.5.4'
2
+ VERSION = '0.5.5'
3
3
 
4
4
  class Version
5
5
  class << self
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gris
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.4
4
+ version: 0.5.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dylan Fareed
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-09-14 00:00:00.000000000 Z
11
+ date: 2015-09-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thor