crystalline 1.3.0 → 1.3.1

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG CHANGED
@@ -1,3 +1,7 @@
1
+ 1.3.1:
2
+ - Patch around a GLI weirdness, wherein not setting an option sometimes
3
+ results in trying to call #gsub on `nil`
4
+
1
5
  1.3.0:
2
6
  - Fix some weirdness in Crystalline::Spec
3
7
  - Make Coveralls only activate when the environment "COVERALLS" is set
data/bin/crystallize CHANGED
@@ -11,7 +11,7 @@ end
11
11
 
12
12
  include GLI::App
13
13
 
14
- program_desc ''
14
+ program_desc 'A tool for scaffolding and managing rubygem development and deployment'
15
15
 
16
16
  version Crystalline::VERSION
17
17
 
data/lib/crystalline.rb CHANGED
@@ -1,4 +1,6 @@
1
1
  require "crystalline/version"
2
2
 
3
+ require 'gli/ext/command'
4
+
3
5
  require 'crystalline/generators'
4
6
  require 'crystalline/gli_helpers'
@@ -1,3 +1,3 @@
1
1
  module Crystalline
2
- VERSION = "1.3.0"
2
+ VERSION = "1.3.1"
3
3
  end
@@ -0,0 +1,10 @@
1
+ module GLI
2
+ class Command < CommandLineToken
3
+ # fix a bug in GLI
4
+ alias old_has_option? has_option?
5
+ def has_option?(option)
6
+ return false if option.nil?
7
+ old_has_option?(option)
8
+ end
9
+ end
10
+ end
metadata CHANGED
@@ -2,14 +2,14 @@
2
2
  name: crystalline
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 1.3.0
5
+ version: 1.3.1
6
6
  platform: ruby
7
7
  authors:
8
8
  - Joe Fredette
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-05-16 00:00:00.000000000 Z
12
+ date: 2013-05-17 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  type: :runtime
@@ -251,6 +251,8 @@ files:
251
251
  bGliL2NyeXN0YWxsaW5lL3RlbXBsYXRlcy90cmF2aXMueW1sLmVyYg==
252
252
  - !binary |-
253
253
  bGliL2NyeXN0YWxsaW5lL3ZlcnNpb24ucmI=
254
+ - !binary |-
255
+ bGliL2dsaS9leHQvY29tbWFuZC5yYg==
254
256
  homepage: ''
255
257
  licenses: []
256
258
  post_install_message: