hone-pivotal-tracker 0.0.1 → 0.0.2

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.
data/Rakefile CHANGED
@@ -8,7 +8,7 @@ begin
8
8
  gem.summary = %Q{Ruby wrapper for the Pivotal Tracker API}
9
9
  gem.email = "justin.smestad@gmail.com"
10
10
  gem.homepage = "http://github.com/jsmestad/pivotal-tracker"
11
- gem.authors = ["Justin Smestad", "Josh Nichols"]
11
+ gem.authors = ["Justin Smestad", "Josh Nichols", "Terence Lee"]
12
12
  gem.add_dependency "rest-client"
13
13
  gem.add_dependency "happymapper", ">= 0.2.4"
14
14
  # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.1
1
+ 0.0.2
@@ -25,7 +25,7 @@ class Story
25
25
  builder.story do |story|
26
26
  Story.elements.each do |element_type|
27
27
  element = send(element_type.name)
28
- eval("story.#{element_type.name}('#{element.to_s}')") if element
28
+ eval("story.#{element_type.name}('#{element.to_s.gsub("'", "\'")}')") if element
29
29
  end
30
30
  end
31
31
  end
@@ -1,12 +1,15 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run `rake gemspec`
1
4
  # -*- encoding: utf-8 -*-
2
5
 
3
6
  Gem::Specification.new do |s|
4
7
  s.name = %q{pivotal-tracker}
5
- s.version = "0.0.1"
8
+ s.version = "0.0.2"
6
9
 
7
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8
11
  s.authors = ["Justin Smestad", "Josh Nichols", "Terence Lee"]
9
- s.date = %q{2009-06-07}
12
+ s.date = %q{2009-08-20}
10
13
  s.email = %q{justin.smestad@gmail.com}
11
14
  s.extra_rdoc_files = [
12
15
  "LICENSE",
@@ -36,9 +39,9 @@ Gem::Specification.new do |s|
36
39
  s.rubygems_version = %q{1.3.1}
37
40
  s.summary = %q{Ruby wrapper for the Pivotal Tracker API}
38
41
  s.test_files = [
39
- "test/extensions_test.rb",
42
+ "test/test_helper.rb",
40
43
  "test/pivotal_tracker_test.rb",
41
- "test/test_helper.rb"
44
+ "test/extensions_test.rb"
42
45
  ]
43
46
 
44
47
  if s.respond_to? :specification_version then
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hone-pivotal-tracker
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Justin Smestad
@@ -11,7 +11,7 @@ autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
13
 
14
- date: 2009-06-07 00:00:00 -07:00
14
+ date: 2009-08-20 00:00:00 -07:00
15
15
  default_executable:
16
16
  dependencies:
17
17
  - !ruby/object:Gem::Dependency
@@ -87,6 +87,6 @@ signing_key:
87
87
  specification_version: 2
88
88
  summary: Ruby wrapper for the Pivotal Tracker API
89
89
  test_files:
90
- - test/extensions_test.rb
91
- - test/pivotal_tracker_test.rb
92
90
  - test/test_helper.rb
91
+ - test/pivotal_tracker_test.rb
92
+ - test/extensions_test.rb