sinatra-bundles 0.1.0 → 0.1.1

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 +7 -1
  2. data/Rakefile +2 -0
  3. data/VERSION +1 -1
  4. data/sinatra-bundles.gemspec +2 -2
  5. metadata +2 -2
data/README.md CHANGED
@@ -4,6 +4,7 @@ sinatra-bundles
4
4
  An easy way to bundle CSS and Javascript assets in your sinatra application.
5
5
 
6
6
  * Tests: [http://runcoderun.com/darkhelmet/sinatra-bundles](http://runcoderun.com/darkhelmet/sinatra-bundles)
7
+ * Documentation: [http://yardoc.org/docs/darkhelmet-sinatra-bundles](http://yardoc.org/docs/darkhelmet-sinatra-bundles)
7
8
 
8
9
  Usage
9
10
  -----
@@ -48,7 +49,7 @@ The defaults are pretty good. In development/test mode:
48
49
  cache_bundles # => false
49
50
  stamp_bundles # => true
50
51
 
51
- And in production mode, compression and caching is enabled
52
+ And in production mode, compression and caching are enabled
52
53
 
53
54
  compress_bundles # => true
54
55
  cache_bundles # => true
@@ -75,6 +76,11 @@ Examples
75
76
 
76
77
  Check out the code for my blog for a real example: [darkblog on github](http://github.com/darkhelmet/darkblog)
77
78
 
79
+ What you Need
80
+ -------------
81
+
82
+ sinatra >= 0.10.1 (edge)
83
+
78
84
  Note on Patches/Pull Requests
79
85
  -----------------------------
80
86
 
data/Rakefile CHANGED
@@ -12,6 +12,8 @@ begin
12
12
  gem.authors = ['Daniel Huckstep']
13
13
  gem.add_dependency 'rainpress', '>= 0'
14
14
  gem.add_dependency 'packr', '>= 0'
15
+ # Wait until you can get this normally
16
+ # gem.add_dependency 'sinatra', '>= 0.10.1'
15
17
  gem.add_development_dependency 'rspec', '>= 1.2.9'
16
18
  gem.add_development_dependency 'rack-test', '>= 0.5.3'
17
19
  gem.add_development_dependency 'yard', '>= 0'
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.0
1
+ 0.1.1
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{sinatra-bundles}
8
- s.version = "0.1.0"
8
+ s.version = "0.1.1"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Daniel Huckstep"]
12
- s.date = %q{2010-01-12}
12
+ s.date = %q{2010-01-13}
13
13
  s.description = %q{Bundle CSS and Javascript assets to a single file, compress, and cache them for snappier web experiences.}
14
14
  s.email = %q{darkhelmet@darkhelmetlive.com}
15
15
  s.extra_rdoc_files = [
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sinatra-bundles
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel Huckstep
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2010-01-12 00:00:00 -07:00
12
+ date: 2010-01-13 00:00:00 -07:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency