locamotion 0.0.1 → 0.0.2
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 +4 -4
- data/Gemfile.lock +2 -2
- data/README.md +2 -4
- data/VERSION +1 -1
- data/locamotion.gemspec +82 -0
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8ef4eaad16d81e361b14657ae0d470b49838fea4
|
|
4
|
+
data.tar.gz: 903eb278cff9b0f17ef395a93831089e1ff0807b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 73b10e4a3f9cdd2dda0eeb726d73c2ee7bb8dcc2c7aeac4ea96ab524fe58570b4807f881dffb987d76459dfdc2698e4a9c13e179b8325b4ce9070636b9975e19
|
|
7
|
+
data.tar.gz: 214db372cae9b7cde8a07c25ffcb49bab91c05e73fc2488ba031a1dcef346003ad4ede868423d9e6179860f60f3ab999458be73c506834e0e9a6259afd3177d0
|
data/Gemfile.lock
CHANGED
|
@@ -9,7 +9,7 @@ GEM
|
|
|
9
9
|
builder (3.2.2)
|
|
10
10
|
childprocess (0.5.5)
|
|
11
11
|
ffi (~> 1.0, >= 1.0.11)
|
|
12
|
-
cucumber (1.3.
|
|
12
|
+
cucumber (1.3.18)
|
|
13
13
|
builder (>= 2.1.2)
|
|
14
14
|
diff-lcs (>= 1.1.3)
|
|
15
15
|
gherkin (~> 2.12)
|
|
@@ -46,7 +46,7 @@ GEM
|
|
|
46
46
|
rdoc
|
|
47
47
|
json (1.8.1)
|
|
48
48
|
jwt (1.2.0)
|
|
49
|
-
mini_portile (0.6.
|
|
49
|
+
mini_portile (0.6.2)
|
|
50
50
|
multi_json (1.10.1)
|
|
51
51
|
multi_test (0.1.1)
|
|
52
52
|
multi_xml (0.5.5)
|
data/README.md
CHANGED
|
@@ -32,8 +32,6 @@ With generate, Locamotion will go through the strings inside each localizable fi
|
|
|
32
32
|
* Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
|
|
33
33
|
* Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.
|
|
34
34
|
|
|
35
|
-
##
|
|
36
|
-
|
|
37
|
-
Copyright (c) 2014 Incredible Bee Ltd. See LICENSE.txt for
|
|
38
|
-
further details.
|
|
35
|
+
## License
|
|
39
36
|
|
|
37
|
+
Locamotion is Copyright © 2014 Incredible Bee. It is free software, and may be redistributed under the terms specified in the [LICENSE](https://github.com/incbee/locamotion/blob/master/LICENSE.txt) file.
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.0.
|
|
1
|
+
0.0.2
|
data/locamotion.gemspec
ADDED
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
# Generated by jeweler
|
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
|
4
|
+
# -*- encoding: utf-8 -*-
|
|
5
|
+
# stub: locamotion 0.0.2 ruby lib
|
|
6
|
+
|
|
7
|
+
Gem::Specification.new do |s|
|
|
8
|
+
s.name = "locamotion"
|
|
9
|
+
s.version = "0.0.2"
|
|
10
|
+
|
|
11
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
12
|
+
s.require_paths = ["lib"]
|
|
13
|
+
s.authors = ["Ramon Huidobro"]
|
|
14
|
+
s.date = "2015-01-01"
|
|
15
|
+
s.description = "Locamotion (Localization Motion) is a Command Line tool to generate localizable files in RubyMotion projects. It parses the 'app' directory for SugarCube (https://github.com/rubymotion/sugarcube) strings, ending in '._'. It also transfers the english localized files into others."
|
|
16
|
+
s.email = "ramon.martin.huidobro@gmail.com"
|
|
17
|
+
s.executables = ["locamotion"]
|
|
18
|
+
s.extra_rdoc_files = [
|
|
19
|
+
"LICENSE.txt",
|
|
20
|
+
"README.md"
|
|
21
|
+
]
|
|
22
|
+
s.files = [
|
|
23
|
+
".document",
|
|
24
|
+
".rspec",
|
|
25
|
+
"Gemfile",
|
|
26
|
+
"Gemfile.lock",
|
|
27
|
+
"LICENSE.txt",
|
|
28
|
+
"README.md",
|
|
29
|
+
"Rakefile",
|
|
30
|
+
"VERSION",
|
|
31
|
+
"bin/locamotion",
|
|
32
|
+
"features/generate.feature",
|
|
33
|
+
"features/slurp.feature",
|
|
34
|
+
"features/step_definitions/locamotion_steps.rb",
|
|
35
|
+
"features/support/env.rb",
|
|
36
|
+
"lib/locamotion.rb",
|
|
37
|
+
"lib/locamotion/app.rb",
|
|
38
|
+
"lib/locamotion/runner.rb",
|
|
39
|
+
"locamotion.gemspec",
|
|
40
|
+
"spec/app_spec.rb",
|
|
41
|
+
"spec/generate_spec.rb",
|
|
42
|
+
"spec/spec_helper.rb"
|
|
43
|
+
]
|
|
44
|
+
s.homepage = "http://github.com/incbee/locamotion"
|
|
45
|
+
s.licenses = ["MIT"]
|
|
46
|
+
s.rubygems_version = "2.4.5"
|
|
47
|
+
s.summary = "CLI tool to generate localizable files in RubyMotion projects"
|
|
48
|
+
|
|
49
|
+
if s.respond_to? :specification_version then
|
|
50
|
+
s.specification_version = 4
|
|
51
|
+
|
|
52
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
|
53
|
+
s.add_runtime_dependency(%q<thor>, ["~> 0"])
|
|
54
|
+
s.add_development_dependency(%q<aruba>, ["~> 0"])
|
|
55
|
+
s.add_development_dependency(%q<rspec>, ["~> 3.1.0"])
|
|
56
|
+
s.add_development_dependency(%q<rdoc>, ["~> 3.12"])
|
|
57
|
+
s.add_development_dependency(%q<cucumber>, [">= 0"])
|
|
58
|
+
s.add_development_dependency(%q<bundler>, ["~> 1.0"])
|
|
59
|
+
s.add_development_dependency(%q<jeweler>, ["~> 2.0.1"])
|
|
60
|
+
s.add_development_dependency(%q<simplecov>, [">= 0"])
|
|
61
|
+
else
|
|
62
|
+
s.add_dependency(%q<thor>, ["~> 0"])
|
|
63
|
+
s.add_dependency(%q<aruba>, ["~> 0"])
|
|
64
|
+
s.add_dependency(%q<rspec>, ["~> 3.1.0"])
|
|
65
|
+
s.add_dependency(%q<rdoc>, ["~> 3.12"])
|
|
66
|
+
s.add_dependency(%q<cucumber>, [">= 0"])
|
|
67
|
+
s.add_dependency(%q<bundler>, ["~> 1.0"])
|
|
68
|
+
s.add_dependency(%q<jeweler>, ["~> 2.0.1"])
|
|
69
|
+
s.add_dependency(%q<simplecov>, [">= 0"])
|
|
70
|
+
end
|
|
71
|
+
else
|
|
72
|
+
s.add_dependency(%q<thor>, ["~> 0"])
|
|
73
|
+
s.add_dependency(%q<aruba>, ["~> 0"])
|
|
74
|
+
s.add_dependency(%q<rspec>, ["~> 3.1.0"])
|
|
75
|
+
s.add_dependency(%q<rdoc>, ["~> 3.12"])
|
|
76
|
+
s.add_dependency(%q<cucumber>, [">= 0"])
|
|
77
|
+
s.add_dependency(%q<bundler>, ["~> 1.0"])
|
|
78
|
+
s.add_dependency(%q<jeweler>, ["~> 2.0.1"])
|
|
79
|
+
s.add_dependency(%q<simplecov>, [">= 0"])
|
|
80
|
+
end
|
|
81
|
+
end
|
|
82
|
+
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: locamotion
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ramon Huidobro
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2015-01-01 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: thor
|
|
@@ -149,6 +149,7 @@ files:
|
|
|
149
149
|
- lib/locamotion.rb
|
|
150
150
|
- lib/locamotion/app.rb
|
|
151
151
|
- lib/locamotion/runner.rb
|
|
152
|
+
- locamotion.gemspec
|
|
152
153
|
- spec/app_spec.rb
|
|
153
154
|
- spec/generate_spec.rb
|
|
154
155
|
- spec/spec_helper.rb
|
|
@@ -172,7 +173,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
172
173
|
version: '0'
|
|
173
174
|
requirements: []
|
|
174
175
|
rubyforge_project:
|
|
175
|
-
rubygems_version: 2.
|
|
176
|
+
rubygems_version: 2.4.5
|
|
176
177
|
signing_key:
|
|
177
178
|
specification_version: 4
|
|
178
179
|
summary: CLI tool to generate localizable files in RubyMotion projects
|