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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: fa1cdafb8e2e3a151f4b7d513213dcd9e8445e86
4
- data.tar.gz: 6c38ca26679d3075f62e109881edd14d18e21a31
3
+ metadata.gz: 3c32a3bd91637b281a8bffe077d12aa08ee81e6f
4
+ data.tar.gz: 7f148e50b9e3cc7ec4d4b4f56d25b4daaad79deb
5
5
  SHA512:
6
- metadata.gz: c0e311f842ba1cd4122c789476464d7c63397ba37f529cc225e9aca9281559604b3fcc2993ac763b8aa3cd99d4a6ff91e04db1fe32c94d782a87842387e8285c
7
- data.tar.gz: 1eea4a38cf8e667ad9386537782cf36c69397f0d915ac6ae80d12a0f52702f5a1c8c8214af19db104de350df8a65fd15d2e486e91fc21264a9b5b7ecf444b271
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
- [![fastlane Plugin Badge](https://rawcdn.githack.com/fastlane/fastlane/master/fastlane/assets/plugin-badge.svg)](https://rubygems.org/gems/fastlane-plugin-transifex_api)
3
+ [![fastlane Plugin Badge](https://rawcdn.githack.com/fastlane/fastlane/master/fastlane/assets/plugin-badge.svg)](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-transifex_api`, add it to your project by running:
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 transifex_api
10
+ fastlane add_plugin transifex
11
11
  ```
12
12
 
13
- ## About transifex_api
13
+ ## About transifex
14
14
 
15
15
  basic transifex api wrapper
16
16
 
@@ -1,7 +1,7 @@
1
- require 'fastlane/plugin/transifex_api/version'
1
+ require 'fastlane/plugin/transifex/version'
2
2
 
3
3
  module Fastlane
4
- module TransifexApi
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::TransifexApi.all_classes.each do |current|
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 TransifexApiAction < Action
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 api wrapper"
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 api wrapper "
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 TransifexApiHelper
3
+ class TransifexHelper
4
4
  # class methods that you define here become available in your action
5
- # as `Helper::TransifexApiHelper.your_method`
5
+ # as `Helper::TransifexHelper.your_method`
6
6
  #
7
7
  def self.show_message
8
- UI.message("Hello from the transifex_api plugin helper!")
8
+ UI.message("Hello from the transifex plugin helper!")
9
9
  end
10
10
  end
11
11
  end
@@ -0,0 +1,5 @@
1
+ module Fastlane
2
+ module Transifex
3
+ VERSION = "0.1.1"
4
+ end
5
+ 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.0
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/transifex_api.rb
106
- - lib/fastlane/plugin/transifex_api/actions/transifex_api_action.rb
107
- - lib/fastlane/plugin/transifex_api/helper/transifex_api_helper.rb
108
- - lib/fastlane/plugin/transifex_api/version.rb
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 api wrapper
132
+ summary: basic transifex wrapper
133
133
  test_files: []
@@ -1,5 +0,0 @@
1
- module Fastlane
2
- module TransifexApi
3
- VERSION = "0.1.0"
4
- end
5
- end