ugc 0.9.8 → 0.9.9

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: c9a75ddbf60a89991dce453c03827a89cc8c916d
4
- data.tar.gz: 37a1d8f2d3d85b3adf06137d8e9de2b560f91b35
3
+ metadata.gz: f06a7889aa5085023a257de1b0712bd66ca9f8a9
4
+ data.tar.gz: 5d2a13826c8232f7ecc053b5c536161d38377817
5
5
  SHA512:
6
- metadata.gz: b352d3105048c654a02254b1e4d2ebfc50efba79622e5d5851856f5a0fb382015b175d768625f4d7724bfc89729c3521c66c1533b49722b972b7053b3dbce742
7
- data.tar.gz: f8c377a1ccfa73459a9b3c7a1e24f9b463e32a1f15e8754cbc3b1baaee07d7264dde727ee6a8d2a67d49a80751a354e350a9ab823b55c2494d88e18edad82fa0
6
+ metadata.gz: 5a4e92c63acddc5d5da68f8958af02fb4cd19f9b2301ef717b02662c31e193c582c70acb53bfacc7a9d40fc353b2ddbbc469ed22bb00899e38da3caaf4241429
7
+ data.tar.gz: 9aab952303613117b9bdf048c9994afa345f367aa59869f91c201fe7748afd08545855712889eaba1b63208328b6646ee506c33bab27c091f5cc42798eb09af3
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- ugc (0.9.8)
4
+ ugc (0.9.9)
5
5
  command_line_reporter
6
6
  gli (>= 2.6)
7
7
  highline
data/README.md CHANGED
@@ -178,6 +178,12 @@ If you specify column names in your query, you will be unable to reference the r
178
178
 
179
179
  ## Release notes
180
180
 
181
+ ### 0.9.9
182
+ * Bug Fixes
183
+ 1. fix setting profile & target configurations
184
+ * Misc
185
+ 1. Add license to gem
186
+
181
187
  ### 0.9.8
182
188
  * New features
183
189
  1. logout (remove access_token)
data/bin/ugc CHANGED
@@ -43,7 +43,8 @@ pre do |global_options,command,options,args|
43
43
 
44
44
  $settings = Ugc::Settings.new global_options
45
45
  if not $settings.configured?
46
- raise "not configured"
46
+ raise "not configured" unless command.name == :profile or command.parent.name == :target
47
+ true
47
48
  elsif command.name == :login
48
49
  true
49
50
  else
@@ -1,3 +1,3 @@
1
1
  module Ugc
2
- VERSION = '0.9.8'
2
+ VERSION = '0.9.9'
3
3
  end
@@ -8,6 +8,7 @@ spec = Gem::Specification.new do |s|
8
8
  s.homepage = 'http://ganyo.com'
9
9
  s.platform = Gem::Platform::RUBY
10
10
  s.summary = 'Usergrid Command Line'
11
+ s.license = 'Apache License, Version 2.0'
11
12
  s.files = `git ls-files`.split($\)
12
13
  s.require_paths << 'lib'
13
14
  s.has_rdoc = true
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ugc
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.8
4
+ version: 0.9.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Scott Ganyo
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-10-02 00:00:00.000000000 Z
11
+ date: 2013-10-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake
@@ -152,7 +152,8 @@ files:
152
152
  - ugc.gemspec
153
153
  - ugc.rdoc
154
154
  homepage: http://ganyo.com
155
- licenses: []
155
+ licenses:
156
+ - Apache License, Version 2.0
156
157
  metadata: {}
157
158
  post_install_message:
158
159
  rdoc_options:
@@ -176,7 +177,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
176
177
  version: '0'
177
178
  requirements: []
178
179
  rubyforge_project:
179
- rubygems_version: 2.0.3
180
+ rubygems_version: 2.0.6
180
181
  signing_key:
181
182
  specification_version: 4
182
183
  summary: Usergrid Command Line