getme 0.0.2

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.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 7326945a6ff6dcb8cf661e4caf973747de13ee9e
4
+ data.tar.gz: 031ff5cb3fbd18e7bf51cc8e5032d14d77d45f51
5
+ SHA512:
6
+ metadata.gz: 60d1ff16bb36b53e3d048ef834a53f755228a8beb64ead006c488e8099263d35314ba2e2f83dd6ad9cd2b40405b8b2e6b3ecc6ba3c27d52ab4f1ca9c304bda3a
7
+ data.tar.gz: 4c871fcc84e106d76abea6539a79468f0afa9b2cf1670989b788367796dce43fd4883fb90e3c3bb224c1ccb20e62f111da2eaf2ed1b2bcca6c7f856177f18436
@@ -0,0 +1,17 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in getme.gemspec
4
+ gemspec
data/LICENSE ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2013 Juanito Fatas
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.
@@ -0,0 +1,34 @@
1
+ # Getme
2
+
3
+ Get Me The Vendor Files
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'getme'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install getme
18
+
19
+ ## Usage
20
+
21
+ ```
22
+ pry > require 'getme'
23
+ => true
24
+ pry > Getme.the 'jQuery'
25
+ => "suceess!"
26
+ ```
27
+
28
+ ## Contributing
29
+
30
+ 1. Fork it
31
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
32
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
33
+ 4. Push to the branch (`git push origin my-new-feature`)
34
+ 5. Create new Pull Request
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
@@ -0,0 +1,28 @@
1
+ lib = File.expand_path('../lib', __FILE__)
2
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
3
+ require 'getme/version'
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.platform = Gem::Platform::RUBY
7
+
8
+ spec.name = "getme"
9
+ spec.version = Getme::VERSION
10
+
11
+ spec.description = %q{Get Me Vendor Files!}
12
+ spec.summary = spec.description
13
+
14
+
15
+ spec.authors = ["Juanito Fatas"]
16
+ spec.email = ["katehuang0320@gmail.com"]
17
+ spec.homepage = "https://github.com/JuanitoFatas/getme"
18
+
19
+ spec.license = "MIT"
20
+
21
+ spec.files = `git ls-files`.split($/)
22
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
23
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
24
+ spec.require_paths = ["lib"]
25
+
26
+ spec.add_development_dependency "bundler", "~> 1.3"
27
+ spec.add_development_dependency "rake"
28
+ end
@@ -0,0 +1,27 @@
1
+ require 'getme/version'
2
+ require 'getme/exceptions'
3
+ require 'getme/utilities'
4
+ require 'getme/vendors'
5
+
6
+ module Getme
7
+
8
+ extend self
9
+
10
+ def the(what=nil)
11
+ return "What do you want me to download for you?" if what.nil?
12
+ what = what.to_sym
13
+ type ||= if Getme::Vendors[:files].has_key? what
14
+ :files
15
+ elsif Getme::Vendors[:zips].has_key? what
16
+ :zips
17
+ else
18
+ :not_available
19
+ end
20
+ return "Did not find a candidate of #{what}, typo?" if type == :not_available
21
+ unless Getme::Vendors[type][what].nil?
22
+ util = Utilities.new
23
+ util.cmd(util.downloader, Getme::Vendors[type][what])
24
+ return 'success!'
25
+ end
26
+ end
27
+ end
@@ -0,0 +1,3 @@
1
+ module Getme
2
+ class WgetOrCurlNotAvailableError < StandardError; end
3
+ end
@@ -0,0 +1,34 @@
1
+ module Getme
2
+ class Utilities
3
+ def cmd(badass, url)
4
+ if badass == :wget
5
+ `wget #{Shellwords.escape url}`
6
+ elsif badass == :curl
7
+ `curl -O #{Shellwords.escape url}`
8
+ end
9
+ end
10
+
11
+ def downloader
12
+ if cmd?('wget')
13
+ :wget
14
+ elsif cmd?('curl')
15
+ :curl
16
+ else
17
+ raise Getme::WgetOrCurlNotAvailableError, 'Wget or Curl not available for download files, install one? :D'
18
+ end
19
+ end
20
+
21
+ # check if cmd available from system
22
+ def cmd?(cmd)
23
+ exts = ENV['PATHEXT'] ? ENV['PATHEXT'].split(';') : ['']
24
+ ENV['PATH'].split(File::PATH_SEPARATOR).each do |path|
25
+ exts.each { |ext|
26
+ exe = File.join(path, "#{cmd}#{ext}")
27
+ return true if File.executable? exe
28
+ }
29
+ end
30
+ return false
31
+ end
32
+
33
+ end
34
+ end
@@ -0,0 +1,26 @@
1
+ module Getme
2
+ Vendors = {
3
+ # JavaScripts
4
+ files: {
5
+ angular: 'http://ajax.googleapis.com/ajax/libs/angularjs/1.0.7/angular.js',
6
+ angular_min: 'http://ajax.googleapis.com/ajax/libs/angularjs/1.0.7/angular.min.js',
7
+
8
+ jQuery: 'http://code.jquery.com/jquery.js',
9
+ jQuery_min: 'http://code.jquery.com/jquery.min.js',
10
+ jQuery_Google: 'http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.js',
11
+ jQuery_min_Google: 'http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.js',
12
+
13
+ chrome_frame: 'http://ajax.googleapis.com/ajax/libs/chrome-frame/1.0.3/CFInstall.min.js',
14
+ highlight: 'http://yandex.st/highlightjs/7.3/highlight.min.js',
15
+ modernizr: 'http://modernizr.com/downloads/modernizr-latest.js',
16
+
17
+ # CSS
18
+ normalize: 'https://raw.github.com/necolas/normalize.css/master/normalize.css',
19
+ reset: 'http://meyerweb.com/eric/tools/css/reset/reset.css'
20
+ },
21
+ zips: {
22
+ twitter_bootstrap: 'https://github.com/twitter/bootstrap/archive/master.zip',
23
+ html5_boilerplate: 'https://github.com/h5bp/html5-boilerplate/archive/master.zip'
24
+ }
25
+ }
26
+ end
@@ -0,0 +1,3 @@
1
+ module Getme
2
+ VERSION = "0.0.2"
3
+ end
metadata ADDED
@@ -0,0 +1,83 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: getme
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.2
5
+ platform: ruby
6
+ authors:
7
+ - Juanito Fatas
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2013-07-15 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ~>
18
+ - !ruby/object:Gem::Version
19
+ version: '1.3'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: '1.3'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
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
+ description: Get Me Vendor Files!
42
+ email:
43
+ - katehuang0320@gmail.com
44
+ executables: []
45
+ extensions: []
46
+ extra_rdoc_files: []
47
+ files:
48
+ - .gitignore
49
+ - Gemfile
50
+ - LICENSE
51
+ - README.md
52
+ - Rakefile
53
+ - getme.gemspec
54
+ - lib/getme.rb
55
+ - lib/getme/exceptions.rb
56
+ - lib/getme/utilities.rb
57
+ - lib/getme/vendors.rb
58
+ - lib/getme/version.rb
59
+ homepage: https://github.com/JuanitoFatas/getme
60
+ licenses:
61
+ - MIT
62
+ metadata: {}
63
+ post_install_message:
64
+ rdoc_options: []
65
+ require_paths:
66
+ - lib
67
+ required_ruby_version: !ruby/object:Gem::Requirement
68
+ requirements:
69
+ - - '>='
70
+ - !ruby/object:Gem::Version
71
+ version: '0'
72
+ required_rubygems_version: !ruby/object:Gem::Requirement
73
+ requirements:
74
+ - - '>='
75
+ - !ruby/object:Gem::Version
76
+ version: '0'
77
+ requirements: []
78
+ rubyforge_project:
79
+ rubygems_version: 2.0.3
80
+ signing_key:
81
+ specification_version: 4
82
+ summary: Get Me Vendor Files!
83
+ test_files: []