genymotion 0.1

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: cc1c086553d301c58c8e1763e7dc0fc1fd1ae3f6
4
+ data.tar.gz: b261afe36ac6b13da96f2d404ab7defbe14518d3
5
+ SHA512:
6
+ metadata.gz: 5364c7a60381ddc109e9fa87fcfee908b54d3673cb31a992c6301cbf00e35ef6f2739812e50f21fabd7201afb8b25ce53c6e394cf7b75b3b9287255cb8a3e26d
7
+ data.tar.gz: b29a77d4f443f2c6088b4f8f82c5f4de6d6e41c0838ba61a424c0c4f61d082a536894800940c738265ce9af3ef85531032b937df751f1eecadb1a682cfd8798a
@@ -0,0 +1,2 @@
1
+ .idea/
2
+ *.gem
@@ -0,0 +1,21 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require_relative './lib/genymotion/version.rb'
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = 'genymotion'
8
+ s.version = GENYMOTION::VERSION
9
+ s.date = '2016-10-03'
10
+ s.summary = 'Manage genymotion instances'
11
+ s.description = s.summary
12
+ s.authors = ['Ajit Singh']
13
+ s.email = 'jeetsingh.ajit@gamil.com'
14
+ s.license = 'MIT'
15
+ s.homepage = 'https://github.com/ajitsing/genymotion.git'
16
+
17
+ s.files = `git ls-files -z`.split("\x0")
18
+ s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) }
19
+ s.test_files = s.files.grep(%r{^(test|spec|features)/})
20
+ s.require_paths = ["lib"]
21
+ end
@@ -0,0 +1,2 @@
1
+ project_root = File.dirname(File.absolute_path(__FILE__))
2
+ Dir.glob(project_root + '/genymotion/**/*.rb', &method(:require))
@@ -0,0 +1,3 @@
1
+ module GENYMOTION
2
+ VERSION = '0.1'
3
+ end
metadata ADDED
@@ -0,0 +1,47 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: genymotion
3
+ version: !ruby/object:Gem::Version
4
+ version: '0.1'
5
+ platform: ruby
6
+ authors:
7
+ - Ajit Singh
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2016-10-03 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: Manage genymotion instances
14
+ email: jeetsingh.ajit@gamil.com
15
+ executables: []
16
+ extensions: []
17
+ extra_rdoc_files: []
18
+ files:
19
+ - ".gitignore"
20
+ - genymotion.gemspec
21
+ - lib/genymotion.rb
22
+ - lib/genymotion/version.rb
23
+ homepage: https://github.com/ajitsing/genymotion.git
24
+ licenses:
25
+ - MIT
26
+ metadata: {}
27
+ post_install_message:
28
+ rdoc_options: []
29
+ require_paths:
30
+ - lib
31
+ required_ruby_version: !ruby/object:Gem::Requirement
32
+ requirements:
33
+ - - ">="
34
+ - !ruby/object:Gem::Version
35
+ version: '0'
36
+ required_rubygems_version: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ requirements: []
42
+ rubyforge_project:
43
+ rubygems_version: 2.4.6
44
+ signing_key:
45
+ specification_version: 4
46
+ summary: Manage genymotion instances
47
+ test_files: []