jenkins_api_client 0.7.0 → 0.7.1

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.
@@ -9,7 +9,6 @@ rvm:
9
9
  - ruby-head
10
10
  - jruby-head
11
11
  - 1.8.7
12
- - ree
13
12
  script: bundle exec rake unit_tests
14
13
  notifications:
15
14
  email: false
@@ -4,6 +4,10 @@ CHANGELOG
4
4
  upcoming
5
5
  --------
6
6
 
7
+ v0.7.1 [30-JAN-2012]
8
+ ---------------------
9
+ * Fixed a bug (Issue #23) to remove the usage of "\" in Job.
10
+
7
11
  v0.7.0 [27-JAN-2012]
8
12
  ---------------------
9
13
  * Fixed a bug where the ignorecase was never used in view list
data/LICENCE CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License
2
2
 
3
- Copyright (c) 2012 Kannan Manickam <arangamani.kannan@gmail.com>
3
+ Copyright (c) 2012-2013 Kannan Manickam <arangamani.kannan@gmail.com>
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
data/README.md CHANGED
@@ -4,7 +4,7 @@ Jenkins API Client
4
4
  [![Dependency Status](https://gemnasium.com/arangamani/jenkins_api_client.png)](https://gemnasium.com/arangamani/jenkins_api_client)
5
5
  [![Code Climate](https://codeclimate.com/badge.png)](https://codeclimate.com/github/arangamani/jenkins_api_client)
6
6
 
7
- Copyright &copy; 2012, Kannan Manickam [![endorse](http://api.coderwall.com/arangamani/endorsecount.png)](http://coderwall.com/arangamani)
7
+ Copyright &copy; 2012-2013, Kannan Manickam [![endorse](http://api.coderwall.com/arangamani/endorsecount.png)](http://coderwall.com/arangamani)
8
8
 
9
9
  Client libraries for communicating with a Jenkins CI server and programatically managing jobs.
10
10
 
@@ -1,5 +1,5 @@
1
1
  #
2
- # Copyright (c) 2013 Kannan Manickam <arangamani.kannan@gmail.com>
2
+ # Copyright (c) 2012-2013 Kannan Manickam <arangamani.kannan@gmail.com>
3
3
  #
4
4
  # Permission is hereby granted, free of charge, to any person obtaining a copy
5
5
  # of this software and associated documentation files (the "Software"), to deal
@@ -1,5 +1,5 @@
1
1
  #
2
- # Copyright (c) 2012 Kannan Manickam <arangamani.kannan@gmail.com>
2
+ # Copyright (c) 2012-2013 Kannan Manickam <arangamani.kannan@gmail.com>
3
3
  #
4
4
  # Permission is hereby granted, free of charge, to any person obtaining a copy
5
5
  # of this software and associated documentation files (the "Software"), to deal
@@ -1,5 +1,5 @@
1
1
  #
2
- # Copyright (c) 2012 Kannan Manickam <arangamani.kannan@gmail.com>
2
+ # Copyright (c) 2012-2013 Kannan Manickam <arangamani.kannan@gmail.com>
3
3
  #
4
4
  # Permission is hereby granted, free of charge, to any person obtaining a copy
5
5
  # of this software and associated documentation files (the "Software"), to deal
@@ -1,5 +1,5 @@
1
1
  #
2
- # Copyright (c) 2012 Kannan Manickam <arangamani.kannan@gmail.com>
2
+ # Copyright (c) 2012-2013 Kannan Manickam <arangamani.kannan@gmail.com>
3
3
  #
4
4
  # Permission is hereby granted, free of charge, to any person obtaining a copy
5
5
  # of this software and associated documentation files (the "Software"), to deal
@@ -1,5 +1,5 @@
1
1
  #
2
- # Copyright (c) 2012 Kannan Manickam <arangamani.kannan@gmail.com>
2
+ # Copyright (c) 2012-2013 Kannan Manickam <arangamani.kannan@gmail.com>
3
3
  #
4
4
  # Permission is hereby granted, free of charge, to any person obtaining a copy
5
5
  # of this software and associated documentation files (the "Software"), to deal
@@ -1,5 +1,5 @@
1
1
  #
2
- # Copyright (c) 2012 Kannan Manickam <arangamani.kannan@gmail.com>
2
+ # Copyright (c) 2012-2013 Kannan Manickam <arangamani.kannan@gmail.com>
3
3
  #
4
4
  # Permission is hereby granted, free of charge, to any person obtaining a copy
5
5
  # of this software and associated documentation files (the "Software"), to deal
@@ -1,5 +1,5 @@
1
1
  #
2
- # Copyright (c) 2012 Kannan Manickam <arangamani.kannan@gmail.com>
2
+ # Copyright (c) 2012-2013 Kannan Manickam <arangamani.kannan@gmail.com>
3
3
  #
4
4
  # Permission is hereby granted, free of charge, to any person obtaining a copy
5
5
  # of this software and associated documentation files (the "Software"), to deal
@@ -1,5 +1,5 @@
1
1
  #
2
- # Copyright (c) 2012 Kannan Manickam <arangamani.kannan@gmail.com>
2
+ # Copyright (c) 2012-2013 Kannan Manickam <arangamani.kannan@gmail.com>
3
3
  #
4
4
  # Permission is hereby granted, free of charge, to any person obtaining a copy
5
5
  # of this software and associated documentation files (the "Software"), to deal
@@ -1,5 +1,5 @@
1
1
  #
2
- # Copyright (c) 2012 Kannan Manickam <arangamani.kannan@gmail.com>
2
+ # Copyright (c) 2012-2013 Kannan Manickam <arangamani.kannan@gmail.com>
3
3
  #
4
4
  # Permission is hereby granted, free of charge, to any person obtaining a copy
5
5
  # of this software and associated documentation files (the "Software"), to deal
@@ -656,26 +656,34 @@ module JenkinsApi
656
656
  param_hash[:type] = 'file'
657
657
  param.children.each do |value|
658
658
  param_hash[:name] = value.content if value.name == "name"
659
- param_hash[:description] = value.content \
660
- if value.name == "description"
659
+ if value.name == "description"
660
+ param_hash[:description] = value.content
661
+ end
661
662
  end
662
663
  when "hudson.scm.listtagsparameter.ListSubversionTagsParameterDefinition"
663
664
  param_hash[:type] = 'list_tags'
664
665
  param.children.each do |value|
665
- param_hash[:name] = value.content \
666
- if value.name == "name"
667
- param_hash[:description] = value.content \
668
- if value.name == "description"
669
- param_hash[:tags_dir] = value.content \
670
- if value.name == "tagsDir"
671
- param_hash[:tags_filter] = value.content \
672
- if value.name == "tagsFilter"
673
- param_hash[:reverse_by_date] = value.content \
674
- if value.name == "reverseByDate"
675
- param_hash[:reverse_by_name] = value.content \
676
- if value.name == "reverseByName"
677
- param_hash[:default] = value.content \
678
- if value.name == "defaultValue"
666
+ if value.name == "name"
667
+ param_hash[:name] = value.content
668
+ end
669
+ if value.name == "description"
670
+ param_hash[:description] = value.content
671
+ end
672
+ if value.name == "tagsDir"
673
+ param_hash[:tags_dir] = value.content
674
+ end
675
+ if value.name == "tagsFilter"
676
+ param_hash[:tags_filter] = value.content
677
+ end
678
+ if value.name == "reverseByDate"
679
+ param_hash[:reverse_by_date] = value.content
680
+ end
681
+ if value.name == "reverseByName"
682
+ param_hash[:reverse_by_name] = value.content
683
+ end
684
+ if value.name == "defaultValue"
685
+ param_hash[:default] = value.content
686
+ end
679
687
  param_hash[:max_tags] = value.content if value.name == "maxTags"
680
688
  param_hash[:uuid] = value.content if value.name == "uuid"
681
689
  end
@@ -1,5 +1,5 @@
1
1
  #
2
- # Copyright (c) 2012 Kannan Manickam <arangamani.kannan@gmail.com>
2
+ # Copyright (c) 2012-2013 Kannan Manickam <arangamani.kannan@gmail.com>
3
3
  #
4
4
  # Permission is hereby granted, free of charge, to any person obtaining a copy
5
5
  # of this software and associated documentation files (the "Software"), to deal
@@ -1,5 +1,5 @@
1
1
  #
2
- # Copyright (c) 2012 Kannan Manickam <arangamani.kannan@gmail.com>
2
+ # Copyright (c) 2012-2013 Kannan Manickam <arangamani.kannan@gmail.com>
3
3
  #
4
4
  # Permission is hereby granted, free of charge, to any person obtaining a copy
5
5
  # of this software and associated documentation files (the "Software"), to deal
@@ -1,5 +1,5 @@
1
1
  #
2
- # Copyright (c) 2012 Kannan Manickam <arangamani.kannan@gmail.com>
2
+ # Copyright (c) 2012-2013 Kannan Manickam <arangamani.kannan@gmail.com>
3
3
  #
4
4
  # Permission is hereby granted, free of charge, to any person obtaining a copy
5
5
  # of this software and associated documentation files (the "Software"), to deal
@@ -24,7 +24,7 @@ module JenkinsApi
24
24
  class Client
25
25
  MAJOR = 0
26
26
  MINOR = 7
27
- TINY = 0
27
+ TINY = 1
28
28
  PRE = nil
29
29
  VERSION = [MAJOR, MINOR, TINY, PRE].compact.join('.')
30
30
  end
@@ -1,5 +1,5 @@
1
1
  #
2
- # Copyright (c) 2012 Kannan Manickam <arangamani.kannan@gmail.com>
2
+ # Copyright (c) 2012-2013 Kannan Manickam <arangamani.kannan@gmail.com>
3
3
  #
4
4
  # Permission is hereby granted, free of charge, to any person obtaining a copy
5
5
  # of this software and associated documentation files (the "Software"), to deal
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jenkins_api_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.0
4
+ version: 0.7.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-01-27 00:00:00.000000000 Z
12
+ date: 2013-01-30 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: nokogiri