@@ -9,7 +9,7 @@ Gem::Specification.new do |s|
99
1010 s . required_rubygems_version = Gem ::Requirement . new ( ">= 0" ) if s . respond_to? :required_rubygems_version=
1111 s . authors = [ "Jan Schwenzien" , "Waldemar Kusnezow" , "Joel Courtney" ]
12- s . date = "2014-01-30 "
12+ s . date = "2014-04-23 "
1313 s . description = "Ruby wrapper for the Pipedrive API"
1414 s . email = "jan@general-scripting.com"
1515 s . extra_rdoc_files = [
@@ -23,39 +23,41 @@ Gem::Specification.new do |s|
2323 "Rakefile" ,
2424 "VERSION" ,
2525 "lib/pipedrive-ruby.rb" ,
26- "lib/pipedrive/base.rb" ,
27- "lib/pipedrive/activity.rb" ,
2826 "lib/pipedrive/activity-type.rb" ,
27+ "lib/pipedrive/activity.rb" ,
2928 "lib/pipedrive/authorization.rb" ,
29+ "lib/pipedrive/base.rb" ,
3030 "lib/pipedrive/currency.rb" ,
31- "lib/pipedrive/deal.rb" ,
3231 "lib/pipedrive/deal-field.rb" ,
32+ "lib/pipedrive/deal.rb" ,
3333 "lib/pipedrive/file.rb" ,
3434 "lib/pipedrive/filter.rb" ,
35+ "lib/pipedrive/goal.rb" ,
3536 "lib/pipedrive/note.rb" ,
36- "lib/pipedrive/organization.rb" ,
37- "lib/pipedrive/person.rb" ,
3837 "lib/pipedrive/organization-field.rb" ,
39- "lib/pipedrive/person-field .rb" ,
38+ "lib/pipedrive/organization .rb" ,
4039 "lib/pipedrive/permission-set.rb" ,
40+ "lib/pipedrive/person-field.rb" ,
41+ "lib/pipedrive/person.rb" ,
4142 "lib/pipedrive/pipeline.rb" ,
42- "lib/pipedrive/product.rb" ,
4343 "lib/pipedrive/product-field.rb" ,
44+ "lib/pipedrive/product.rb" ,
45+ "lib/pipedrive/push-notification.rb" ,
4446 "lib/pipedrive/role.rb" ,
4547 "lib/pipedrive/search-result.rb" ,
4648 "lib/pipedrive/stage.rb" ,
47- "lib/pipedrive/user.rb" ,
48- "lib/pipedrive/user-setting.rb" ,
49- "lib/pipedrive/goal.rb" ,
5049 "lib/pipedrive/user-connection.rb" ,
51- "lib/pipedrive/push-notification.rb" ,
50+ "lib/pipedrive/user-setting.rb" ,
51+ "lib/pipedrive/user.rb" ,
5252 "pipedrive-ruby.gemspec" ,
5353 "test/data/create_deal_body.json" ,
54+ "test/data/create_note_body.json" ,
5455 "test/data/create_organization_body.json" ,
5556 "test/data/create_person_body.json" ,
5657 "test/helper.rb" ,
5758 "test/test_pipedrive_authentication.rb" ,
5859 "test/test_pipedrive_deal.rb" ,
60+ "test/test_pipedrive_note.rb" ,
5961 "test/test_pipedrive_organization.rb" ,
6062 "test/test_pipedrive_person.rb"
6163 ]
@@ -73,6 +75,7 @@ Gem::Specification.new do |s|
7375 s . add_runtime_dependency ( %q<json> , [ ">= 1.7.7" ] )
7476 s . add_runtime_dependency ( %q<multi_xml> , [ ">= 0.5.2" ] )
7577 s . add_runtime_dependency ( %q<webmock> , [ ">= 0" ] )
78+ s . add_runtime_dependency ( %q<coveralls> , [ ">= 0" ] )
7679 s . add_development_dependency ( %q<shoulda> , [ ">= 0" ] )
7780 s . add_development_dependency ( %q<rdoc> , [ "~> 3.12" ] )
7881 s . add_development_dependency ( %q<bundler> , [ ">= 1.0.0" ] )
@@ -83,6 +86,7 @@ Gem::Specification.new do |s|
8386 s . add_dependency ( %q<json> , [ ">= 1.7.7" ] )
8487 s . add_dependency ( %q<multi_xml> , [ ">= 0.5.2" ] )
8588 s . add_dependency ( %q<webmock> , [ ">= 0" ] )
89+ s . add_dependency ( %q<coveralls> , [ ">= 0" ] )
8690 s . add_dependency ( %q<shoulda> , [ ">= 0" ] )
8791 s . add_dependency ( %q<rdoc> , [ "~> 3.12" ] )
8892 s . add_dependency ( %q<bundler> , [ ">= 1.0.0" ] )
@@ -94,6 +98,7 @@ Gem::Specification.new do |s|
9498 s . add_dependency ( %q<json> , [ ">= 1.7.7" ] )
9599 s . add_dependency ( %q<multi_xml> , [ ">= 0.5.2" ] )
96100 s . add_dependency ( %q<webmock> , [ ">= 0" ] )
101+ s . add_dependency ( %q<coveralls> , [ ">= 0" ] )
97102 s . add_dependency ( %q<shoulda> , [ ">= 0" ] )
98103 s . add_dependency ( %q<rdoc> , [ "~> 3.12" ] )
99104 s . add_dependency ( %q<bundler> , [ ">= 1.0.0" ] )
0 commit comments