ccs_core_gem 0.0.5 → 0.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/app/views/{service → services}/site_details/_form.html.erb +1 -1
- data/app/views/services/site_details/edit.html.erb +6 -0
- data/app/views/{service → services}/site_details/index.html.erb +4 -4
- data/app/views/services/site_details/new.html.erb +5 -0
- data/app/views/{service → services}/site_details/show.html.erb +2 -2
- data/app/views/{service → services}/site_signups/_form.html.erb +2 -2
- data/app/views/services/site_signups/edit.html.erb +6 -0
- data/app/views/{service → services}/site_signups/index.html.erb +5 -5
- data/app/views/services/site_signups/new.html.erb +5 -0
- data/app/views/{service → services}/site_signups/show.html.erb +2 -2
- data/lib/ccs_core_gem/version.rb +1 -1
- data/nbproject/private/rake-d.txt +3 -3
- metadata +13 -13
- data/app/views/service/site_details/edit.html.erb +0 -6
- data/app/views/service/site_details/new.html.erb +0 -5
- data/app/views/service/site_signups/edit.html.erb +0 -6
- data/app/views/service/site_signups/new.html.erb +0 -5
@@ -1,4 +1,4 @@
|
|
1
|
-
<%= form_for([:
|
1
|
+
<%= form_for([:services, @site_detail]) do |f| %>
|
2
2
|
<% if @site_detail.errors.any? %>
|
3
3
|
<div id="error_explanation">
|
4
4
|
<h2><%= pluralize(@site_detail.errors.count, "error") %> prohibited this site_detail from being saved:</h2>
|
@@ -19,13 +19,13 @@
|
|
19
19
|
<td><%= site_detail.paypal_email_address %></td>
|
20
20
|
<td><%= site_detail.owner_ip_address %></td>
|
21
21
|
<td><%= site_detail.site_type %></td>
|
22
|
-
<td><%= link_to 'Show', [:
|
23
|
-
<td><%= link_to 'Edit',
|
24
|
-
<td><%= link_to 'Destroy', [:
|
22
|
+
<td><%= link_to 'Show', [:services, site_detail] %></td>
|
23
|
+
<td><%= link_to 'Edit', edit_services_site_detail_path(site_detail) %></td>
|
24
|
+
<td><%= link_to 'Destroy', [:services, site_detail], :confirm => 'Are you sure?', :method => :delete %></td>
|
25
25
|
</tr>
|
26
26
|
<% end %>
|
27
27
|
</table>
|
28
28
|
|
29
29
|
<br />
|
30
30
|
|
31
|
-
<%= link_to 'New Site detail',
|
31
|
+
<%= link_to 'New Site detail', new_services_site_detail_path %>
|
@@ -1,4 +1,4 @@
|
|
1
|
-
<%= form_for(@site_signup) do |f| %>
|
1
|
+
<%= form_for([:services, @site_signup]) do |f| %>
|
2
2
|
<% if @site_signup.errors.any? %>
|
3
3
|
<div id="error_explanation">
|
4
4
|
<h2><%= pluralize(@site_signup.errors.count, "error") %> prohibited this site_signup from being saved:</h2>
|
@@ -20,7 +20,7 @@
|
|
20
20
|
<%= f.text_field :email_address %>
|
21
21
|
</div>
|
22
22
|
<div class="field">
|
23
|
-
<%= f.label :
|
23
|
+
<%= f.label :requested_url %><br />
|
24
24
|
<%= f.text_field :requested_url %>
|
25
25
|
</div>
|
26
26
|
<div class="field">
|
@@ -4,7 +4,7 @@
|
|
4
4
|
<tr>
|
5
5
|
<th>Name</th>
|
6
6
|
<th>Email address</th>
|
7
|
-
<th>
|
7
|
+
<th>Requested url</th>
|
8
8
|
<th>Active</th>
|
9
9
|
<th></th>
|
10
10
|
<th></th>
|
@@ -17,13 +17,13 @@
|
|
17
17
|
<td><%= site_signup.email_address %></td>
|
18
18
|
<td><%= site_signup.requested_url %></td>
|
19
19
|
<td><%= site_signup.active %></td>
|
20
|
-
<td><%= link_to 'Show', site_signup %></td>
|
21
|
-
<td><%= link_to 'Edit',
|
22
|
-
<td><%= link_to 'Destroy', site_signup, :confirm => 'Are you sure?', :method => :delete %></td>
|
20
|
+
<td><%= link_to 'Show', [:services, site_signup] %></td>
|
21
|
+
<td><%= link_to 'Edit', edit_services_site_signup_path(site_signup) %></td>
|
22
|
+
<td><%= link_to 'Destroy', [:services, site_signup], :confirm => 'Are you sure?', :method => :delete %></td>
|
23
23
|
</tr>
|
24
24
|
<% end %>
|
25
25
|
</table>
|
26
26
|
|
27
27
|
<br />
|
28
28
|
|
29
|
-
<%= link_to 'New Site signup',
|
29
|
+
<%= link_to 'New Site signup', new_services_site_signup_path %>
|
data/lib/ccs_core_gem/version.rb
CHANGED
@@ -1,3 +1,3 @@
|
|
1
|
-
build=Build ccs_core_gem-0.0.
|
2
|
-
install=Build and install ccs_core_gem-0.0.
|
3
|
-
release=Create tag v0.0.
|
1
|
+
build=Build ccs_core_gem-0.0.5.gem into the pkg directory
|
2
|
+
install=Build and install ccs_core_gem-0.0.5.gem into system gems
|
3
|
+
release=Create tag v0.0.5 and build and push ccs_core_gem-0.0.5.gem to Rubygems
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ccs_core_gem
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 19
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 0
|
9
|
-
-
|
10
|
-
version: 0.0.
|
9
|
+
- 6
|
10
|
+
version: 0.0.6
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- James West
|
@@ -43,16 +43,16 @@ files:
|
|
43
43
|
- app/models/site_detail.rb
|
44
44
|
- app/models/site_signup.rb
|
45
45
|
- app/views/layouts/application.html.erb
|
46
|
-
- app/views/
|
47
|
-
- app/views/
|
48
|
-
- app/views/
|
49
|
-
- app/views/
|
50
|
-
- app/views/
|
51
|
-
- app/views/
|
52
|
-
- app/views/
|
53
|
-
- app/views/
|
54
|
-
- app/views/
|
55
|
-
- app/views/
|
46
|
+
- app/views/services/site_details/_form.html.erb
|
47
|
+
- app/views/services/site_details/edit.html.erb
|
48
|
+
- app/views/services/site_details/index.html.erb
|
49
|
+
- app/views/services/site_details/new.html.erb
|
50
|
+
- app/views/services/site_details/show.html.erb
|
51
|
+
- app/views/services/site_signups/_form.html.erb
|
52
|
+
- app/views/services/site_signups/edit.html.erb
|
53
|
+
- app/views/services/site_signups/index.html.erb
|
54
|
+
- app/views/services/site_signups/new.html.erb
|
55
|
+
- app/views/services/site_signups/show.html.erb
|
56
56
|
- ccs_core_gem.gemspec
|
57
57
|
- config/locales/en.yml
|
58
58
|
- config/routes.rb
|