trial 0.0.1

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.
Files changed (5) hide show
  1. checksums.yaml +15 -0
  2. data/README.md +0 -0
  3. data/bin/trial +3 -0
  4. data/trial.gemspec +16 -0
  5. metadata +46 -0
@@ -0,0 +1,15 @@
1
+ ---
2
+ !binary "U0hBMQ==":
3
+ metadata.gz: !binary |-
4
+ NWUzMTI1MTllYjkwNTRjYTM0YjEzMzlhYmEyMjk2NTJjYzMzZmM1Zg==
5
+ data.tar.gz: !binary |-
6
+ M2FlZGM1ZWU3MzdlYTU1YmU4ZDY3MTRmYzJiOTcwMzNhYmVlNGI2ZA==
7
+ !binary "U0hBNTEy":
8
+ metadata.gz: !binary |-
9
+ MjAyODU5MTM0ZjU5NTY2ZDk4YWM1NTNiMjBmYTljYjEzZjczYjNiOWI5N2Nj
10
+ YmRhZWIyZmRhOGYyMjY1OTkwM2RmN2JmNjdlZjUxYjkzYzQyZTkyY2IxZTY4
11
+ OGI4NDk4YjE2NGQ2MGE1ZWM3Y2FmOGU2YzJiZTRjODUxYWE5OWQ=
12
+ data.tar.gz: !binary |-
13
+ YWQ2ZjY4MWE5YjY1NzMyY2Q0MWJkYzE2MWI0NTQ4NDRiMGVkYmIzNjIwY2Q0
14
+ NzExYjczZjRmOGE3N2QyMWQ5ZGUyNmQ5ODM4OGJlNDZhM2ViYWVhY2IwZWJj
15
+ MjNkMzAwMjczMzMzYWEyYmJjOTZhMmMyZjMzNDQyY2Y2NWMwZWQ=
File without changes
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ puts "good job, jack!"
@@ -0,0 +1,16 @@
1
+ require 'rubygems'
2
+
3
+ SPEC = Gem::Specification.new do |s|
4
+ s.name = "trial"
5
+ s.version = "0.0.1"
6
+ s.author = "Jack Altman"
7
+ s.email = "jack.e.altman@gmail.com"
8
+ s.platform = Gem::Platform::RUBY
9
+ s.description = "Trial!"
10
+ s.summary = "This is my first ruby Gem. I hope you like it"
11
+ s.rubyforge_project = "trial"
12
+ s.homepage = "http://github.com/jaltman429/trial"
13
+ s.files = Dir.glob("**/*")
14
+ s.bindir = 'bin'
15
+ s.executable = 'trial'
16
+ end
metadata ADDED
@@ -0,0 +1,46 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: trial
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Jack Altman
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2013-06-12 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: Trial!
14
+ email: jack.e.altman@gmail.com
15
+ executables:
16
+ - trial
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - bin/trial
21
+ - README.md
22
+ - trial.gemspec
23
+ homepage: http://github.com/jaltman429/trial
24
+ licenses: []
25
+ metadata: {}
26
+ post_install_message:
27
+ rdoc_options: []
28
+ require_paths:
29
+ - lib
30
+ required_ruby_version: !ruby/object:Gem::Requirement
31
+ requirements:
32
+ - - ! '>='
33
+ - !ruby/object:Gem::Version
34
+ version: '0'
35
+ required_rubygems_version: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - ! '>='
38
+ - !ruby/object:Gem::Version
39
+ version: '0'
40
+ requirements: []
41
+ rubyforge_project: trial
42
+ rubygems_version: 2.0.3
43
+ signing_key:
44
+ specification_version: 4
45
+ summary: This is my first ruby Gem. I hope you like it
46
+ test_files: []