viewable 0.5.9 → 0.5.10

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: 3b6c256de5cea79ae41642ea415a230b39b81810
4
- data.tar.gz: 3e2ef870833bd7aeeeccc1d32cf6cc7b50d8f002
3
+ metadata.gz: 4a7a7bdf5e1ba1c0e1b97270ce8c8236454e66d1
4
+ data.tar.gz: 55aba5525f9f8c123bd1e063eb4a9657c3ceb62f
5
5
  SHA512:
6
- metadata.gz: fd2b838d2a432435c22a5bb16f174a931d47c1a766e2cb68fa09509753b8f798aae208ec62ce05214e0172dac01c826ed4a776c2572fc350d000643b610a54b5
7
- data.tar.gz: 3772ca31be1c605fe00aa417850577ce42c1cc8e9557f006447d36137a6ae42617000c7dc71064c6d9cb3552f81ed91918c1833b3200514f2f75bdd441866e6a
6
+ metadata.gz: 7d9fd97364a896b422f075353c922dc784b9a0c782e4299620348a4d78afecf72b410412d7398e4089a51a634ba8cb54a15352578229d0734cbc2140cd1573b2
7
+ data.tar.gz: b5c5603df5b0dd00a3d09a17d241dcc80f06dd6d252d1b312eed2af0625702721f414c6b29b56575d89f329d3b1b383fc08270f8675a6c9d493ee7aee5935244
data/README.md CHANGED
@@ -11,7 +11,7 @@
11
11
 
12
12
  Viewable works with Rails 4.0. Add this line to your Gemfile:
13
13
 
14
- gem 'viewable', '~> 0.5.9'
14
+ gem 'viewable', '~> 0.5.10'
15
15
 
16
16
  Then execute:
17
17
 
@@ -6,7 +6,7 @@
6
6
  <%%= link_to "Show all viewing", <%=viewable_views_name.singularize%>_viewings_path(<%=viewable_views_name.singularize%>) %>
7
7
  <%%= link_to "Delete", <%=viewable_views_name.singularize%>_path(<%=viewable_views_name.singularize%>), data: { confirm: 'Are you sure?' }, method: :delete %>
8
8
  <%%= link_to "Edit", edit_<%=viewable_views_name.singularize%>_path(<%=viewable_views_name.singularize%>) %>
9
- <%%= link_to "Add viewing", new_<%=viewable_views_name.singularize%>_viewings_path(<%=viewable_views_name.singularize%>) %>
9
+ <%%= link_to "Add viewing", new_<%=viewable_views_name.singularize%>_viewing_path(<%=viewable_views_name.singularize%>) %>
10
10
  </div>
11
11
  <%% end %>
12
12
  <%%= link_to "New", new_<%=viewable_views_name.singularize%>_path(<%=viewable_views_name.singularize%>) %>
data/viewable.gemspec CHANGED
@@ -5,7 +5,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
5
5
  Gem::Specification.new do |s|
6
6
  # metadata
7
7
  s.name = 'viewable'
8
- s.version = '0.5.9'
8
+ s.version = '0.5.10'
9
9
  s.licenses = ['MIT']
10
10
  s.summary = %q{a viewings calendar gem for rails 4.0}
11
11
  s.description = %q{Viewable is a Rails 4.0 gem that enables you to add resource viewing functionality to your Rails application. A resource can be anything that is viewable e.g. function room, conference hall. }
@@ -28,4 +28,5 @@ Gem::Specification.new do |s|
28
28
  # runtime dependencies
29
29
  s.add_dependency 'jbuilder', '~> 2.0'
30
30
  s.add_dependency 'rails_12factor', '~> 0.0.3'
31
+ s.add_dependency 'responders', '~> 2.0'
31
32
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: viewable
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.9
4
+ version: 0.5.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tom Cox
@@ -67,6 +67,20 @@ dependencies:
67
67
  - - "~>"
68
68
  - !ruby/object:Gem::Version
69
69
  version: 0.0.3
70
+ - !ruby/object:Gem::Dependency
71
+ name: responders
72
+ requirement: !ruby/object:Gem::Requirement
73
+ requirements:
74
+ - - "~>"
75
+ - !ruby/object:Gem::Version
76
+ version: '2.0'
77
+ type: :runtime
78
+ prerelease: false
79
+ version_requirements: !ruby/object:Gem::Requirement
80
+ requirements:
81
+ - - "~>"
82
+ - !ruby/object:Gem::Version
83
+ version: '2.0'
70
84
  description: 'Viewable is a Rails 4.0 gem that enables you to add resource viewing
71
85
  functionality to your Rails application. A resource can be anything that is viewable
72
86
  e.g. function room, conference hall. '