project_stats 0.0.0 → 0.0.1

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
  SHA256:
3
- metadata.gz: e8cf26c0de6855df5da4be6776ff2d08d2dfd596b54b8171b1db16eb1d1d8f8b
4
- data.tar.gz: c9f42f4bb9c5f411d44f924151a1a63e8a93a539e89982c82d27bae5630f4040
3
+ metadata.gz: cfd178badeee67654b121a6e7305ba48539e8bba63656d47cc6793040a1ff0bd
4
+ data.tar.gz: 957996231f93d2f81b399e087b1316b39938f691247ffde42a0adf3ea1ba6921
5
5
  SHA512:
6
- metadata.gz: 9c1ade01497cba64a4e4cfeb71068d30f7b9eec88e182e4e3bcdfd06c293ed88b54f2c37279e0f9d194a12cf0b24f5468872a8ae5b5a792d1541e664d73cdeac
7
- data.tar.gz: 62eacd638099786697dbe8a6559f288853ede3311cb1e77099cc14253c8dd15d561f430e4f9d157b41bfd390bb893195da674bc16d97bdef40bf0baa6573a729
6
+ metadata.gz: ff6f9fc0eefe9aedae71eb461d61fe6b4649185da186ff98a1b00465ceba28cc23b8151c56ddd688c2c7d13d49a4633d9e0561849c64792ac988502611e13690
7
+ data.tar.gz: 749b4ffd8bfcef0f7e587712afb7c826894e5d83048c818590bace01d629d4002b34a4cd8c42ecefff764977e902ab4ee8234d7582485781f59ad27eb13979ff
data/bin/project_stats ADDED
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'project_stats'
4
+ Hello.greeting
data/lib/project_stats.rb CHANGED
@@ -1,5 +1,12 @@
1
- class Ruby_project_statistics
2
- def self.hi
1
+ require 'project_stats/goodbye'
2
+
3
+ class Hello
4
+ def self.greeting
3
5
  puts "Hello world!"
4
6
  end
7
+
8
+ def self.abrupt_ending
9
+ goodbye = Goodbye.new
10
+ goodbye.yell
11
+ end
5
12
  end
@@ -0,0 +1,9 @@
1
+ class Goodbye
2
+ def yell
3
+ puts "GOODBYE!"
4
+ end
5
+
6
+ def whisper
7
+ puts "...goodbye."
8
+ end
9
+ end
metadata CHANGED
@@ -1,24 +1,28 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: project_stats
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.0
4
+ version: 0.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - John Coolidge
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-12-14 00:00:00.000000000 Z
11
+ date: 2019-12-15 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: |2
14
- This RubyGem gives basic statistics on a Ruby project directory.
15
- Use commands to find specific information about the project.
14
+ Use project_stats to view various statistics about your Ruby project.
15
+ Use commands provided to view specific information on your project
16
+ and the directory it is located in.
16
17
  email: john129er@gmail.com
17
- executables: []
18
+ executables:
19
+ - project_stats
18
20
  extensions: []
19
21
  extra_rdoc_files: []
20
22
  files:
23
+ - bin/project_stats
21
24
  - lib/project_stats.rb
25
+ - lib/project_stats/goodbye.rb
22
26
  homepage: https://rubygems.org/gems/project_stats
23
27
  licenses:
24
28
  - MIT
@@ -41,5 +45,5 @@ requirements: []
41
45
  rubygems_version: 3.0.3
42
46
  signing_key:
43
47
  specification_version: 4
44
- summary: Generate statistics about your Ruby projects.
48
+ summary: View various statistics on your Ruby project.
45
49
  test_files: []