fastlane-plugin-ya_tu_sabes 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 6c8725f3a05430023306f3aa733569fbb159a070
4
+ data.tar.gz: b82ba1cdaec41f499022f87fbe3f64ce6a0896e9
5
+ SHA512:
6
+ metadata.gz: 4a9e406ffcaab8e42f981ee78149c077cf3861635ca85ae43cec02de9dac87b6d261f034d37222eecae7c5be2a843720dc020c4174f6b2cc86532407e78dbc75
7
+ data.tar.gz: 04c446ddbdc2a2d8b57fb7ba8d1297c0529f6b4ae2d981922a4bf87935867db01e5812c291a8b92fe8fe033e502cbb93a8226eb1a9c73f74dc062ef2c8921b02
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2016 Boris Bügling <boris@icculus.org>
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,37 @@
1
+ # fastlane-plugin-ya_tu_sabes `fastlane` Plugin
2
+
3
+ <!--
4
+ [![fastlane Plugin Badge](https://raw.githubusercontent.com/fastlane/fastlane/master/fastlane/assets/plugin-badge.svg)](https://rubygems.org/gems/fastlane-plugin-ya_tu_sabes)
5
+ -->
6
+
7
+ ## Getting Started
8
+
9
+ This project is a [fastlane](https://github.com/fastlane/fastlane) plugin. To get started with fastlane-plugin-ya_tu_sabes, add it to your project by running:
10
+
11
+ ```bash
12
+ fastlane add_plugin ya_tu_sabes
13
+ ```
14
+
15
+ ## About ya_tu_sabes
16
+
17
+ Ya tu sabes.
18
+
19
+ ## Example
20
+
21
+ Check out the [example `Fastfile`][fastlane/Fastfile] to see how to use this plugin. You can also run it directly from a checkout of this repository using `bundle exec fastlane test`.
22
+
23
+ ## Issues and Feedback
24
+
25
+ For any other issues and feedback about this plugin, please submit it to this repository.
26
+
27
+ ## Troubleshooting
28
+
29
+ For some more detailed help with plugins problems, check out the [Plugins Troubleshooting](https://github.com/fastlane/fastlane/blob/master/fastlane/docs/PluginsTroubleshooting.md) doc in the main `fastlane` repo.
30
+
31
+ ## Using `fastlane` Plugins
32
+
33
+ For more information about how the `fastlane` plugin system works, check out the [Plugins documentation](https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Plugins.md) in the main `fastlane` repo.
34
+
35
+ ## About `fastlane`
36
+
37
+ `fastlane` automates building, testing, and releasing your app for beta and app store distributions. To learn more about `fastlane`, check out [fastlane.tools](https://fastlane.tools).
@@ -0,0 +1,16 @@
1
+ require 'fastlane/plugin/ya_tu_sabes/version'
2
+
3
+ module Fastlane
4
+ module YaTuSabes
5
+ # Return all .rb files inside the "actions" and "helper" directory
6
+ def self.all_classes
7
+ Dir[File.expand_path('**/{actions,helper}/*.rb', File.dirname(__FILE__))]
8
+ end
9
+ end
10
+ end
11
+
12
+ # By default we want to import all available actions and helpers
13
+ # A plugin can contain any number of actions and plugins
14
+ Fastlane::YaTuSabes.all_classes.each do |current|
15
+ require current
16
+ end
@@ -0,0 +1,22 @@
1
+ module Fastlane
2
+ module Actions
3
+ class YaTuSabesAction < Action
4
+ def self.run(params)
5
+ audio_file = File.join(File.dirname(__FILE__), 'assets/ya-tu-sabes.mp3')
6
+ sh "afplay #{audio_file}"
7
+ end
8
+
9
+ def self.description
10
+ %q{Ya tu sabes.}
11
+ end
12
+
13
+ def self.authors
14
+ [%q{Boris Bügling}]
15
+ end
16
+
17
+ def self.is_supported?(platform)
18
+ true
19
+ end
20
+ end
21
+ end
22
+ end
@@ -0,0 +1,5 @@
1
+ module Fastlane
2
+ module YaTuSabes
3
+ VERSION = "0.1.0"
4
+ end
5
+ end
metadata ADDED
@@ -0,0 +1,106 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: fastlane-plugin-ya_tu_sabes
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Boris Bügling
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2016-06-01 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: pry
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - '>='
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - '>='
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: bundler
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - '>='
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - '>='
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rspec
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - '>='
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - '>='
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: fastlane
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - '>='
60
+ - !ruby/object:Gem::Version
61
+ version: 1.93.0
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - '>='
67
+ - !ruby/object:Gem::Version
68
+ version: 1.93.0
69
+ description:
70
+ email: boris@icculus.org
71
+ executables: []
72
+ extensions: []
73
+ extra_rdoc_files: []
74
+ files:
75
+ - lib/fastlane/plugin/ya_tu_sabes/actions/assets/ya-tu-sabes.mp3
76
+ - lib/fastlane/plugin/ya_tu_sabes/actions/ya_tu_sabes_action.rb
77
+ - lib/fastlane/plugin/ya_tu_sabes/version.rb
78
+ - lib/fastlane/plugin/ya_tu_sabes.rb
79
+ - README.md
80
+ - LICENSE
81
+ homepage: https://github.com/neonichu/fastlane-plugin-ya_tu_sabes
82
+ licenses:
83
+ - MIT
84
+ metadata: {}
85
+ post_install_message:
86
+ rdoc_options: []
87
+ require_paths:
88
+ - lib
89
+ required_ruby_version: !ruby/object:Gem::Requirement
90
+ requirements:
91
+ - - '>='
92
+ - !ruby/object:Gem::Version
93
+ version: '0'
94
+ required_rubygems_version: !ruby/object:Gem::Requirement
95
+ requirements:
96
+ - - '>='
97
+ - !ruby/object:Gem::Version
98
+ version: '0'
99
+ requirements: []
100
+ rubyforge_project:
101
+ rubygems_version: 2.0.14
102
+ signing_key:
103
+ specification_version: 4
104
+ summary: Ya tu sabes.
105
+ test_files: []
106
+ has_rdoc: