mix-rails 0.12.2 → 0.15.0

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.
Files changed (36) hide show
  1. data/Gemfile +1 -0
  2. data/MIX_RAILS_VERSION +1 -1
  3. data/README.md +26 -0
  4. data/admix/app/assets/javascripts/admix/application.js.coffee +0 -1
  5. data/admix/lib/admix/version.rb +2 -2
  6. data/mix-rails-albums/app/assets/javascripts/backbone/routers/photos_router.js.coffee +7 -6
  7. data/mix-rails-albums/app/assets/javascripts/backbone/templates/photos/thumbnail.hamlc.erb +2 -2
  8. data/mix-rails-albums/app/assets/javascripts/backbone/templates/photos/upload_index.hamlc.erb +13 -1
  9. data/mix-rails-albums/app/assets/javascripts/backbone/views/photos/upload_index_view.js.coffee +1 -1
  10. data/mix-rails-albums/app/assets/javascripts/photos/upload.js.coffee.erb +19 -4
  11. data/mix-rails-albums/app/views/admix/photos/_upload.html.haml +3 -13
  12. data/mix-rails-albums/lib/mix-rails-albums/version.rb +2 -2
  13. data/mix-rails-auth/lib/mix-rails-auth/version.rb +2 -2
  14. data/mix-rails-auth/lib/tasks/auth_tasks.rake +12 -0
  15. data/mix-rails-auth/script/rails +1 -1
  16. data/mix-rails-core/config/initializers/mongoid.rb +1 -3
  17. data/mix-rails-core/lib/{mix-rails → mix-rails-core}/concerns/engine.rb +0 -0
  18. data/mix-rails-core/lib/{mix-rails → mix-rails-core}/engine.rb +0 -0
  19. data/mix-rails-core/lib/{mix-rails → mix-rails-core}/railtie.rb +0 -0
  20. data/mix-rails-core/lib/{mix-rails → mix-rails-core}/version.rb +2 -2
  21. data/mix-rails-core/lib/mix-rails-core.rb +2 -2
  22. data/mix-rails-core/script/rails +1 -1
  23. data/mix-rails-message-board/lib/mix-rails-message-board/version.rb +2 -2
  24. data/mix-rails-message-board/script/rails +1 -1
  25. data/mix-rails-settings/lib/mix-rails-settings/version.rb +2 -2
  26. data/mix-rails-settings/script/rails +1 -1
  27. data/mix-rails-songs/lib/mix-rails-songs/version.rb +2 -2
  28. data/mix-rails-songs/script/rails +1 -1
  29. data/mix-rails-videos/lib/mix-rails-videos/version.rb +2 -2
  30. data/mix-rails-videos/script/rails +1 -1
  31. data/mix-rails-vouchers/lib/mix-rails-vouchers/version.rb +2 -2
  32. data/mix-rails-vouchers/script/rails +1 -1
  33. data/mix-rails-writer/lib/mix-rails-writer/version.rb +2 -2
  34. data/mix-rails-writer/script/rails +1 -1
  35. data/version.rb +2 -2
  36. metadata +27 -27
data/Gemfile CHANGED
@@ -1,4 +1,5 @@
1
1
  source 'https://rubygems.org'
2
+ Encoding.default_external = Encoding::UTF_8
2
3
 
3
4
  # Specify your gem's dependencies in mix-rails.gemspec
4
5
  gemspec
data/MIX_RAILS_VERSION CHANGED
@@ -1 +1 @@
1
- 0.12.2
1
+ 0.15.0
data/README.md CHANGED
@@ -50,5 +50,31 @@ And then run the application
50
50
  4. Push to the branch (`git push origin my-new-feature`)
51
51
  5. Create new Pull Request
52
52
 
