myfirstgem 0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,4 @@
1
+ *.gem
2
+ .bundle
3
+ Gemfile.lock
4
+ pkg/*
@@ -0,0 +1,4 @@
1
+ source "http://rubygems.org"
2
+
3
+ # Specify your gem's dependencies in myfirstgem.gemspec
4
+ gemspec
@@ -0,0 +1,2 @@
1
+ require 'bundler'
2
+ Bundler::GemHelper.install_tasks
@@ -0,0 +1,7 @@
1
+ module Myfirstgem
2
+
3
+ def self.Myfirstgem
4
+ "loremipsum"
5
+ end
6
+
7
+ end
@@ -0,0 +1,3 @@
1
+ module Myfirstgem
2
+ # Your code goes here...
3
+ end
@@ -0,0 +1,3 @@
1
+ module Myfirstgem
2
+ VERSION = "0.1"
3
+ end
@@ -0,0 +1,3 @@
1
+ module Myfirstgem
2
+ VERSION = "0.0.1"
3
+ 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 = ["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: []