configvars_rails 0.6.0 → 0.6.1

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 25e308bc1f988ecdb0f724e46c93b72a11e9a532
4
- data.tar.gz: 8552099b84de63bc7835d6336401baafa68c03ef
3
+ metadata.gz: 88c175de6f9e5ee850e7bec010098a78a00e4320
4
+ data.tar.gz: 771e4e4a646f6cdb29dd33b40debae6f7fa3cd1e
5
5
  SHA512:
6
- metadata.gz: b48af680f2fde547c4db473f16d16e0943f9b31fec1142738b3731d5ce8a466fae969fe6d4c4244fd73c64d53f9e8dc9c5aa68b30f42ea54b24e5bba1b1e5be7
7
- data.tar.gz: a63fd4be66995cd3b4822adc5747419a88bdbeee13b6f10e02abac8cdd9442aa4b73dab4acbec90da7a408f6399d11e265a6fe14e5915d23cb3a4945d948858d
6
+ metadata.gz: 9951666a2f2b8af433956104ec0c45419f5226ea7d2efabffbc0155504445a1fc68c11587163f8853fd955204526ee2250b89669ea5e920b001b18ce74c72c8a
7
+ data.tar.gz: 14a4c42013001382a78fb4dcec9fd7e9858e83a821f0bb90ea78df3de1b79980baafa33d138f7228b882359d1a90253819a58d64c4413939d859cd09d5c114e5
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.6.0
1
+ 0.6.1
@@ -2,11 +2,11 @@
2
2
  # DO NOT EDIT THIS FILE DIRECTLY
3
3
  # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
4
  # -*- encoding: utf-8 -*-
5
- # stub: configvars_rails 0.6.0 ruby lib
5
+ # stub: configvars_rails 0.6.1 ruby lib
6
6
 
7
7
  Gem::Specification.new do |s|
8
8
  s.name = "configvars_rails"
9
- s.version = "0.6.0"
9
+ s.version = "0.6.1"
10
10
 
11
11
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
12
12
  s.authors = ["Victor Costan"]
@@ -1,6 +1,6 @@
1
1
  <h2>Editing Configuration Variable</h2>
2
2
 
3
- <%= form_for(@config_var, url: config_var_path,
3
+ <%= form_for(@config_var, url: config_vars_path,
4
4
  html: { method: :put }) do |f| %>
5
5
  <% if @config_var.errors.any? %>
6
6
  <div id="error_explanation">
@@ -54,6 +54,7 @@ class ConfigVarsControllerApiTest < ActionController::TestCase
54
54
  test "should get edit" do
55
55
  get :edit, name: @config_var.to_param
56
56
  assert_response :success
57
+ assert_select 'form[action$=/config_vars]'
57
58
  end
58
59
 
59
60
  test "should update config_var" do
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: configvars_rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.0
4
+ version: 0.6.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Victor Costan