gitloc-justinholzmann 0.1.0

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: 6255fd1909c5e40bb4292e2754025a6a49d30ba9
4
+ data.tar.gz: 7906d2331edeeff01ce8cfb84cc7a269fdb79444
5
+ SHA512:
6
+ metadata.gz: 0df11bf25cdbb89cbdf7859d3d5f250818ceb4130f84ebad7102246f5ab8968842739a868cec97ebf895ee2982ce9e641c28675cd4761b8a8cfcb9e993285512
7
+ data.tar.gz: a28768af63a2ea77b9e482bba0b2da5d032deb0f3c83ef33b77c26f45d279eaff3a3ecef3327672977ed83c6d940351894db68db893ed17a7c1153664d3ef6a0
data/Gemfile ADDED
File without changes
@@ -0,0 +1,10 @@
1
+ GEM
2
+ specs:
3
+
4
+ PLATFORMS
5
+ ruby
6
+
7
+ DEPENDENCIES
8
+
9
+ BUNDLED WITH
10
+ 1.10.5
@@ -0,0 +1,29 @@
1
+ Gitloc
2
+ ======
3
+
4
+ Takes a git url, prints out information about how many lines of code it has.
5
+
6
+ [MIT License](http://opensource.org/licenses/MIT)
7
+ -------------------------------------------------
8
+
9
+ The MIT License (MIT)
10
+
11
+ Copyright (c) 2015 Josh Cheek
12
+
13
+ Permission is hereby granted, free of charge, to any person obtaining a copy
14
+ of this software and associated documentation files (the "Software"), to deal
15
+ in the Software without restriction, including without limitation the rights
16
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
17
+ copies of the Software, and to permit persons to whom the Software is
18
+ furnished to do so, subject to the following conditions:
19
+
20
+ The above copyright notice and this permission notice shall be included in
21
+ all copies or substantial portions of the Software.
22
+
23
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
24
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
25
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
26
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
27
+ LIABILITY,HETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
28
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
29
+ THE SOFTWARE.
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env ruby
2
+ puts "hello, world"
@@ -0,0 +1,16 @@
1
+ $LOAD_PATH.unshift File.expand_path('../lib', __FILE__)
2
+
3
+ Gem::Specification.new do |s|
4
+ s.name = 'gitloc-justinholzmann'
5
+ s.version = '0.1.0'
6
+ s.licenses = ['MIT']
7
+ s.summary = "Example project -- gives lines-of-code information for a git repo"
8
+ s.description = "Example project for the Turing School of Software and Design, see https://github.com/JoshCheek/elective-building-a-gem -- gives lines-of-code information for a git repo."
9
+ s.authors = ["Josh Cheek", "Justin Holzmann"]
10
+ s.email = 'josh.cheek@gmail.com'
11
+ s.files = Dir["**/*"].select { |f| File.file? f } - Dir['*.gem']
12
+ s.homepage = 'https://github.com/JoshCheek/elective-building-a-gem'
13
+ s.executables << 'gitloc'
14
+ s.add_development_dependency 'rspec', '~> 3.0'
15
+ s.add_development_dependency 'pry'
16
+ end
@@ -0,0 +1,3 @@
1
+ class Gitloc
2
+ VERSION = '0.2.0'
3
+ end
metadata ADDED
@@ -0,0 +1,80 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: gitloc-justinholzmann
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Josh Cheek
8
+ - Justin Holzmann
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2015-07-06 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: rspec
16
+ requirement: !ruby/object:Gem::Requirement
17
+ requirements:
18
+ - - "~>"
19
+ - !ruby/object:Gem::Version
20
+ version: '3.0'
21
+ type: :development
22
+ prerelease: false
23
+ version_requirements: !ruby/object:Gem::Requirement
24
+ requirements:
25
+ - - "~>"
26
+ - !ruby/object:Gem::Version
27
+ version: '3.0'
28
+ - !ruby/object:Gem::Dependency
29
+ name: pry
30
+ requirement: !ruby/object:Gem::Requirement
31
+ requirements:
32
+ - - ">="
33
+ - !ruby/object:Gem::Version
34
+ version: '0'
35
+ type: :development
36
+ prerelease: false
37
+ version_requirements: !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - ">="
40
+ - !ruby/object:Gem::Version
41
+ version: '0'
42
+ description: Example project for the Turing School of Software and Design, see https://github.com/JoshCheek/elective-building-a-gem
43
+ -- gives lines-of-code information for a git repo.
44
+ email: josh.cheek@gmail.com
45
+ executables:
46
+ - gitloc
47
+ extensions: []
48
+ extra_rdoc_files: []
49
+ files:
50
+ - Gemfile
51
+ - Gemfile.lock
52
+ - Readme.md
53
+ - bin/gitloc
54
+ - gitloc.gemspec
55
+ - lib/version.rb
56
+ homepage: https://github.com/JoshCheek/elective-building-a-gem
57
+ licenses:
58
+ - MIT
59
+ metadata: {}
60
+ post_install_message:
61
+ rdoc_options: []
62
+ require_paths:
63
+ - lib
64
+ required_ruby_version: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ required_rubygems_version: !ruby/object:Gem::Requirement
70
+ requirements:
71
+ - - ">="
72
+ - !ruby/object:Gem::Version
73
+ version: '0'
74
+ requirements: []
75
+ rubyforge_project:
76
+ rubygems_version: 2.4.8
77
+ signing_key:
78
+ specification_version: 4
79
+ summary: Example project -- gives lines-of-code information for a git repo
80
+ test_files: []