bard_static 1.4.1 → 1.4.2

Sign up to get free protection for your applications and to get access to all the features.
data/Rakefile CHANGED
@@ -1,10 +1,6 @@
1
1
  # encoding: UTF-8
2
2
  require 'rubygems'
3
- begin
4
- require 'bundler/setup'
5
- rescue LoadError
6
- puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
7
- end
3
+ require 'bundler/setup'
8
4
 
9
5
  require 'rake'
10
6
  require 'rake/task'
data/config/routes.rb CHANGED
@@ -1,8 +1,8 @@
1
1
  Rails.application.routes.draw do
2
2
  namespace "mockups", :module => :bard_static do
3
3
  root :to => "static#mockups", :file_path => "index"
4
- match "/*file_path" => "static#mockups"
4
+ get "/*file_path" => "static#mockups"
5
5
  end
6
6
  root :to => "bard_static/static#static", :file_path => "index"
7
- match "*file_path" => "bard_static/static#static"
7
+ get "*file_path" => "bard_static/static#static"
8
8
  end
@@ -1,3 +1,3 @@
1
1
  module BardStatic
2
- VERSION = "1.4.1"
2
+ VERSION = "1.4.2"
3
3
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bard_static
3
3
  version: !ruby/object:Gem::Version
4
- hash: 5
4
+ hash: 3
5
5
  prerelease:
6
6
  segments:
7
7
  - 1
8
8
  - 4
9
- - 1
10
- version: 1.4.1
9
+ - 2
10
+ version: 1.4.2
11
11
  platform: ruby
12
12
  authors:
13
13
  - Micah Geisel
@@ -21,7 +21,7 @@ autorequire:
21
21
  bindir: bin
22
22
  cert_chain: []
23
23
 
24
- date: 2012-11-13 00:00:00 Z
24
+ date: 2013-02-04 00:00:00 Z
25
25
  dependencies: []
26
26
 
27
27
  description: Handcrafted prototypes for Rails.
@@ -34,11 +34,11 @@ extensions: []
34
34
  extra_rdoc_files: []
35
35
 
36
36
  files:
37
- - app/views/static/error.html.haml
38
37
  - app/controllers/bard_static/static_controller.rb
39
- - lib/bard_static.rb
38
+ - app/views/static/error.html.haml
40
39
  - lib/bard_static/version.rb
41
40
  - lib/bard_static/no_robots_middleware.rb
41
+ - lib/bard_static.rb
42
42
  - config/routes.rb
43
43
  - Rakefile
44
44
  - Gemfile