fastlane-plugin-transifex 0.1.0 → 0.1.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.
- checksums.yaml +4 -4
- data/README.md +4 -4
- data/lib/fastlane/plugin/{transifex_api.rb → transifex.rb} +3 -3
- data/lib/fastlane/plugin/{transifex_api/actions/transifex_api_action.rb → transifex/actions/transifex_action.rb} +3 -3
- data/lib/fastlane/plugin/{transifex_api/helper/transifex_api_helper.rb → transifex/helper/transifex_helper.rb} +3 -3
- data/lib/fastlane/plugin/transifex/version.rb +5 -0
- metadata +6 -6
- data/lib/fastlane/plugin/transifex_api/version.rb +0 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3c32a3bd91637b281a8bffe077d12aa08ee81e6f
|
4
|
+
data.tar.gz: 7f148e50b9e3cc7ec4d4b4f56d25b4daaad79deb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7759a6c8d668388ced67a494ab2965837b30afba7b097cb6fac2616bad2245c0fcabb35ca975ca2dcce739ae04561580a1a230ed2a54ebb6ab462d58322c66d3
|
7
|
+
data.tar.gz: 82affa6a4bc1e7b184c0d3843bda06c0fd3d973b3652de527f8f635b0ef117a30098d8fa09272996c34ab88baabdd39b63750e06d00f61b6a79197fabd4b70f6
|
data/README.md
CHANGED
@@ -1,16 +1,16 @@
|
|
1
1
|
# transifex_api plugin
|
2
2
|
|
3
|
-
[](https://rubygems.org/gems/fastlane-plugin-
|
3
|
+
[](https://rubygems.org/gems/fastlane-plugin-transifex)
|
4
4
|
|
5
5
|
## Getting Started
|
6
6
|
|
7
|
-
This project is a [fastlane](https://github.com/fastlane/fastlane) plugin. To get started with `fastlane-plugin-
|
7
|
+
This project is a [fastlane](https://github.com/fastlane/fastlane) plugin. To get started with `fastlane-plugin-transifex`, add it to your project by running:
|
8
8
|
|
9
9
|
```bash
|
10
|
-
fastlane add_plugin
|
10
|
+
fastlane add_plugin transifex
|
11
11
|
```
|
12
12
|
|
13
|
-
## About
|
13
|
+
## About transifex
|
14
14
|
|
15
15
|
basic transifex api wrapper
|
16
16
|
|
@@ -1,7 +1,7 @@
|
|
1
|
-
require 'fastlane/plugin/
|
1
|
+
require 'fastlane/plugin/transifex/version'
|
2
2
|
|
3
3
|
module Fastlane
|
4
|
-
module
|
4
|
+
module Transifex
|
5
5
|
# Return all .rb files inside the "actions" and "helper" directory
|
6
6
|
def self.all_classes
|
7
7
|
Dir[File.expand_path('**/{actions,helper}/*.rb', File.dirname(__FILE__))]
|
@@ -11,6 +11,6 @@ end
|
|
11
11
|
|
12
12
|
# By default we want to import all available actions and helpers
|
13
13
|
# A plugin can contain any number of actions and plugins
|
14
|
-
Fastlane::
|
14
|
+
Fastlane::Transifex.all_classes.each do |current|
|
15
15
|
require current
|
16
16
|
end
|
@@ -1,6 +1,6 @@
|
|
1
1
|
module Fastlane
|
2
2
|
module Actions
|
3
|
-
class
|
3
|
+
class TransifexAction < Action
|
4
4
|
def self.run(params)
|
5
5
|
require 'json'
|
6
6
|
require 'net/http'
|
@@ -35,7 +35,7 @@ module Fastlane
|
|
35
35
|
end
|
36
36
|
|
37
37
|
def self.description
|
38
|
-
"basic transifex
|
38
|
+
"basic transifex wrapper"
|
39
39
|
end
|
40
40
|
|
41
41
|
def self.authors
|
@@ -48,7 +48,7 @@ module Fastlane
|
|
48
48
|
|
49
49
|
def self.details
|
50
50
|
# Optional:
|
51
|
-
"basic transifex
|
51
|
+
"basic transifex wrapper "
|
52
52
|
end
|
53
53
|
|
54
54
|
def self.available_options
|
@@ -1,11 +1,11 @@
|
|
1
1
|
module Fastlane
|
2
2
|
module Helper
|
3
|
-
class
|
3
|
+
class TransifexHelper
|
4
4
|
# class methods that you define here become available in your action
|
5
|
-
# as `Helper::
|
5
|
+
# as `Helper::TransifexHelper.your_method`
|
6
6
|
#
|
7
7
|
def self.show_message
|
8
|
-
UI.message("Hello from the
|
8
|
+
UI.message("Hello from the transifex plugin helper!")
|
9
9
|
end
|
10
10
|
end
|
11
11
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fastlane-plugin-transifex
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- junjie
|
@@ -102,10 +102,10 @@ extra_rdoc_files: []
|
|
102
102
|
files:
|
103
103
|
- LICENSE
|
104
104
|
- README.md
|
105
|
-
- lib/fastlane/plugin/
|
106
|
-
- lib/fastlane/plugin/
|
107
|
-
- lib/fastlane/plugin/
|
108
|
-
- lib/fastlane/plugin/
|
105
|
+
- lib/fastlane/plugin/transifex.rb
|
106
|
+
- lib/fastlane/plugin/transifex/actions/transifex_action.rb
|
107
|
+
- lib/fastlane/plugin/transifex/helper/transifex_helper.rb
|
108
|
+
- lib/fastlane/plugin/transifex/version.rb
|
109
109
|
homepage: https://github.com/JackyQu/fastlane-plugin-transifex
|
110
110
|
licenses:
|
111
111
|
- MIT
|
@@ -129,5 +129,5 @@ rubyforge_project:
|
|
129
129
|
rubygems_version: 2.6.8
|
130
130
|
signing_key:
|
131
131
|
specification_version: 4
|
132
|
-
summary: basic transifex
|
132
|
+
summary: basic transifex wrapper
|
133
133
|
test_files: []
|