eusplazio 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.
data/.hgignore ADDED
@@ -0,0 +1,9 @@
1
+ syntax: glob
2
+
3
+ *.gem
4
+ Gemfile.lock
5
+
6
+ syntax: regexp
7
+
8
+ ^\.bundle/
9
+ ^pkg/
data/.hgtags ADDED
@@ -0,0 +1,3 @@
1
+ c0c962a3c7adcddf4fa770883a066a4f6b28fb49 v0.0.1
2
+ c0c962a3c7adcddf4fa770883a066a4f6b28fb49 v0.0.1
3
+ 0000000000000000000000000000000000000000 v0.0.1
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source "http://rubygems.org"
2
+
3
+ # Specify your gem's dependencies in eusplazio.gemspec
4
+ gemspec
data/Rakefile ADDED
@@ -0,0 +1,4 @@
1
+ require 'bundler'
2
+
3
+ Bundler::GemHelperMercurial.install_tasks
4
+
data/eusplazio.gemspec ADDED
@@ -0,0 +1,21 @@
1
+ # -*- encoding: utf-8 -*-
2
+ $:.push File.expand_path("../lib", __FILE__)
3
+ require "eusplazio/version"
4
+
5
+ Gem::Specification.new do |s|
6
+ s.name = "eusplazio"
7
+ s.version = Eusplazio::VERSION
8
+ s.platform = Gem::Platform::RUBY
9
+ s.authors = ["Alessio Caiazza"]
10
+ s.email = ["nolith@abisso.org"]
11
+ s.homepage = ""
12
+ s.summary = %q{just a test}
13
+ s.description = %q{Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.}
14
+
15
+ s.rubyforge_project = "eusplazio"
16
+
17
+ s.files = `hg locate`.split("\n")
18
+ s.test_files = `hg locate {test,spec,features}/*`.split("\n")
19
+ s.executables = `hg locate bin/*`.split("\n").map{ |f| File.basename(f) }
20
+ s.require_paths = ["lib"]
21
+ end
data/features/test.rb ADDED
File without changes
File without changes
@@ -0,0 +1,3 @@
1
+ module Eusplazio
2
+ VERSION = "0.0.1"
3
+ end
data/lib/eusplazio.rb ADDED
@@ -0,0 +1,3 @@
1
+ module Eusplazio
2
+ # Your code goes here...
3
+ end
data/spec/test.rb ADDED
File without changes
data/test/test.rb ADDED
File without changes
metadata ADDED
@@ -0,0 +1,80 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: eusplazio
3
+ version: !ruby/object:Gem::Version
4
+ hash: 29
5
+ prerelease:
6
+ segments:
7
+ - 0
8
+ - 0
9
+ - 1
10
+ version: 0.0.1
11
+ platform: ruby
12
+ authors:
13
+ - Alessio Caiazza
14
+ autorequire:
15
+ bindir: bin
16
+ cert_chain: []
17
+
18
+ date: 2011-02-19 00:00:00 +01:00
19
+ default_executable:
20
+ dependencies: []
21
+
22
+ description: Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
23
+ email:
24
+ - nolith@abisso.org
25
+ executables: []
26
+
27
+ extensions: []
28
+
29
+ extra_rdoc_files: []
30
+
31
+ files:
32
+ - .hgignore
33
+ - .hgtags
34
+ - Gemfile
35
+ - Rakefile
36
+ - eusplazio.gemspec
37
+ - features/test.rb
38
+ - lib/eusplazio.rb
39
+ - lib/eusplazio/fab_spec/lalla
40
+ - lib/eusplazio/version.rb
41
+ - spec/test.rb
42
+ - test/test.rb
43
+ has_rdoc: true
44
+ homepage: ""
45
+ licenses: []
46
+
47
+ post_install_message:
48
+ rdoc_options: []
49
+
50
+ require_paths:
51
+ - lib
52
+ required_ruby_version: !ruby/object:Gem::Requirement
53
+ none: false
54
+ requirements:
55
+ - - ">="
56
+ - !ruby/object:Gem::Version
57
+ hash: 3
58
+ segments:
59
+ - 0
60
+ version: "0"
61
+ required_rubygems_version: !ruby/object:Gem::Requirement
62
+ none: false
63
+ requirements:
64
+ - - ">="
65
+ - !ruby/object:Gem::Version
66
+ hash: 3
67
+ segments:
68
+ - 0
69
+ version: "0"
70
+ requirements: []
71
+
72
+ rubyforge_project: eusplazio
73
+ rubygems_version: 1.5.0
74
+ signing_key:
75
+ specification_version: 3
76
+ summary: just a test
77
+ test_files:
78
+ - features/test.rb
79
+ - spec/test.rb
80
+ - test/test.rb