load 0.0.2 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 04730c817b5c006bef3e30083e8779fafd84b493
4
- data.tar.gz: f398b447390912f82a42454404b93b10abfa3281
3
+ metadata.gz: 6f77723f72d46ec2c7a08d07930f206f0658aaae
4
+ data.tar.gz: 1cd6812c72a71b8bb70bafc7c789b4e905a7f8cf
5
5
  SHA512:
6
- metadata.gz: bc4e3753372d3d8e884971057e9bb4451a5c30b1916fe50873c6534d2418bd838f16019bb35fd4f6236872f072abd419650a64fc21589c072f121456436b9849
7
- data.tar.gz: 04fd1a659b2f8863678c6bfcce57570a68242c9aeb3caae223394a4670de284099504bd7f43a77a8d6f01c548e681ddc691d73824d781066dc7a0b97546f58d9
6
+ metadata.gz: 1a07b7ff7154c9cd98973b7c68ee467cb8c930a2485202bf199053c14c14bed780d25cf4378de258360c1d8da4cfea6a2633f37d305404299ea789caa77cf2d8
7
+ data.tar.gz: c0be2dada7b2db1dfdd6067c1a9a3a4a7ee0f6f336b0516e798d26f4c032ab23d56f9d7cb6ce432d6acde663a05fe5c0aeba33b7f79b00841971663483911dca
data/bin/load ADDED
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'load'
4
+ Load.load ARGV[0], ARGV[1]
data/lib/load.rb CHANGED
@@ -1,5 +1,5 @@
1
- require "load/version"
2
-
3
1
  module Load
4
- # Your code goes here...
2
+ def self.load(repo, path)
3
+ system "git clone --recursive #{repo} #{path}"
4
+ end
5
5
  end
metadata CHANGED
@@ -1,62 +1,28 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: load
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Christian Bundy
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-11-14 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'
11
+ date: 2013-12-05 00:00:00.000000000 Z
12
+ dependencies: []
41
13
  description: Quickly and easily load projects, regardless of language, sex, religion,
42
14
  or other public/private/protected class.
43
- email:
44
- - me@christianbundy.com
45
- executables: []
15
+ email: me@christianbundy.com
16
+ executables:
17
+ - load
46
18
  extensions: []
47
19
  extra_rdoc_files: []
48
20
  files:
49
- - .gitignore
50
- - Gemfile
51
- - LICENSE.txt
52
- - README.md
53
- - Rakefile
54
21
  - lib/load.rb
55
- - lib/load/version.rb
56
- - load.gemspec
57
- homepage: ''
22
+ - bin/load
23
+ homepage: http://rubygems.org/gems/hola
58
24
  licenses:
59
- - GPL2
25
+ - MIT
60
26
  metadata: {}
61
27
  post_install_message:
62
28
  rdoc_options: []
@@ -74,8 +40,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
74
40
  version: '0'
75
41
  requirements: []
76
42
  rubyforge_project:
77
- rubygems_version: 2.0.3
43
+ rubygems_version: 2.1.11
78
44
  signing_key:
79
45
  specification_version: 4
80
46
  summary: Loading new projects is too damn hard.
81
47
  test_files: []
48
+ has_rdoc:
data/.gitignore DELETED
@@ -1,17 +0,0 @@
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 DELETED
@@ -1,4 +0,0 @@
1
- source 'https://rubygems.org'
2
-
3
- # Specify your gem's dependencies in load.gemspec
4
- gemspec
data/LICENSE.txt DELETED
@@ -1,22 +0,0 @@
1
- Copyright (c) 2013 Christian Bundy
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 DELETED
@@ -1,29 +0,0 @@
1
- # Load
2
-
3
- TODO: Write a gem description
4
-
5
- ## Installation
6
-
7
- Add this line to your application's Gemfile:
8
-
9
- gem 'load'
10
-
11
- And then execute:
12
-
13
- $ bundle
14
-
15
- Or install it yourself as:
16
-
17
- $ gem install load
18
-
19
- ## Usage
20
-
21
- TODO: Write usage instructions here
22
-
23
- ## Contributing
24
-
25
- 1. Fork it
26
- 2. Create your feature branch (`git checkout -b my-new-feature`)
27
- 3. Commit your changes (`git commit -am 'Add some feature'`)
28
- 4. Push to the branch (`git push origin my-new-feature`)
29
- 5. Create new Pull Request
data/Rakefile DELETED
@@ -1 +0,0 @@
1
- require "bundler/gem_tasks"
data/lib/load/version.rb DELETED
@@ -1,3 +0,0 @@
1
- module Load
2
- VERSION = "0.0.2"
3
- end
data/load.gemspec DELETED
@@ -1,23 +0,0 @@
1
- # coding: utf-8
2
- lib = File.expand_path('../lib', __FILE__)
3
- $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
- require 'load/version'
5
-
6
- Gem::Specification.new do |spec|
7
- spec.name = "load"
8
- spec.version = Load::VERSION
9
- spec.authors = ["Christian Bundy"]
10
- spec.email = ["me@christianbundy.com"]
11
- spec.description = %q{Quickly and easily load projects, regardless of language, sex, religion, or other public/private/protected class.}
12
- spec.summary = %q{Loading new projects is too damn hard.}
13
- spec.homepage = ""
14
- spec.license = "GPL2"
15
-
16
- spec.files = `git ls-files`.split($/)
17
- spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
- spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
- spec.require_paths = ["lib"]
20
-
21
- spec.add_development_dependency "bundler", "~> 1.3"
22
- spec.add_development_dependency "rake"
23
- end