learning 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/.gitignore +4 -0
- data/Gemfile +4 -0
- data/Rakefile +1 -0
- data/bin/learning +4 -0
- data/learning.gemspec +23 -0
- data/lib/learning.rb +7 -0
- data/lib/learning/learning.yml +12 -0
- data/lib/learning/runner.rb +11 -0
- data/lib/learning/version.rb +3 -0
- metadata +55 -0
data/.gitignore
ADDED
data/Gemfile
ADDED
data/Rakefile
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require 'bundler/gem_tasks'
|
data/bin/learning
ADDED
data/learning.gemspec
ADDED
@@ -0,0 +1,23 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
$:.push File.expand_path("../lib", __FILE__)
|
3
|
+
require "learning/version"
|
4
|
+
|
5
|
+
Gem::Specification.new do |s|
|
6
|
+
s.name = "learning"
|
7
|
+
s.version = Learning::VERSION
|
8
|
+
s.authors = ["Tomas D'Stefano"]
|
9
|
+
s.email = ["tomas_stefano@successoft.com"]
|
10
|
+
s.homepage = "https://github.com/tomas-stefano/learning"
|
11
|
+
s.summary = %q{Gem created in Rubycasts episode. Listing links from Ruby-BR community}
|
12
|
+
s.description = %q{Listing links from Ruby-BR community}
|
13
|
+
|
14
|
+
s.rubyforge_project = "learning"
|
15
|
+
|
16
|
+
s.files = `git ls-files`.split("\n")
|
17
|
+
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
18
|
+
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
19
|
+
s.require_paths = ["lib"]
|
20
|
+
|
21
|
+
# s.add_dependency 'active_support', '~> 3.0.0'
|
22
|
+
# s.add_development_dependency 'rspec', '~> 2.0'
|
23
|
+
end
|
data/lib/learning.rb
ADDED
metadata
ADDED
@@ -0,0 +1,55 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: learning
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Tomas D'Stefano
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2011-09-05 00:00:00.000000000Z
|
13
|
+
dependencies: []
|
14
|
+
description: Listing links from Ruby-BR community
|
15
|
+
email:
|
16
|
+
- tomas_stefano@successoft.com
|
17
|
+
executables:
|
18
|
+
- learning
|
19
|
+
extensions: []
|
20
|
+
extra_rdoc_files: []
|
21
|
+
files:
|
22
|
+
- .gitignore
|
23
|
+
- Gemfile
|
24
|
+
- Rakefile
|
25
|
+
- bin/learning
|
26
|
+
- learning.gemspec
|
27
|
+
- lib/learning.rb
|
28
|
+
- lib/learning/learning.yml
|
29
|
+
- lib/learning/runner.rb
|
30
|
+
- lib/learning/version.rb
|
31
|
+
homepage: https://github.com/tomas-stefano/learning
|
32
|
+
licenses: []
|
33
|
+
post_install_message:
|
34
|
+
rdoc_options: []
|
35
|
+
require_paths:
|
36
|
+
- lib
|
37
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
38
|
+
none: false
|
39
|
+
requirements:
|
40
|
+
- - ! '>='
|
41
|
+
- !ruby/object:Gem::Version
|
42
|
+
version: '0'
|
43
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
44
|
+
none: false
|
45
|
+
requirements:
|
46
|
+
- - ! '>='
|
47
|
+
- !ruby/object:Gem::Version
|
48
|
+
version: '0'
|
49
|
+
requirements: []
|
50
|
+
rubyforge_project: learning
|
51
|
+
rubygems_version: 1.8.5
|
52
|
+
signing_key:
|
53
|
+
specification_version: 3
|
54
|
+
summary: Gem created in Rubycasts episode. Listing links from Ruby-BR community
|
55
|
+
test_files: []
|