IcentrisJira 0.0.6 → 0.0.7

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.
checksums.yaml CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- MzFlMzdkMmRkZmI1MjgyMjEzZDExMDczZWNjZjAzOTA4NThmNGRiZQ==
4
+ MjQxYjMwZDIxOWE1ZmEyMDFjYjBmM2U1ODUwNWUwYzMyYzA4NTJlNg==
5
5
  data.tar.gz: !binary |-
6
- ZDFjYTQ5ZGU1NzUwMmU4OGQzOWFjMzEzYmUwM2M5NmI2YTdjMDEwMQ==
6
+ YzRlM2QzMzdkNDBmMWRhODFkMmRiYTY3MThkYWUzODUyZjI1ZTAyZA==
7
7
  !binary "U0hBNTEy":
8
8
  metadata.gz: !binary |-
9
- NzVmYmM1MjQ3MjcxNDk4ZjZjYjNhZWZkMGEzZjg2NDA3ZDg1N2I3OThhNWY1
10
- ZWYzNDU0ZGM4OGNkODQ4MjYyNTA1NWEyNTI3NWUwMmE1ZWQ3OWYyNDk1NDlk
11
- MzZhZDVmMDhkZDNhNzNhMTQ0NDFmMGJjMDAyNDY1YjUwZWU1MmQ=
9
+ ZDRiOTE4NjdjZWJhYzhmMzI0MTU1ZWZmZWNhYzkwODJiNTc2NjIzMjU3MjQy
10
+ NzgyZDJlZDQ2YmY1NDUzMTQ4YTc4ZDE5NjlkZDg0NjcwOTk2YzdjY2Y4Njk2
11
+ NDg5MDZjOWE0NWQzM2ZiMmZkOWJhODFjZTI1NDQyZmM0OWIwNzE=
12
12
  data.tar.gz: !binary |-
13
- YmQ2NWNlNDg3MmI4ODkzZTBkMjVkZmMzYTk1YzFhMmJhOTY2MTMzY2NjMTk0
14
- ZWU5Y2YzMjMxOTU4MmQ0Y2RlMGRjMWRlZDgyMGExZjZlZTY3MTBmMjE0ZjNm
15
- YTc1NDg4M2IzY2M4NTMwNjU5OTBhOTE1NTUxZGU4ZWQ4YzJlZjg=
13
+ NGRkNTIyMTQyNmQ2YTMyMThmMWY2NmEyOTJiOWM2ZmU1OTQ5NTk5MGI0NzM2
14
+ YWQwMjZmMDM5NWJmZjhlZTViYWY1MmY4NWQzZjdmYjE0Njc4NTg2NTNkODA1
15
+ OGY3YzI4NWQ0MTk3OWE5OTgyYmE0YmU0ODI1MjE5YmM4MTNjZmY=
data/IcentrisJira.gemspec CHANGED
@@ -8,8 +8,8 @@ Gem::Specification.new do |spec|
8
8
  spec.version = IcentrisJira::VERSION
9
9
  spec.authors = ["Sai Ponduru"]
10
10
  spec.email = ["sai_ponduru@yahoo.com"]
11
- spec.description = %q{Authenticate and get user information from Jira}
12
- spec.summary = %q{Icentris Jira functions}
11
+ spec.description = %q{Authenticate and get information from Jira}
12
+ spec.summary = %q{Talk to Jira REST API using basic authentication}
13
13
  spec.homepage = ""
14
14
  spec.license = "MIT"
15
15
 
data/README.md CHANGED
@@ -19,6 +19,18 @@ Or install it yourself as:
19
19
  ## Usage
20
20
 
21
21
  TODO: Write usage instructions here
22
+ There is only 1 method in this gem - getJSON
23
+
24
+ Usage:
25
+ IcentrisJira::getJSON jira_rest_api_url, username, password
26
+
27
+ jira_rest_api_url will be different for different purposes.
28
+
29
+ For example - To Authenticate, jira_rest_api_url should be:
30
+ 'https://jira2.icentris.com/jira/rest/api/2/user?username=' + username
31
+
32
+ So the call will look like this:
33
+ jira_response = IcentrisJira::getJSON('https://jira2.icentris.com/jira/rest/api/2/user?username=' + username, username, password)
22
34
 
23
35
  ## Contributing
24
36
 
@@ -1,3 +1,3 @@
1
1
  module IcentrisJira
2
- VERSION = "0.0.6"
2
+ VERSION = "0.0.7"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: IcentrisJira
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.6
4
+ version: 0.0.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sai Ponduru
@@ -38,7 +38,7 @@ dependencies:
38
38
  - - ! '>='
39
39
  - !ruby/object:Gem::Version
40
40
  version: '0'
41
- description: Authenticate and get user information from Jira
41
+ description: Authenticate and get information from Jira
42
42
  email:
43
43
  - sai_ponduru@yahoo.com
44
44
  executables: []
@@ -76,5 +76,5 @@ rubyforge_project:
76
76
  rubygems_version: 2.0.3
77
77
  signing_key:
78
78
  specification_version: 4
79
- summary: Icentris Jira functions
79
+ summary: Talk to Jira REST API using basic authentication
80
80
  test_files: []