rosette-client 1.0.4 → 1.0.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 873bff79274d22afa3b46578f186b49fdfca529b
4
- data.tar.gz: deacde24cd5694c4429c7226c1159411e131a658
3
+ metadata.gz: 936ddc8965abb6e1cfde1f50ea5c93e3a83692cc
4
+ data.tar.gz: a40f035e3f0b359ee1ecb9d0eef706de16b95bfc
5
5
  SHA512:
6
- metadata.gz: 7a7b72b4788c3178f5ea87b27608e2ecf588edf26600eb9aa56e2d2c52e7d33ebe39b20100c7ec71d828b71cc33b665833910e20ee6706318819894c7be06123
7
- data.tar.gz: 6d74ff66ddfb03ed8858f89806224a5381350fc4868958c30f3cbb5a7b6c0a1fa03c7a51ad277edf7d8f05dba7ab4d912436f5e22b90a5ee1b94f64a6d796588
6
+ metadata.gz: cccbbc279e2b8789695763ef1781aa47d899a73c17d30f2734fae6e5608bfc80a501295778925f39c622ef01f78b8cbb575a969da1d42e56832aa177d5cd20b1
7
+ data.tar.gz: e7ea501370c74b4614d527299877147d2b60dbb9491785b1747c073648350ee5140c4bcc119e043cf1c13af60fc5af1e017fec9a105e351d154746478fbe8508
data/History.txt CHANGED
@@ -19,3 +19,7 @@
19
19
  == 1.0.4
20
20
 
21
21
  * Fix StatusCommand to handle different API output.
22
+
23
+ == 1.0.5
24
+
25
+ * Pull command now parses args correctly.
@@ -33,7 +33,7 @@ module Rosette
33
33
  end
34
34
  end
35
35
 
36
- parser.parse(argv[1..-1])
36
+ parser.parse(argv)
37
37
  options[:ref] = repo.rev_parse(argv[0] || repo.get_head)
38
38
  validate_options!(options, terminal)
39
39
 
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Rosette
4
4
  module Client
5
- VERSION = "1.0.4"
5
+ VERSION = "1.0.5"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,44 +1,45 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rosette-client
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.4
4
+ version: 1.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Cameron Dutro
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-03-04 00:00:00.000000000 Z
11
+ date: 2015-05-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
+ name: colorize
14
15
  requirement: !ruby/object:Gem::Requirement
15
16
  requirements:
16
- - - ~>
17
+ - - "~>"
17
18
  - !ruby/object:Gem::Version
18
19
  version: 0.7.0
19
- name: colorize
20
- prerelease: false
21
20
  type: :runtime
21
+ prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - ~>
24
+ - - "~>"
25
25
  - !ruby/object:Gem::Version
26
26
  version: 0.7.0
27
27
  - !ruby/object:Gem::Dependency
28
+ name: json
28
29
  requirement: !ruby/object:Gem::Requirement
29
30
  requirements:
30
- - - '>='
31
+ - - ">="
31
32
  - !ruby/object:Gem::Version
32
33
  version: '0'
33
- name: json
34
- prerelease: false
35
34
  type: :runtime
35
+ prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - '>='
38
+ - - ">="
39
39
  - !ruby/object:Gem::Version
40
40
  version: '0'
41
- description: Git command integration for the Rosette internationalization platform that manages the translatable content in the source files of a git repository.
41
+ description: Git command integration for the Rosette internationalization platform
42
+ that manages the translatable content in the source files of a git repository.
42
43
  email:
43
44
  - camertron@gmail.com
44
45
  executables:
@@ -46,15 +47,15 @@ executables:
46
47
  extensions: []
47
48
  extra_rdoc_files: []
48
49
  files:
50
+ - Gemfile
51
+ - History.txt
52
+ - README.md
53
+ - Rakefile
54
+ - bin/git-rosette
49
55
  - lib/rosette/client.rb
50
56
  - lib/rosette/client/api.rb
51
57
  - lib/rosette/client/cli.rb
52
58
  - lib/rosette/client/commands.rb
53
- - lib/rosette/client/repo.rb
54
- - lib/rosette/client/response.rb
55
- - lib/rosette/client/terminal.rb
56
- - lib/rosette/client/version.rb
57
- - lib/rosette/client/writer.rb
58
59
  - lib/rosette/client/commands/commit_command.rb
59
60
  - lib/rosette/client/commands/diff_command.rb
60
61
  - lib/rosette/client/commands/pull_command.rb
@@ -62,12 +63,14 @@ files:
62
63
  - lib/rosette/client/commands/show_command.rb
63
64
  - lib/rosette/client/commands/snapshot_command.rb
64
65
  - lib/rosette/client/commands/status_command.rb
66
+ - lib/rosette/client/repo.rb
67
+ - lib/rosette/client/response.rb
68
+ - lib/rosette/client/terminal.rb
69
+ - lib/rosette/client/version.rb
70
+ - lib/rosette/client/writer.rb
71
+ - rosette-client.gemspec
65
72
  - spec/api_spec.rb
66
73
  - spec/cli_spec.rb
67
- - spec/repo_spec.rb
68
- - spec/response_spec.rb
69
- - spec/spec_helper.rb
70
- - spec/terminal_spec.rb
71
74
  - spec/commands/commit_command_spec.rb
72
75
  - spec/commands/diff_command_spec.rb
73
76
  - spec/commands/pull_command_args_spec.rb
@@ -78,34 +81,33 @@ files:
78
81
  - spec/commands/status_command_spec.rb
79
82
  - spec/helpers/fake_terminal.rb
80
83
  - spec/helpers/fake_writer.rb
81
- - Gemfile
82
- - History.txt
83
- - README.md
84
- - Rakefile
85
- - rosette-client.gemspec
86
- - bin/git-rosette
84
+ - spec/repo_spec.rb
85
+ - spec/response_spec.rb
86
+ - spec/spec_helper.rb
87
+ - spec/terminal_spec.rb
87
88
  homepage: http://github.com/camertron
88
89
  licenses: []
89
90
  metadata: {}
90
- post_install_message:
91
+ post_install_message:
91
92
  rdoc_options: []
92
93
  require_paths:
93
94
  - lib
94
95
  required_ruby_version: !ruby/object:Gem::Requirement
95
96
  requirements:
96
- - - '>='
97
+ - - ">="
97
98
  - !ruby/object:Gem::Version
98
99
  version: '0'
99
100
  required_rubygems_version: !ruby/object:Gem::Requirement
100
101
  requirements:
101
- - - '>='
102
+ - - ">="
102
103
  - !ruby/object:Gem::Version
103
104
  version: '0'
104
105
  requirements: []
105
- rubyforge_project:
106
- rubygems_version: 2.1.9
107
- signing_key:
106
+ rubyforge_project:
107
+ rubygems_version: 2.2.3
108
+ signing_key:
108
109
  specification_version: 4
109
- summary: Git command integration for the Rosette internationalization platform that manages the translatable content in the source files of a git repository.
110
+ summary: Git command integration for the Rosette internationalization platform that
111
+ manages the translatable content in the source files of a git repository.
110
112
  test_files: []
111
113
  has_rdoc: true