smoke-rack 0.0.2 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. data/README.md +3 -1
  2. data/Rakefile +1 -0
  3. data/VERSION +1 -1
  4. data/smoke-rack.gemspec +8 -4
  5. metadata +12 -2
data/README.md CHANGED
@@ -20,7 +20,6 @@ Smoke allows you to take single serve sources from around the web. Then it does
20
20
 
21
21
  Smoke-rack allows you to transcode that information and provide an API like layer of your own.
22
22
 
23
-
24
23
  ## How do I include it in my project?
25
24
 
26
25
  # config.ru
@@ -34,6 +33,9 @@ Smoke-rack allows you to transcode that information and provide an API like laye
34
33
 
35
34
  run Sinatra::Application
36
35
 
36
+ ## Installation
37
+
38
+ gem install smoke-rack -s http://gemcutter.org
37
39
 
38
40
  ## Note on Patches/Pull Requests
39
41
 
data/Rakefile CHANGED
@@ -13,6 +13,7 @@ begin
13
13
  gem.rubyforge_project = "smoke-rack"
14
14
  gem.add_development_dependency "rspec"
15
15
  gem.add_dependency "smoke", "0.5.16"
16
+ gem.add_dependency "haml"
16
17
  # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
17
18
  end
18
19
  Jeweler::GemcutterTasks.new
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.2
1
+ 0.0.3
@@ -1,15 +1,15 @@
1
1
  # Generated by jeweler
2
- # DO NOT EDIT THIS FILE
3
- # Instead, edit Jeweler::Tasks in Rakefile, and run `rake gemspec`
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
4
4
  # -*- encoding: utf-8 -*-
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{smoke-rack}
8
- s.version = "0.0.2"
8
+ s.version = "0.0.3"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Ben Schwarz"]
12
- s.date = %q{2009-10-21}
12
+ s.date = %q{2009-10-25}
13
13
  s.description = %q{Expose Smoke sources and transcode them into JSON, XML or YAML}
14
14
  s.email = %q{ben.schwarz@gmail.com}
15
15
  s.extra_rdoc_files = [
@@ -56,12 +56,16 @@ Gem::Specification.new do |s|
56
56
  if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
57
57
  s.add_development_dependency(%q<rspec>, [">= 0"])
58
58
  s.add_runtime_dependency(%q<smoke>, ["= 0.5.16"])
59
+ s.add_runtime_dependency(%q<haml>, [">= 0"])
59
60
  else
60
61
  s.add_dependency(%q<rspec>, [">= 0"])
61
62
  s.add_dependency(%q<smoke>, ["= 0.5.16"])
63
+ s.add_dependency(%q<haml>, [">= 0"])
62
64
  end
63
65
  else
64
66
  s.add_dependency(%q<rspec>, [">= 0"])
65
67
  s.add_dependency(%q<smoke>, ["= 0.5.16"])
68
+ s.add_dependency(%q<haml>, [">= 0"])
66
69
  end
67
70
  end
71
+
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: smoke-rack
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ben Schwarz
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-10-21 00:00:00 +11:00
12
+ date: 2009-10-25 00:00:00 +11:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -32,6 +32,16 @@ dependencies:
32
32
  - !ruby/object:Gem::Version
33
33
  version: 0.5.16
34
34
  version:
35
+ - !ruby/object:Gem::Dependency
36
+ name: haml
37
+ type: :runtime
38
+ version_requirement:
39
+ version_requirements: !ruby/object:Gem::Requirement
40
+ requirements:
41
+ - - ">="
42
+ - !ruby/object:Gem::Version
43
+ version: "0"
44
+ version:
35
45
  description: Expose Smoke sources and transcode them into JSON, XML or YAML
36
46
  email: ben.schwarz@gmail.com
37
47
  executables: []