prologue 0.3.9 → 0.3.10

Sign up to get free protection for your applications and to get access to all the features.
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- prologue (0.3.9)
4
+ prologue (0.3.10)
5
5
  rails (~> 3.0.0)
6
6
  thor
7
7
 
@@ -1,3 +1,3 @@
1
1
  module Prologue
2
- VERSION = "0.3.9"
2
+ VERSION = "0.3.10"
3
3
  end
@@ -1,3 +1,4 @@
1
+ remove_file 'app/views/admin/dashboard/index.html.haml'
1
2
  create_file 'app/views/admin/dashboard/index.html.haml' do
2
3
  <<-FILE
3
4
  %h1 #{app_name.humanize} Admin
@@ -92,18 +92,21 @@ create_file 'app/views/admin/users/_form.html.haml' do
92
92
  FILE
93
93
  end
94
94
 
95
+ remove_file 'app/views/admin/users/edit.html.haml'
95
96
  create_file 'app/views/admin/users/edit.html.haml' do
96
97
  <<-'FILE'
97
98
  = render :partial => "form"
98
99
  FILE
99
100
  end
100
101
 
102
+ remove_file 'app/views/admin/users/new.html.haml'
101
103
  create_file 'app/views/admin/users/new.html.haml' do
102
104
  <<-'FILE'
103
105
  = render :partial => "form"
104
106
  FILE
105
107
  end
106
108
 
109
+ remove_file 'app/views/admin/users/index.html.haml'
107
110
  create_file 'app/views/admin/users/index.html.haml' do
108
111
  <<-FILE
109
112
  - if !@users.blank?
@@ -1,5 +1,6 @@
1
1
  generate(:controller, "home index")
2
2
 
3
+ remove_file 'app/views/home/index.html.haml'
3
4
  create_file 'app/views/home/index.html.haml' do
4
5
  <<-FILE
5
6
  %h1 #{app_name.humanize}
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 3
8
- - 9
9
- version: 0.3.9
8
+ - 10
9
+ version: 0.3.10
10
10
  platform: ruby
11
11
  authors:
12
12
  - Quick Left
@@ -184,6 +184,6 @@ rubyforge_project: prologue
184
184
  rubygems_version: 1.3.7
185
185
  signing_key:
186
186
  specification_version: 3
187
- summary: prologue-0.3.9
187
+ summary: prologue-0.3.10
188
188
  test_files: []
189
189