bootsy 2.0.10 → 2.0.11
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 820e0bc4f995904c5752a2368376ee0702667cd4
|
4
|
+
data.tar.gz: 4e488bfa53486db0a91b52d49cb6057ccfcc65b7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e008a0a422e94b496932314e14100003f491724e4e7fca6588a5cff8dfbb9e8cf87f56512809aee54d7ec8ca5540d29a5ba0f1a39193681747e2641592131881
|
7
|
+
data.tar.gz: fae73019c6c3523bc1144af866cf4715c87c6b87d7dd86266bb14aab2517da4324119fc35ef4edeb87ed659ef38335a41f01ed89450cdde732f43175f389afe8
|
File without changes
|
File without changes
|
data/lib/bootsy/version.rb
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
module Bootsy
|
2
2
|
module Generators
|
3
3
|
class InstallGenerator < Rails::Generators::Base
|
4
|
-
source_root __FILE__
|
4
|
+
source_root File.expand_path('../templates', __FILE__)
|
5
5
|
|
6
6
|
def add_routes
|
7
|
-
route
|
7
|
+
route "mount Bootsy::Engine => '/bootsy', as: 'bootsy'"
|
8
8
|
end
|
9
9
|
|
10
10
|
def copy_locale
|
11
|
-
copy_file
|
11
|
+
copy_file '../../../../config/locales/bootsy.en.yml', 'config/locales/bootsy.en.yml'
|
12
12
|
end
|
13
13
|
|
14
14
|
def add_assets
|
@@ -43,7 +43,7 @@ module Bootsy
|
|
43
43
|
end
|
44
44
|
|
45
45
|
def copy_config
|
46
|
-
template
|
46
|
+
template 'bootsy.rb', 'config/initializers/bootsy.rb'
|
47
47
|
end
|
48
48
|
end
|
49
49
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bootsy
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.
|
4
|
+
version: 2.0.11
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Volmer Soares
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-
|
11
|
+
date: 2014-10-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: mini_magick
|
@@ -86,8 +86,8 @@ files:
|
|
86
86
|
- app/views/bootsy/images/_modal.html.erb
|
87
87
|
- app/views/bootsy/images/_new.html.erb
|
88
88
|
- config/cucumber.yml
|
89
|
-
- config/locales/en.yml
|
90
|
-
- config/locales/pt-BR.yml
|
89
|
+
- config/locales/bootsy.en.yml
|
90
|
+
- config/locales/bootsy.pt-BR.yml
|
91
91
|
- config/routes.rb
|
92
92
|
- db/migrate/20120624171333_create_bootsy_images.rb
|
93
93
|
- db/migrate/20120628124845_create_bootsy_image_galleries.rb
|