misosoup 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
data/lib/miso/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  module Miso
2
2
  #Miso current version
3
- VERSION = '0.1.0'
3
+ VERSION = '0.1.1'
4
4
  end
5
5
 
data/template/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source :rubygems
2
+
3
+ gem 'misosoup'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: misosoup
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,12 +9,12 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2011-03-19 00:00:00.000000000 -04:00
12
+ date: 2011-03-24 00:00:00.000000000 -04:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: rack
17
- requirement: &78646370 !ruby/object:Gem::Requirement
17
+ requirement: &85671040 !ruby/object:Gem::Requirement
18
18
  none: false
19
19
  requirements:
20
20
  - - ~>
@@ -22,10 +22,10 @@ dependencies:
22
22
  version: 1.2.0
23
23
  type: :runtime
24
24
  prerelease: false
25
- version_requirements: *78646370
25
+ version_requirements: *85671040
26
26
  - !ruby/object:Gem::Dependency
27
27
  name: rspec
28
- requirement: &78646120 !ruby/object:Gem::Requirement
28
+ requirement: &85670790 !ruby/object:Gem::Requirement
29
29
  none: false
30
30
  requirements:
31
31
  - - =
@@ -33,7 +33,7 @@ dependencies:
33
33
  version: 2.5.0
34
34
  type: :development
35
35
  prerelease: false
36
- version_requirements: *78646120
36
+ version_requirements: *85670790
37
37
  description: ! 'MisoSoup is a Rack application which can server any number of sub-Rack
38
38
  applications
39
39
 
@@ -47,30 +47,28 @@ executables:
47
47
  extensions: []
48
48
  extra_rdoc_files: []
49
49
  files:
50
- - .gitignore
51
- - Gemfile
52
- - Gemfile.lock
53
- - README
54
- - Rakefile
55
- - bin/miso
56
- - lib/miso.rb
57
- - lib/miso/commands.rb
58
50
  - lib/miso/loader.rb
59
51
  - lib/miso/rewrite.rb
60
52
  - lib/miso/static.rb
61
53
  - lib/miso/version.rb
62
- - misosoup.gemspec
63
- - spec/404.html
54
+ - lib/miso/commands.rb
55
+ - lib/miso.rb
56
+ - bin/miso
64
57
  - spec/config.ru
58
+ - spec/spec_helper.rb
65
59
  - spec/index.html
60
+ - spec/static_spec.rb
61
+ - spec/404.html
66
62
  - spec/loader_spec.rb
67
63
  - spec/rewrite_spec.rb
68
- - spec/spec_helper.rb
69
- - spec/static_spec.rb
70
64
  - template/_app/miso/config.ru
71
65
  - template/_app/miso/miso.erb
72
66
  - template/_site/index.html
73
67
  - template/config.ru
68
+ - template/Gemfile
69
+ - Rakefile
70
+ - Gemfile
71
+ - Gemfile.lock
74
72
  has_rdoc: true
75
73
  homepage: http://side-experiment.com
76
74
  licenses: []
@@ -96,4 +94,11 @@ rubygems_version: 1.6.2
96
94
  signing_key:
97
95
  specification_version: 3
98
96
  summary: Rack application aggregator
99
- test_files: []
97
+ test_files:
98
+ - spec/config.ru
99
+ - spec/spec_helper.rb
100
+ - spec/index.html
101
+ - spec/static_spec.rb
102
+ - spec/404.html
103
+ - spec/loader_spec.rb
104
+ - spec/rewrite_spec.rb
data/.gitignore DELETED
@@ -1,4 +0,0 @@
1
- .buildpath
2
- .project
3
- *.gem
4
- doc
data/README DELETED
@@ -1,2 +0,0 @@
1
- Miso is a Rack application aggregator.
2
- It allows running multiple Rack applications and a static site within the same server instance.
data/misosoup.gemspec DELETED
@@ -1,28 +0,0 @@
1
- # -*- encoding: utf-8 -*-
2
- $:.push File.expand_path("../lib", __FILE__)
3
- require "miso/version"
4
-
5
- Gem::Specification.new do |s|
6
- s.name = "misosoup"
7
- s.version = Miso::VERSION
8
- s.platform = Gem::Platform::RUBY
9
- s.authors = ["Felix Trepanier"]
10
- s.email = ["felixtrepanier@gmail.com"]
11
- s.homepage = "http://side-experiment.com"
12
- s.summary = %q{Rack application aggregator}
13
- s.description = <<-EOF
14
- MisoSoup is a Rack application which can server any number of sub-Rack applications
15
- and a static web site.
16
- EOF
17
-
18
- s.files = `git ls-files`.split("\n")
19
- s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
20
- s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
21
- s.require_paths = ["lib"]
22
-
23
- s.add_dependency('rack', '~> 1.2.0')
24
-
25
- # Test libraries
26
- s.add_development_dependency('rspec', '2.5.0')
27
- end
28
-