myfirstgem 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.
- data/myfirstgem/.gitignore +4 -0
- data/myfirstgem/Gemfile +4 -0
- data/myfirstgem/Rakefile +2 -0
- data/myfirstgem/lib/myfirstgem.rb +7 -0
- data/myfirstgem/lib/myfirstgem.rb~ +3 -0
- data/myfirstgem/lib/myfirstgem/version.rb +3 -0
- data/myfirstgem/lib/myfirstgem/version.rb~ +3 -0
- data/myfirstgem/myfirstgem.gemspec +21 -0
- data/myfirstgem/myfirstgem.gemspec~ +21 -0
- metadata +56 -0
data/myfirstgem/Gemfile
ADDED
data/myfirstgem/Rakefile
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
|
2
|
+
$:.push File.expand_path("../lib", __FILE__)
|
|
3
|
+
require "myfirstgem/version"
|
|
4
|
+
|
|
5
|
+
Gem::Specification.new do |s|
|
|
6
|
+
s.name = "myfirstgem"
|
|
7
|
+
s.version = Myfirstgem::VERSION
|
|
8
|
+
s.platform = Gem::Platform::RUBY
|
|
9
|
+
s.authors = ["gezope as Zoltan Gero"]
|
|
10
|
+
s.email = ["gezope@gmail.com"]
|
|
11
|
+
s.homepage = ""
|
|
12
|
+
s.summary = %q{This is my first gem.}
|
|
13
|
+
s.description = %q{My Gem will do only few things, not really for clients, mostly for practising.}
|
|
14
|
+
|
|
15
|
+
s.rubyforge_project = "myfirstgem"
|
|
16
|
+
|
|
17
|
+
s.files = `git ls-files`.split("\n")
|
|
18
|
+
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
|
19
|
+
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
|
20
|
+
s.require_paths = ["lib"]
|
|
21
|
+
end
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
|
2
|
+
$:.push File.expand_path("../lib", __FILE__)
|
|
3
|
+
require "myfirstgem/version"
|
|
4
|
+
|
|
5
|
+
Gem::Specification.new do |s|
|
|
6
|
+
s.name = "myfirstgem"
|
|
7
|
+
s.version = Myfirstgem::VERSION
|
|
8
|
+
s.platform = Gem::Platform::RUBY
|
|
9
|
+
s.authors = ["TODO: Write your name"]
|
|
10
|
+
s.email = ["TODO: Write your email address"]
|
|
11
|
+
s.homepage = ""
|
|
12
|
+
s.summary = %q{TODO: Write a gem summary}
|
|
13
|
+
s.description = %q{TODO: Write a gem description}
|
|
14
|
+
|
|
15
|
+
s.rubyforge_project = "myfirstgem"
|
|
16
|
+
|
|
17
|
+
s.files = `git ls-files`.split("\n")
|
|
18
|
+
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
|
19
|
+
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
|
20
|
+
s.require_paths = ["lib"]
|
|
21
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: myfirstgem
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: '0.1'
|
|
5
|
+
prerelease:
|
|
6
|
+
platform: ruby
|
|
7
|
+
authors:
|
|
8
|
+
- gezope as Zoltan Gero
|
|
9
|
+
autorequire:
|
|
10
|
+
bindir: bin
|
|
11
|
+
cert_chain: []
|
|
12
|
+
date: 2011-06-13 00:00:00.000000000 +02:00
|
|
13
|
+
default_executable:
|
|
14
|
+
dependencies: []
|
|
15
|
+
description: My Gem will do only few things, not really for clients, mostly for practising.
|
|
16
|
+
email:
|
|
17
|
+
- gezope@gmail.com
|
|
18
|
+
executables: []
|
|
19
|
+
extensions: []
|
|
20
|
+
extra_rdoc_files: []
|
|
21
|
+
files:
|
|
22
|
+
- myfirstgem/.gitignore
|
|
23
|
+
- myfirstgem/Gemfile
|
|
24
|
+
- myfirstgem/Rakefile
|
|
25
|
+
- myfirstgem/lib/myfirstgem.rb
|
|
26
|
+
- myfirstgem/lib/myfirstgem.rb~
|
|
27
|
+
- myfirstgem/lib/myfirstgem/version.rb
|
|
28
|
+
- myfirstgem/lib/myfirstgem/version.rb~
|
|
29
|
+
- myfirstgem/myfirstgem.gemspec
|
|
30
|
+
- myfirstgem/myfirstgem.gemspec~
|
|
31
|
+
has_rdoc: true
|
|
32
|
+
homepage: ''
|
|
33
|
+
licenses: []
|
|
34
|
+
post_install_message:
|
|
35
|
+
rdoc_options: []
|
|
36
|
+
require_paths:
|
|
37
|
+
- lib
|
|
38
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
39
|
+
none: false
|
|
40
|
+
requirements:
|
|
41
|
+
- - ! '>='
|
|
42
|
+
- !ruby/object:Gem::Version
|
|
43
|
+
version: '0'
|
|
44
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
45
|
+
none: false
|
|
46
|
+
requirements:
|
|
47
|
+
- - ! '>='
|
|
48
|
+
- !ruby/object:Gem::Version
|
|
49
|
+
version: '0'
|
|
50
|
+
requirements: []
|
|
51
|
+
rubyforge_project: myfirstgem
|
|
52
|
+
rubygems_version: 1.6.2
|
|
53
|
+
signing_key:
|
|
54
|
+
specification_version: 3
|
|
55
|
+
summary: This is my first gem.
|
|
56
|
+
test_files: []
|