youtrack_on_rails 0.0.5 → 0.0.6
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
YjExNTNjODc3NzE1ZTIzNThiYjMyZTAyNzQxYTEwNjE4ZGRmMGVkNw==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
ZDgwNTE2Y2E0MDk4MjEzMGY3ODJmZjk2NDA2ODQ0ZGE0ODc1ZTZlZg==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
YmFhYmFmNWZhNmJhNDZiZDQ2OGZiZGIwMGRhNzMxOGJhMGUzMzU4ODg5YTJk
|
10
|
+
MmVmOTgwMzViMmM5ZGI2OGNkZWQyZjliM2Y5OWE4N2MyMTA3MWMwMTY3NTQw
|
11
|
+
N2FkMTQ2NTJhM2U5Y2MwYzM3ZWMyMGFhYmFjNTA3NWVjNjJjMTU=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
M2NlNzlkMmQ3ZDIxYmUxNTgwMzg5ZGFiZDNhYjczYjg1NjJjMzNmNWI4Zjcy
|
14
|
+
MDU4OGYyMjlhNjhhMTEwMzY2ZTJhNWZkN2E2YzY0NWE2NjM4NDljYmQ2Nzg0
|
15
|
+
YTkyNDI3YzZlMDBlZTZkYTY3MTgzNzA0MmE0YTM1YzEzYjVhNWE=
|
@@ -5,6 +5,7 @@ module YoutrackOnRails
|
|
5
5
|
autoload :Get, 'youtrack_on_rails/requests/get'
|
6
6
|
autoload :Post, 'youtrack_on_rails/requests/post'
|
7
7
|
|
8
|
+
autoload :CreateIssue, 'youtrack_on_rails/requests/create_issue'
|
8
9
|
autoload :ListProjects, 'youtrack_on_rails/requests/list_projects'
|
9
10
|
autoload :ListIssues, 'youtrack_on_rails/requests/list_issues'
|
10
11
|
autoload :SignIn, 'youtrack_on_rails/requests/sign_in'
|
@@ -5,6 +5,7 @@ module YoutrackOnRails
|
|
5
5
|
autoload :SimpleResponse, 'youtrack_on_rails/responses/simple_response'
|
6
6
|
autoload :CollectionResponse, 'youtrack_on_rails/responses/collection_response'
|
7
7
|
|
8
|
+
autoload :CreateIssue, 'youtrack_on_rails/responses/create_issue'
|
8
9
|
autoload :ListProjects, 'youtrack_on_rails/responses/list_projects'
|
9
10
|
autoload :ListIssues, 'youtrack_on_rails/responses/list_issues'
|
10
11
|
autoload :SignIn, 'youtrack_on_rails/responses/sign_in'
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: youtrack_on_rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- stevo
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2014-02-
|
12
|
+
date: 2014-02-21 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: nokogiri
|
@@ -50,6 +50,7 @@ files:
|
|
50
50
|
- lib/youtrack_on_rails/connection.rb
|
51
51
|
- lib/youtrack_on_rails/requests.rb
|
52
52
|
- lib/youtrack_on_rails/requests/base.rb
|
53
|
+
- lib/youtrack_on_rails/requests/create_issue.rb
|
53
54
|
- lib/youtrack_on_rails/requests/get.rb
|
54
55
|
- lib/youtrack_on_rails/requests/list_issues.rb
|
55
56
|
- lib/youtrack_on_rails/requests/list_projects.rb
|
@@ -58,6 +59,7 @@ files:
|
|
58
59
|
- lib/youtrack_on_rails/responses.rb
|
59
60
|
- lib/youtrack_on_rails/responses/base.rb
|
60
61
|
- lib/youtrack_on_rails/responses/collection_response.rb
|
62
|
+
- lib/youtrack_on_rails/responses/create_issue.rb
|
61
63
|
- lib/youtrack_on_rails/responses/list_issues.rb
|
62
64
|
- lib/youtrack_on_rails/responses/list_projects.rb
|
63
65
|
- lib/youtrack_on_rails/responses/sign_in.rb
|