pivotal 0.0.4 → 0.0.5
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/pivotal/models/story.rb +1 -1
- data/lib/pivotal/version.rb +1 -1
- metadata +3 -2
data/lib/pivotal/models/story.rb
CHANGED
@@ -5,7 +5,7 @@ class Pivotal::Client::Story < Cistern::Model
|
|
5
5
|
attribute :created_at, type: :date
|
6
6
|
attribute :current_state
|
7
7
|
attribute :description
|
8
|
-
attribute :labels
|
8
|
+
attribute :labels, parser: lambda { |v,opts| (v || "").split(",") }
|
9
9
|
attribute :name
|
10
10
|
attribute :owned_by
|
11
11
|
attribute :project_id, type: :integer
|
data/lib/pivotal/version.rb
CHANGED
metadata
CHANGED
@@ -2,14 +2,14 @@
|
|
2
2
|
name: pivotal
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease:
|
5
|
-
version: 0.0.
|
5
|
+
version: 0.0.5
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Josh Lane & Thom Mahoney
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-
|
12
|
+
date: 2013-07-22 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: cistern
|
@@ -149,3 +149,4 @@ summary: A client for Pivotal Tracker using cistern and nokogiri.
|
|
149
149
|
test_files:
|
150
150
|
- spec/project_spec.rb
|
151
151
|
- spec/spec_helper.rb
|
152
|
+
has_rdoc:
|