phone_gap 0.0.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 ADDED
@@ -0,0 +1,15 @@
1
+ ---
2
+ !binary "U0hBMQ==":
3
+ metadata.gz: !binary |-
4
+ YTMwYjQ2ODEwNzM3MGI5YjQ2MjlmMTlhMWYxMTNjNzY2N2Q1NDY4Nw==
5
+ data.tar.gz: !binary |-
6
+ M2FiZDQ3MDkxMDYxNTdhOTE5YmNlMWNmY2VjZDIxOTg0YWJlM2M3ZA==
7
+ SHA512:
8
+ metadata.gz: !binary |-
9
+ NDJlNTAxNGNjNTg3NDU2MDM1OWU0NjhlNmNiNTYwYWIzNmJmMjBhNWZhMzFl
10
+ ZmEzYzc2YWZhNzg0ZjIwNDBiZWQ3ODUzNTk0NWQwZjg2NDk3ZmQ1Y2JmY2Y5
11
+ NWRiNzBjMTZmM2U4YzQ5ZWI4NDBhODNjMTExZjM0ZWRlOWZmMmU=
12
+ data.tar.gz: !binary |-
13
+ OTM2YTc0MDdlY2U2NjEzNjllYjBiMDk2ZDgwYWNjOWMwYmJlMGY3ZjNkYzdj
14
+ MmYwYjU0MTFlY2JhOGUxZmFlNmMxM2Y1OTUwNzhlYjZhNDAxZTgxZjFjMGQ1
15
+ ZTQ1ODI2ZGQzNmJmMTM2NmFkZmIwOTY4ZDQ3OTAzMWQ0NjU2Y2M=
data/.gitignore ADDED
@@ -0,0 +1,14 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+ *.bundle
11
+ *.so
12
+ *.o
13
+ *.a
14
+ mkmf.log
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in phone_gap.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2015 Joao Luis Mangilli
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,31 @@
1
+ # PhoneGap
2
+
3
+ TODO: Write a gem description
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'phone_gap'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ $ bundle
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install phone_gap
20
+
21
+ ## Usage
22
+
23
+ TODO: Write usage instructions here
24
+
25
+ ## Contributing
26
+
27
+ 1. Fork it ( https://github.com/[my-github-username]/phone_gap/fork )
28
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
29
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
30
+ 4. Push to the branch (`git push origin my-new-feature`)
31
+ 5. Create a new Pull Request
data/Rakefile ADDED
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+
@@ -0,0 +1,3 @@
1
+ module PhoneGap
2
+ VERSION = "0.0.1"
3
+ end
data/lib/phone_gap.rb ADDED
@@ -0,0 +1,5 @@
1
+ require "phone_gap/version"
2
+
3
+ module PhoneGap
4
+ # Your code goes here...
5
+ end
data/phone_gap.gemspec ADDED
@@ -0,0 +1,17 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'phone_gap/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "phone_gap"
8
+ spec.version = PhoneGap::VERSION
9
+ spec.authors = ["Joao Luis Mangilli"]
10
+ spec.email = ["joaoluissilvamangilli@gmail.com"]
11
+ spec.summary = "Um app de teste, não use"
12
+ spec.description = "Um app de teste, não use"
13
+ spec.homepage = ""
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files -z`.split("\x0")
17
+ end
metadata ADDED
@@ -0,0 +1,52 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: phone_gap
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Joao Luis Mangilli
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2015-01-13 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: Um app de teste, não use
14
+ email:
15
+ - joaoluissilvamangilli@gmail.com
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - .gitignore
21
+ - Gemfile
22
+ - LICENSE.txt
23
+ - README.md
24
+ - Rakefile
25
+ - lib/phone_gap.rb
26
+ - lib/phone_gap/version.rb
27
+ - phone_gap.gemspec
28
+ homepage: ''
29
+ licenses:
30
+ - MIT
31
+ metadata: {}
32
+ post_install_message:
33
+ rdoc_options: []
34
+ require_paths:
35
+ - lib
36
+ required_ruby_version: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ! '>='
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ required_rubygems_version: !ruby/object:Gem::Requirement
42
+ requirements:
43
+ - - ! '>='
44
+ - !ruby/object:Gem::Version
45
+ version: '0'
46
+ requirements: []
47
+ rubyforge_project:
48
+ rubygems_version: 2.4.3
49
+ signing_key:
50
+ specification_version: 4
51
+ summary: Um app de teste, não use
52
+ test_files: []