53
+ # Assets
54
+ You can use Backbone, CoffeeScript, HAML,
55
+
56
+ # Auth
57
+ Mix-Rails uses [Devise](https://github.com/plataformatec/devise) for auth, you can see more docs at:
58
+
59
+ Create a default user.
60
+
61
+ $ bundle exec rake create_user[yourname@example.com,mypassword]
62
+
63
+ If you are using admix enter /admix and you will see the login page.
64
+ You can also login with page /users/sign_in
65
+
53
66
  # Admix
67
+
68
+ Admix is a administrative area for any system.
69
+
70
+ ## URL
71
+
72
+ You can change default path for admix setting Admix::namespace_path
73
+ ```ruby
74
+ Admix::namespace_path = "myadminpath"
75
+ # You will access http://localhost:3000/myadminpath and see Admix running!!
76
+ ```
77
+
78
+ TODO: Add some docs for admix
79
+
54
80
  [![Admix](http://img233.imageshack.us/img233/6731/screenshotfrom201301221.png)]
@@ -4,7 +4,6 @@
4
4
  #= require backbone
5
5
  #= require backbone_rails_sync
6
6
  #= require backbone_datalink
7
- #= require_tree .
8
7
  #= require jquery/jquery.livequery
9
8
  #= require fancybox
10
9
  #= require jquery.ui.datepicker
@@ -1,8 +1,8 @@
1
1
  module Admix
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 0
4
- MINOR = 12
5
- TINY = 2
4
+ MINOR = 15
5
+ TINY = 0
6
6
  PRE = nil
7
7
 
8
8
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
@@ -1,6 +1,7 @@
1
1
  class Application.Routers.PhotosRouter extends Backbone.Router
2
2
  initialize: (options) ->
3
3
  @photos = new Application.Collections.PhotosCollection()
4
+ @photos.url = options.collectionUrl
4
5
  @photos.reset options.photos
5
6
 
6
7
  routes:
@@ -9,28 +10,28 @@ class Application.Routers.PhotosRouter extends Backbone.Router
9
10
  "upload_index" : "upload_index"
10
11
  ":id/edit" : "edit"
11
12
  ":id" : "show"
12
- ".*" : "index"
13
+ ".*" : "upload_index"
13
14
 
14
15
  newPhoto: ->
15
16
  @view = new Application.Views.Photos.NewView(collection: @photos)
16
- $("#photos").html(@view.render().el)
17
+ $("#upload-container").html(@view.render().el)
17
18
 
18
19
  index: ->
19
20
  @view = new Application.Views.Photos.IndexView(photos: @photos)
20
- $("#photos").html(@view.render().el)
21
+ $("#upload-container").html(@view.render().el)
21
22
 
22
23
  upload_index: ->
23
24
  @view = new Application.Views.Photos.UploadIndexView(photos: @photos)
24
- $("#photos").html(@view.render().el)
25
+ $("#upload-container").html(@view.render().el)
25
26
 
26
27
  show: (id) ->
27
28
  photo = @photos.get(id)
28
29
 
29
30
  @view = new Application.Views.Photos.ShowView(model: photo)
30
- $("#photos").html(@view.render().el)
31
+ $("#upload-container").html(@view.render().el)
31
32
 
32
33
  edit: (id) ->
33
34
  photo = @photos.get(id)
34
35
 
35
36
  @view = new Application.Views.Photos.EditView(model: photo)
36
- $("#photos").html(@view.render().el)
37
+ $("#upload-container").html(@view.render().el)
@@ -1,4 +1,4 @@
1
- .thumbnail.file-item
1
+ .thumbnail
2
2
  .file-title
3
3
  = @title
4
4
  %a.link-popover{"data-content" => "<i class=icon-edit></i> Edit"}
@@ -12,5 +12,5 @@
12
12
  %div{class: (@progress < 100) ? 'progress progress-striped active' : 'progress'}
13
13
  .bar{style: "width:#{@progress}%;"}
14
14
  .caption
15
- %a.file-action.delete{href: "#"}
15
+ %a.file-action.destroy{href: "#"}
16
16
  <%= image_tag "albums/delete.png" %>
@@ -1 +1,13 @@
1
- .photos-container
1
+ #upload-buttons{:style => "padding: 20px;"}
2
+ %div{:style => "display:none;"}
3
+ %input#uploader{:multiple => "multiple", :name => "files", :style => "display:none;", :type => "file", :value => "Selecionar File(s)"}/
4
+ %input#uploaderZip{:name => "files", :style => "display:none;", :type => "file", :value => "Selecionar File(s)"}/
5
+ %p <%= "I18n.t('photos.upload.explanation')" %>
6
+ %div
7
+ %a.btn.btn-primary.btn-upload{:onclick => "jQuery('#uploader').click();"} <%= I18n.t('photos.btn.upload_pictures') %>
8
+ -#
9
+ <%= I18n.t('photos.or') %>
10
+ %a.btn.btn-primary.btn-upload{:onclick => "jQuery('#uploaderZip').click();"} <%= I18n.t('photos.btn.upload_zip') %>
11
+
12
+ #fileZip
13
+ %ul#photos.thumbnails
@@ -13,7 +13,7 @@ class Application.Views.Photos.UploadIndexView extends Backbone.View
13
13
 
14
14
  addOne: (photo) =>
15
15
  view = new Application.Views.Photos.PhotoView({model : photo})
16
- @$(".photos-container").append(view.render().el)
16
+ @$("#photos").append(view.render().el)
17
17
 
18
18
  render: =>
19
19
  @$el.html(@template(photos: @options.photos.toJSON() ))
@@ -2,8 +2,23 @@
2
2
  #= require_self
3
3
 
4
4
  <% url = Rails.application.routes.url_helpers %>
5
-
6
5
  $ ->
7
- $.getJSON $("#photos").data('url'),(json) ->
8
- new Application.Routers.PhotosRouter(photos: json)
9
- Backbone.history.start()
6
+ $.getJSON RESOURCE_PATH,(json) ->
7
+ new Application.Routers.PhotosRouter(collectionUrl: RESOURCE_PATH, photos: json)
8
+ Backbone.history.start()
9
+
10
+ $("#uploader").change (el) ->
11
+ files = el.currentTarget.files
12
+ i = 0
13
+ while i < files.length
14
+ photo = new Application.Models.Photo(
15
+ image: files[i]
16
+ name: files[i].name
17
+ )
18
+ photo.url = fileList.url
19
+ fileList.add photo
20
+ setTimeout (->
21
+ fileList.add photo
22
+ ), 1000
23
+ i++
24
+ fileListView.render()
@@ -1,17 +1,7 @@
1
1
  - content_for :javascripts do
2
2
  = javascript_include_tag 'photos/upload'
3
+ :coffeescript
4
+ window.RESOURCE_PATH = "#{admix_album_photos_path(defined?(parent) ? parent : resource)}"
3
5
 
4
6
  %h3 Upload de fotos
5
- #upload-buttons{:style => "padding: 20px;"}
6
- %div{:style => "display:none;"}
7
- %input#uploader{:multiple => "multiple", :name => "files", :style => "display:none;", :type => "file", :value => "Selecionar File(s)"}/
8
- %input#uploaderZip{:name => "files", :style => "display:none;", :type => "file", :value => "Selecionar File(s)"}/
9
- %p= t('photos.upload.explanation')
10
- %div
11
- %a.btn.btn-primary.btn-upload{:onclick => "jQuery('#uploader').click();"}= t('photos.btn.upload_pictures')
12
- -#
13
- = t('photos.or')
14
- %a.btn.btn-primary.btn-upload{:onclick => "jQuery('#uploaderZip').click();"}= t('photos.btn.upload_zip')
15
-
16
- #fileZip
17
- %ul#photos.thumbnails{'data-url' => admix_album_photos_path(defined?(parent) ? parent : resource)}
7
+ #upload-container
@@ -1,8 +1,8 @@
1
1
  module MixRailsAlbums
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 0
4
- MINOR = 12
5
- TINY = 2
4
+ MINOR = 15
5
+ TINY = 0
6
6
  PRE = nil
7
7
 
8
8
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
@@ -1,8 +1,8 @@
1
1
  module MixRailsAuth
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 0
4
- MINOR = 12
5
- TINY = 2
4
+ MINOR = 15
5
+ TINY = 0
6
6
  PRE = nil
7
7
 
8
8
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
@@ -2,3 +2,15 @@
2
2
  # task :auth do
3
3
  # # Task goes here
4
4
  # end
5
+ #
6
+ #
7
+ desc "Create a default user as admin"
8
+ task :create_user, [:email, :password] => [:environment] do |t, args|
9
+ puts "Creating new user with #{:email} and password *** !"
10
+ u = User.create({email: args.email, password: args.password, password_confirmation: args.password})
11
+ if u.save!
12
+ puts "User created!"
13
+ else
14
+ puts "Error"
15
+ end
16
+ end
@@ -2,7 +2,7 @@
2
2
  # This command will automatically be run when you run "rails" with Rails 3 gems installed from the root of your application.
3
3
 
4
4
  ENGINE_ROOT = File.expand_path('../..', __FILE__)
5
- ENGINE_PATH = File.expand_path('../../lib/auth/engine', __FILE__)
5
+ ENGINE_PATH = File.expand_path('../../lib/mix-rails-auth/engine', __FILE__)
6
6
 
7
7
  require 'rails/all'
8
8
  require 'rails/engine/commands'
@@ -1,3 +1 @@
1
- puts "==================================================="
2
- #Mongoid.include_root_in_json = false
3
- puts "==================================================="
1
+ #Mongoid.include_root_in_json = false
@@ -1,8 +1,8 @@
1
1
  module MixRailsCore
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 0
4
- MINOR = 12
5
- TINY = 2
4
+ MINOR = 15
5
+ TINY = 0
6
6
  PRE = nil
7
7
 
8
8
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
@@ -1,7 +1,7 @@
1
- require 'mix-rails/railtie' if defined?(Rails)
1
+ require 'mix-rails-core/railtie' if defined?(Rails)
2
2
 
3
3
 
4
- require 'mix-rails/engine'
4
+ require 'mix-rails-core/engine'
5
5
 
6
6
  require 'enumerize'
7
7
 
@@ -2,7 +2,7 @@
2
2
  # This command will automatically be run when you run "rails" with Rails 3 gems installed from the root of your application.
3
3
 
4
4
  ENGINE_ROOT = File.expand_path('../..', __FILE__)
5
- ENGINE_PATH = File.expand_path('../../lib/mix-rails/engine', __FILE__)
5
+ ENGINE_PATH = File.expand_path('../../lib/mix-rails-core/engine', __FILE__)
6
6
 
7
7
  require 'rails/all'
8
8
  require 'rails/engine/commands'
@@ -1,8 +1,8 @@
1
1
  module MixRailsMessageBoard
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 0
4
- MINOR = 12
5
- TINY = 2
4
+ MINOR = 15
5
+ TINY = 0
6
6
  PRE = nil
7
7
 
8
8
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
@@ -2,7 +2,7 @@
2
2
  # This command will automatically be run when you run "rails" with Rails 3 gems installed from the root of your application.
3
3
 
4
4
  ENGINE_ROOT = File.expand_path('../..', __FILE__)
5
- ENGINE_PATH = File.expand_path('../../lib/message-board/engine', __FILE__)
5
+ ENGINE_PATH = File.expand_path('../../lib/mix-rails-message-board/engine', __FILE__)
6
6
 
7
7
  require 'rails/all'
8
8
  require 'rails/engine/commands'
@@ -1,8 +1,8 @@
1
1
  module MixRailsSettings
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 0
4
- MINOR = 12
5
- TINY = 2
4
+ MINOR = 15
5
+ TINY = 0
6
6
  PRE = nil
7
7
 
8
8
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
@@ -2,7 +2,7 @@
2
2
  # This command will automatically be run when you run "rails" with Rails 3 gems installed from the root of your application.
3
3
 
4
4
  ENGINE_ROOT = File.expand_path('../..', __FILE__)
5
- ENGINE_PATH = File.expand_path('../../lib/settings/engine', __FILE__)
5
+ ENGINE_PATH = File.expand_path('../../lib/mix-rails-settings/engine', __FILE__)
6
6
 
7
7
  require 'rails/all'
8
8
  require 'rails/engine/commands'
@@ -1,8 +1,8 @@
1
1
  module MixRailsSongs
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 0
4
- MINOR = 12
5
- TINY = 2
4
+ MINOR = 15
5
+ TINY = 0
6
6
  PRE = nil
7
7
 
8
8
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
@@ -2,7 +2,7 @@
2
2
  # This command will automatically be run when you run "rails" with Rails 3 gems installed from the root of your application.
3
3
 
4
4
  ENGINE_ROOT = File.expand_path('../..', __FILE__)
5
- ENGINE_PATH = File.expand_path('../../lib/songs/engine', __FILE__)
5
+ ENGINE_PATH = File.expand_path('../../lib/mix-rails-songs/engine', __FILE__)
6
6
 
7
7
  require 'rails/all'
8
8
  require 'rails/engine/commands'
@@ -1,8 +1,8 @@
1
1
  module MixRailsVideos
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 0
4
- MINOR = 12
5
- TINY = 2
4
+ MINOR = 15
5
+ TINY = 0
6
6
  PRE = nil
7
7
 
8
8
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
@@ -2,7 +2,7 @@
2
2
  # This command will automatically be run when you run "rails" with Rails 3 gems installed from the root of your application.
3
3
 
4
4
  ENGINE_ROOT = File.expand_path('../..', __FILE__)
5
- ENGINE_PATH = File.expand_path('../../lib/videos/engine', __FILE__)
5
+ ENGINE_PATH = File.expand_path('../../lib/mix-rails-videos/engine', __FILE__)
6
6
 
7
7
  require 'rails/all'
8
8
  require 'rails/engine/commands'
@@ -1,8 +1,8 @@
1
1
  module MixRailsVouchers
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 0
4
- MINOR = 12
5
- TINY = 2
4
+ MINOR = 15
5
+ TINY = 0
6
6
  PRE = nil
7
7
 
8
8
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
@@ -2,7 +2,7 @@
2
2
  # This command will automatically be run when you run "rails" with Rails 3 gems installed from the root of your application.
3
3
 
4
4
  ENGINE_ROOT = File.expand_path('../..', __FILE__)
5
- ENGINE_PATH = File.expand_path('../../lib/mix-vouchers/engine', __FILE__)
5
+ ENGINE_PATH = File.expand_path('../../lib/mix-rails-vouchers/engine', __FILE__)
6
6
 
7
7
  require 'rails/all'
8
8
  require 'rails/engine/commands'
@@ -1,8 +1,8 @@
1
1
  module MixRailsWriter
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 0
4
- MINOR = 12
5
- TINY = 2
4
+ MINOR = 15
5
+ TINY = 0
6
6
  PRE = nil
7
7
 
8
8
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
@@ -2,7 +2,7 @@
2
2
  # This command will automatically be run when you run "rails" with Rails 3 gems installed from the root of your application.
3
3
 
4
4
  ENGINE_ROOT = File.expand_path('../..', __FILE__)
5
- ENGINE_PATH = File.expand_path('../../lib/writer/engine', __FILE__)
5
+ ENGINE_PATH = File.expand_path('../../lib/mix-rails-writer/engine', __FILE__)
6
6
 
7
7
  require 'rails/all'
8
8
  require 'rails/engine/commands'
data/version.rb CHANGED
@@ -1,8 +1,8 @@
1
1
  module MixRailsCore
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 0
4
- MINOR = 12
5
- TINY = 2
4
+ MINOR = 15
5
+ TINY = 0
6
6
  PRE = nil
7
7
 
8
8
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mix-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.12.2
4
+ version: 0.15.0
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -18,7 +18,7 @@ dependencies:
18
18
  requirements:
19
19
  - - '='
20
20
  - !ruby/object:Gem::Version
21
- version: 0.12.2
21
+ version: 0.15.0
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - '='
28
28
  - !ruby/object:Gem::Version
29
- version: 0.12.2
29
+ version: 0.15.0
30
30
  - !ruby/object:Gem::Dependency
31
31
  name: mix-rails-auth
32
32
  requirement: !ruby/object:Gem::Requirement
@@ -34,7 +34,7 @@ dependencies:
34
34
  requirements:
35
35
  - - '='
36
36
  - !ruby/object:Gem::Version
37
- version: 0.12.2
37
+ version: 0.15.0
38
38
  type: :runtime
39
39
  prerelease: false
40
40
  version_requirements: !ruby/object:Gem::Requirement
@@ -42,7 +42,7 @@ dependencies:
42
42
  requirements:
43
43
  - - '='
44
44
  - !ruby/object:Gem::Version
45
- version: 0.12.2
45
+ version: 0.15.0
46
46
  - !ruby/object:Gem::Dependency
47
47
  name: admix
48
48
  requirement: !ruby/object:Gem::Requirement
@@ -50,7 +50,7 @@ dependencies:
50
50
  requirements:
51
51
  - - '='
52
52
  - !ruby/object:Gem::Version
53
- version: 0.12.2
53
+ version: 0.15.0
54
54
  type: :runtime
55
55
  prerelease: false
56
56
  version_requirements: !ruby/object:Gem::Requirement
@@ -58,7 +58,7 @@ dependencies:
58
58
  requirements:
59
59
  - - '='
60
60
  - !ruby/object:Gem::Version
61
- version: 0.12.2
61
+ version: 0.15.0
62
62
  - !ruby/object:Gem::Dependency
63
63
  name: mix-rails-settings
64
64
  requirement: !ruby/object:Gem::Requirement
@@ -66,7 +66,7 @@ dependencies:
66
66
  requirements:
67
67
  - - '='
68
68
  - !ruby/object:Gem::Version
69
- version: 0.12.2
69
+ version: 0.15.0
70
70
  type: :runtime
71
71
  prerelease: false
72
72
  version_requirements: !ruby/object:Gem::Requirement
@@ -74,7 +74,7 @@ dependencies:
74
74
  requirements:
75
75
  - - '='
76
76
  - !ruby/object:Gem::Version
77
- version: 0.12.2
77
+ version: 0.15.0
78
78
  - !ruby/object:Gem::Dependency
79
79
  name: mix-rails-writer
80
80
  requirement: !ruby/object:Gem::Requirement
@@ -82,7 +82,7 @@ dependencies:
82
82
  requirements:
83
83
  - - '='
84
84
  - !ruby/object:Gem::Version
85
- version: 0.12.2
85
+ version: 0.15.0
86
86
  type: :runtime
87
87
  prerelease: false
88
88
  version_requirements: !ruby/object:Gem::Requirement
@@ -90,7 +90,7 @@ dependencies:
90
90
  requirements:
91
91
  - - '='
92
92
  - !ruby/object:Gem::Version
93
- version: 0.12.2
93
+ version: 0.15.0
94
94
  - !ruby/object:Gem::Dependency
95
95
  name: mix-rails-albums
96
96
  requirement: !ruby/object:Gem::Requirement
@@ -98,7 +98,7 @@ dependencies:
98
98
  requirements:
99
99
  - - '='
100
100
  - !ruby/object:Gem::Version
101
- version: 0.12.2
101
+ version: 0.15.0
102
102
  type: :runtime
103
103
  prerelease: false
104
104
  version_requirements: !ruby/object:Gem::Requirement
@@ -106,7 +106,7 @@ dependencies:
106
106
  requirements:
107
107
  - - '='
108
108
  - !ruby/object:Gem::Version
109
- version: 0.12.2
109
+ version: 0.15.0
110
110
  - !ruby/object:Gem::Dependency
111
111
  name: mix-rails-videos
112
112
  requirement: !ruby/object:Gem::Requirement
@@ -114,7 +114,7 @@ dependencies:
114
114
  requirements:
115
115
  - - '='
116
116
  - !ruby/object:Gem::Version
117
- version: 0.12.2
117
+ version: 0.15.0
118
118
  type: :runtime
119
119
  prerelease: false
120
120
  version_requirements: !ruby/object:Gem::Requirement
@@ -122,7 +122,7 @@ dependencies:
122
122
  requirements:
123
123
  - - '='
124
124
  - !ruby/object:Gem::Version
125
- version: 0.12.2
125
+ version: 0.15.0
126
126
  - !ruby/object:Gem::Dependency
127
127
  name: mix-rails-message-board
128
128
  requirement: !ruby/object:Gem::Requirement
@@ -130,7 +130,7 @@ dependencies:
130
130
  requirements:
131
131
  - - '='
132
132
  - !ruby/object:Gem::Version
133
- version: 0.12.2
133
+ version: 0.15.0
134
134
  type: :runtime
135
135
  prerelease: false
136
136
  version_requirements: !ruby/object:Gem::Requirement
@@ -138,7 +138,7 @@ dependencies:
138
138
  requirements:
139
139
  - - '='
140
140
  - !ruby/object:Gem::Version
141
- version: 0.12.2
141
+ version: 0.15.0
142
142
  - !ruby/object:Gem::Dependency
143
143
  name: mix-rails-vouchers
144
144
  requirement: !ruby/object:Gem::Requirement
@@ -146,7 +146,7 @@ dependencies:
146
146
  requirements:
147
147
  - - '='
148
148
  - !ruby/object:Gem::Version
149
- version: 0.12.2
149
+ version: 0.15.0
150
150
  type: :runtime
151
151
  prerelease: false
152
152
  version_requirements: !ruby/object:Gem::Requirement
@@ -154,7 +154,7 @@ dependencies:
154
154
  requirements:
155
155
  - - '='
156
156
  - !ruby/object:Gem::Version
157
- version: 0.12.2
157
+ version: 0.15.0
158
158
  - !ruby/object:Gem::Dependency
159
159
  name: mix-rails-songs
160
160
  requirement: !ruby/object:Gem::Requirement
@@ -162,7 +162,7 @@ dependencies:
162
162
  requirements:
163
163
  - - '='
164
164
  - !ruby/object:Gem::Version
165
- version: 0.12.2
165
+ version: 0.15.0
166
166
  type: :runtime
167
167
  prerelease: false
168
168
  version_requirements: !ruby/object:Gem::Requirement
@@ -170,7 +170,7 @@ dependencies:
170
170
  requirements:
171
171
  - - '='
172
172
  - !ruby/object:Gem::Version
173
- version: 0.12.2
173
+ version: 0.15.0
174
174
  - !ruby/object:Gem::Dependency
175
175
  name: fancybox-rails
176
176
  requirement: !ruby/object:Gem::Requirement
@@ -1591,10 +1591,10 @@ files:
1591
1591
  - mix-rails-core/config/locales/core.pt-BR.yml
1592
1592
  - mix-rails-core/config/routes.rb
1593
1593
  - mix-rails-core/lib/mix-rails-core.rb
1594
- - mix-rails-core/lib/mix-rails/concerns/engine.rb
1595
- - mix-rails-core/lib/mix-rails/engine.rb
1596
- - mix-rails-core/lib/mix-rails/railtie.rb
1597
- - mix-rails-core/lib/mix-rails/version.rb
1594
+ - mix-rails-core/lib/mix-rails-core/concerns/engine.rb
1595
+ - mix-rails-core/lib/mix-rails-core/engine.rb
1596
+ - mix-rails-core/lib/mix-rails-core/railtie.rb
1597
+ - mix-rails-core/lib/mix-rails-core/version.rb
1598
1598
  - mix-rails-core/lib/tasks/mix-rails_tasks.rake
1599
1599
  - mix-rails-core/mix-rails-core.gemspec
1600
1600
  - mix-rails-core/script/rails
@@ -2044,7 +2044,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
2044
2044
  version: '0'
2045
2045
  segments:
2046
2046
  - 0
2047
- hash: 1312724239574122502
2047
+ hash: 3551598122156761475
2048
2048
  required_rubygems_version: !ruby/object:Gem::Requirement
2049
2049
  none: false
2050
2050
  requirements:
@@ -2053,7 +2053,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
2053
2053
  version: '0'
2054
2054
  segments:
2055
2055
  - 0
2056
- hash: 1312724239574122502
2056
+ hash: 3551598122156761475
2057
2057
  requirements: []
2058
2058
  rubyforge_project:
2059
2059
  rubygems_version: 1.8.24