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.
- data/Gemfile +1 -0
- data/MIX_RAILS_VERSION +1 -1
- data/README.md +26 -0
- data/admix/app/assets/javascripts/admix/application.js.coffee +0 -1
- data/admix/lib/admix/version.rb +2 -2
- data/mix-rails-albums/app/assets/javascripts/backbone/routers/photos_router.js.coffee +7 -6
- data/mix-rails-albums/app/assets/javascripts/backbone/templates/photos/thumbnail.hamlc.erb +2 -2
- data/mix-rails-albums/app/assets/javascripts/backbone/templates/photos/upload_index.hamlc.erb +13 -1
- data/mix-rails-albums/app/assets/javascripts/backbone/views/photos/upload_index_view.js.coffee +1 -1
- data/mix-rails-albums/app/assets/javascripts/photos/upload.js.coffee.erb +19 -4
- data/mix-rails-albums/app/views/admix/photos/_upload.html.haml +3 -13
- data/mix-rails-albums/lib/mix-rails-albums/version.rb +2 -2
- data/mix-rails-auth/lib/mix-rails-auth/version.rb +2 -2
- data/mix-rails-auth/lib/tasks/auth_tasks.rake +12 -0
- data/mix-rails-auth/script/rails +1 -1
- data/mix-rails-core/config/initializers/mongoid.rb +1 -3
- data/mix-rails-core/lib/{mix-rails → mix-rails-core}/concerns/engine.rb +0 -0
- data/mix-rails-core/lib/{mix-rails → mix-rails-core}/engine.rb +0 -0
- data/mix-rails-core/lib/{mix-rails → mix-rails-core}/railtie.rb +0 -0
- data/mix-rails-core/lib/{mix-rails → mix-rails-core}/version.rb +2 -2
- data/mix-rails-core/lib/mix-rails-core.rb +2 -2
- data/mix-rails-core/script/rails +1 -1
- data/mix-rails-message-board/lib/mix-rails-message-board/version.rb +2 -2
- data/mix-rails-message-board/script/rails +1 -1
- data/mix-rails-settings/lib/mix-rails-settings/version.rb +2 -2
- data/mix-rails-settings/script/rails +1 -1
- data/mix-rails-songs/lib/mix-rails-songs/version.rb +2 -2
- data/mix-rails-songs/script/rails +1 -1
- data/mix-rails-videos/lib/mix-rails-videos/version.rb +2 -2
- data/mix-rails-videos/script/rails +1 -1
- data/mix-rails-vouchers/lib/mix-rails-vouchers/version.rb +2 -2
- data/mix-rails-vouchers/script/rails +1 -1
- data/mix-rails-writer/lib/mix-rails-writer/version.rb +2 -2
- data/mix-rails-writer/script/rails +1 -1
- data/version.rb +2 -2
- metadata +27 -27
data/Gemfile
CHANGED
data/MIX_RAILS_VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.
|
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
|
[]
|
data/admix/lib/admix/version.rb
CHANGED
@@ -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
|
-
".*" : "
|
13
|
+
".*" : "upload_index"
|
13
14
|
|
14
15
|
newPhoto: ->
|
15
16
|
@view = new Application.Views.Photos.NewView(collection: @photos)
|
16
|
-
$("#
|
17
|
+
$("#upload-container").html(@view.render().el)
|
17
18
|
|
18
19
|
index: ->
|
19
20
|
@view = new Application.Views.Photos.IndexView(photos: @photos)
|
20
|
-
$("#
|
21
|
+
$("#upload-container").html(@view.render().el)
|
21
22
|
|
22
23
|
upload_index: ->
|
23
24
|
@view = new Application.Views.Photos.UploadIndexView(photos: @photos)
|
24
|
-
$("#
|
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
|
-
$("#
|
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
|
-
$("#
|
37
|
+
$("#upload-container").html(@view.render().el)
|
@@ -1,4 +1,4 @@
|
|
1
|
-
.thumbnail
|
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.
|
15
|
+
%a.file-action.destroy{href: "#"}
|
16
16
|
<%= image_tag "albums/delete.png" %>
|
data/mix-rails-albums/app/assets/javascripts/backbone/templates/photos/upload_index.hamlc.erb
CHANGED
@@ -1 +1,13 @@
|
|
1
|
-
|
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
|
data/mix-rails-albums/app/assets/javascripts/backbone/views/photos/upload_index_view.js.coffee
CHANGED
@@ -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
|
-
@$("
|
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
|
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-
|
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
|
@@ -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
|
data/mix-rails-auth/script/rails
CHANGED
@@ -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'
|
File without changes
|
File without changes
|
File without changes
|
data/mix-rails-core/script/rails
CHANGED
@@ -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'
|
@@ -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'
|
@@ -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'
|
@@ -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'
|
@@ -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'
|
@@ -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'
|
@@ -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
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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:
|
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:
|
2056
|
+
hash: 3551598122156761475
|
2057
2057
|
requirements: []
|
2058
2058
|
rubyforge_project:
|
2059
2059
|
rubygems_version: 1.8.24
|