gemaweek 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/gemaweek.gemspec +23 -0
- data/lib/gemaweek.rb +7 -0
- data/lib/gemaweek/version.rb +3 -0
- metadata +74 -0
data/.gitignore
ADDED
data/Gemfile
ADDED
data/Rakefile
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
require 'bundler/gem_tasks'
|
data/gemaweek.gemspec
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
|
2
|
+
$:.push File.expand_path("../lib", __FILE__)
|
|
3
|
+
require "gemaweek/version"
|
|
4
|
+
|
|
5
|
+
Gem::Specification.new do |s|
|
|
6
|
+
s.name = "gemaweek"
|
|
7
|
+
s.version = Gemaweek::VERSION
|
|
8
|
+
s.authors = ["Evan Machnic"]
|
|
9
|
+
s.email = ["emachnic@broadmac.net"]
|
|
10
|
+
s.homepage = "http://gemaweek.com"
|
|
11
|
+
s.summary = %q{Demonstration gem for GemAWeek Screencast}
|
|
12
|
+
s.description = %q{I wanted to write a basic Gem for consuming my own API.
|
|
13
|
+
This is a terrible example of a gem. Don't use this except for educational purposes.}
|
|
14
|
+
|
|
15
|
+
s.rubyforge_project = "gemaweek"
|
|
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
|
+
|
|
22
|
+
s.add_runtime_dependency 'api_smith', '~> 1.0.0'
|
|
23
|
+
end
|
data/lib/gemaweek.rb
ADDED
metadata
ADDED
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: gemaweek
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
prerelease:
|
|
5
|
+
version: 0.0.1
|
|
6
|
+
platform: ruby
|
|
7
|
+
authors:
|
|
8
|
+
- Evan Machnic
|
|
9
|
+
autorequire:
|
|
10
|
+
bindir: bin
|
|
11
|
+
cert_chain: []
|
|
12
|
+
|
|
13
|
+
date: 2011-07-03 00:00:00 -04:00
|
|
14
|
+
default_executable:
|
|
15
|
+
dependencies:
|
|
16
|
+
- !ruby/object:Gem::Dependency
|
|
17
|
+
name: api_smith
|
|
18
|
+
prerelease: false
|
|
19
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
|
20
|
+
none: false
|
|
21
|
+
requirements:
|
|
22
|
+
- - ~>
|
|
23
|
+
- !ruby/object:Gem::Version
|
|
24
|
+
version: 1.0.0
|
|
25
|
+
type: :runtime
|
|
26
|
+
version_requirements: *id001
|
|
27
|
+
description: |-
|
|
28
|
+
I wanted to write a basic Gem for consuming my own API.
|
|
29
|
+
This is a terrible example of a gem. Don't use this except for educational purposes.
|
|
30
|
+
email:
|
|
31
|
+
- emachnic@broadmac.net
|
|
32
|
+
executables: []
|
|
33
|
+
|
|
34
|
+
extensions: []
|
|
35
|
+
|
|
36
|
+
extra_rdoc_files: []
|
|
37
|
+
|
|
38
|
+
files:
|
|
39
|
+
- .gitignore
|
|
40
|
+
- Gemfile
|
|
41
|
+
- Rakefile
|
|
42
|
+
- gemaweek.gemspec
|
|
43
|
+
- lib/gemaweek.rb
|
|
44
|
+
- lib/gemaweek/version.rb
|
|
45
|
+
has_rdoc: true
|
|
46
|
+
homepage: http://gemaweek.com
|
|
47
|
+
licenses: []
|
|
48
|
+
|
|
49
|
+
post_install_message:
|
|
50
|
+
rdoc_options: []
|
|
51
|
+
|
|
52
|
+
require_paths:
|
|
53
|
+
- lib
|
|
54
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
55
|
+
none: false
|
|
56
|
+
requirements:
|
|
57
|
+
- - ">="
|
|
58
|
+
- !ruby/object:Gem::Version
|
|
59
|
+
version: "0"
|
|
60
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
61
|
+
none: false
|
|
62
|
+
requirements:
|
|
63
|
+
- - ">="
|
|
64
|
+
- !ruby/object:Gem::Version
|
|
65
|
+
version: "0"
|
|
66
|
+
requirements: []
|
|
67
|
+
|
|
68
|
+
rubyforge_project: gemaweek
|
|
69
|
+
rubygems_version: 1.5.2
|
|
70
|
+
signing_key:
|
|
71
|
+
specification_version: 3
|
|
72
|
+
summary: Demonstration gem for GemAWeek Screencast
|
|
73
|
+
test_files: []
|
|
74
|
+
|