mix-rails-videos 0.23.1 → 0.24.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 16541fc8114786d0b00114dc8490358dc71a78e3
4
+ data.tar.gz: 002fa3c2475792df9a81c7a280dd772e9c0b2cd6
5
+ SHA512:
6
+ metadata.gz: b972c323cee1b1dd8af3889402e0dad09add045a2d90b17e1adac86c8242b06ab422499f9135ba133ec195167be0e112df0b7198962a70f92d98efce6fc69a86
7
+ data.tar.gz: b32e0ec3706a1c273623f6f872f38d901b5ba4b80105781e7f0e74c8856fb23dc95fa454e03066e4eadeadb4f2f33611dfffdb511a2c00c558fd9e109bdce40d
@@ -0,0 +1,3 @@
1
+ - admix_tab t('videos.video') do |t|
2
+ - t.tab_content do
3
+ = f.input :url
@@ -1,8 +1,8 @@
1
1
  module MixRailsVideos
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 0
4
- MINOR = 23
5
- TINY = 1
4
+ MINOR = 24
5
+ TINY = 0
6
6
  PRE = nil
7
7
 
8
8
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
metadata CHANGED
@@ -1,8 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mix-rails-videos
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.23.1
5
- prerelease:
4
+ version: 0.24.0
6
5
  platform: ruby
7
6
  authors:
8
7
  - Rafael Garcia
@@ -10,12 +9,11 @@ authors:
10
9
  autorequire:
11
10
  bindir: bin
12
11
  cert_chain: []
13
- date: 2013-02-18 00:00:00.000000000 Z
12
+ date: 2013-03-12 00:00:00.000000000 Z
14
13
  dependencies:
15
14
  - !ruby/object:Gem::Dependency
16
15
  name: rails
17
16
  requirement: !ruby/object:Gem::Requirement
18
- none: false
19
17
  requirements:
20
18
  - - ~>
21
19
  - !ruby/object:Gem::Version
@@ -23,7 +21,6 @@ dependencies:
23
21
  type: :runtime
24
22
  prerelease: false
25
23
  version_requirements: !ruby/object:Gem::Requirement
26
- none: false
27
24
  requirements:
28
25
  - - ~>
29
26
  - !ruby/object:Gem::Version
@@ -31,7 +28,6 @@ dependencies:
31
28
  - !ruby/object:Gem::Dependency
32
29
  name: simple_youtube
33
30
  requirement: !ruby/object:Gem::Requirement
34
- none: false
35
31
  requirements:
36
32
  - - ~>
37
33
  - !ruby/object:Gem::Version
@@ -39,7 +35,6 @@ dependencies:
39
35
  type: :runtime
40
36
  prerelease: false
41
37
  version_requirements: !ruby/object:Gem::Requirement
42
- none: false
43
38
  requirements:
44
39
  - - ~>
45
40
  - !ruby/object:Gem::Version
@@ -54,10 +49,9 @@ extra_rdoc_files: []
54
49
  files:
55
50
  - app/controllers/admix/videos_controller.rb
56
51
  - app/controllers/videos_controller.rb
57
- - app/models/admix/videos_datagrid.rb
58
52
  - app/models/video.rb
59
53
  - app/views/admix/videos/_show.html.haml
60
- - app/views/admix/videos/_form_fields.html.haml
54
+ - app/views/admix/videos/_form_config.haml
61
55
  - app/views/videos/index.html.haml
62
56
  - app/views/videos/_video_show.html.haml
63
57
  - app/views/videos/show.html.haml
@@ -74,32 +68,25 @@ files:
74
68
  - README.rdoc
75
69
  homepage: https://github.com/mixinternet/mix-rails
76
70
  licenses: []
71
+ metadata: {}
77
72
  post_install_message:
78
73
  rdoc_options: []
79
74
  require_paths:
80
75
  - lib
81
76
  required_ruby_version: !ruby/object:Gem::Requirement
82
- none: false
83
77
  requirements:
84
- - - ! '>='
78
+ - - '>='
85
79
  - !ruby/object:Gem::Version
86
80
  version: '0'
87
- segments:
88
- - 0
89
- hash: -3039004797383244383
90
81
  required_rubygems_version: !ruby/object:Gem::Requirement
91
- none: false
92
82
  requirements:
93
- - - ! '>='
83
+ - - '>='
94
84
  - !ruby/object:Gem::Version
95
85
  version: '0'
96
- segments:
97
- - 0
98
- hash: -3039004797383244383
99
86
  requirements: []
100
87
  rubyforge_project:
101
- rubygems_version: 1.8.24
88
+ rubygems_version: 2.0.0
102
89
  signing_key:
103
- specification_version: 3
90
+ specification_version: 4
104
91
  summary: This is the videos module of mix-rails
105
92
  test_files: []
@@ -1,21 +0,0 @@
1
- module Admix
2
- class VideosDatagrid
3
- include Datagrid
4
-
5
- scope do
6
- Video.most_recent
7
- end
8
-
9
- column :thumb, header: I18n.t('videos.fields.thumb') do |video|
10
- ActionController::Base.helpers.image_tag(video.thumb)
11
- end
12
-
13
- column :title, header: I18n.t('videos.fields.title')
14
-
15
- column :published_at, header: I18n.t('videos.fields.published_at') do |video|
16
- video.published_at.strftime('%d/%m/%Y')
17
- end
18
-
19
- include Admix::TableActions
20
- end
21
- end
@@ -1 +0,0 @@
1
- = f.input :url