best_boy 2.1.0 → 2.1.1
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 +4 -4
- data/README.md +8 -5
- data/lib/best_boy/version.rb +1 -1
- metadata +8 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 45cc627f80a04eea49c37f95feb5c4a3b1c267ce
|
|
4
|
+
data.tar.gz: 2073d883e1e6174d130a9eacdaeeee843759502b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3cecf3f9d739e936f6fcfe2ecb2dc29cf212ef2c7097de068f491782b63ba9099f35e15b1310382c23cf4056da3c0d72671db8dc0535cd0b4302daa2d3c84394
|
|
7
|
+
data.tar.gz: a82758fa6022073903543e65f3039045712052506278f11584a95ccc4f784933a83041bf78fc38d4e47c27110d3035ebf1929d112c2dc6b1c36e33782b465b5e
|
data/README.md
CHANGED
|
@@ -61,13 +61,16 @@ Run the migration
|
|
|
61
61
|
|
|
62
62
|
Changelog
|
|
63
63
|
---------
|
|
64
|
+
#### 2.1.1
|
|
65
|
+
* Compatible with Rails 4.1
|
|
66
|
+
|
|
64
67
|
#### 2.1.0
|
|
65
68
|
* Code cleanup - now compatible with RSpec 3 syntax
|
|
66
69
|
* Support a "dry-run" test mode
|
|
67
70
|
* Reduce public methods added by `BestBoy::Eventable` ([#4](https://github.com/Absolventa/best_boy/issues/4))
|
|
68
71
|
* Remove mass-assignments that could cause problems with the protected_attributes gem [#8](https://github.com/Absolventa/best_boy/issues/8)
|
|
69
72
|
* Do not expose mixed-in controller method ([#9](https://github.com/Absolventa/best_boy/issues/9)))
|
|
70
|
-
* Avoid potential
|
|
73
|
+
* Avoid potential name clashes for callbacks switch ([#10](https://github.com/Absolventa/best_boy/issues/10))
|
|
71
74
|
|
|
72
75
|
|
|
73
76
|
Update in Version 2
|
|
@@ -78,12 +81,12 @@ to copy the new migrations to your app by running
|
|
|
78
81
|
|
|
79
82
|
rails g best_boy --asset
|
|
80
83
|
|
|
81
|
-
again. This generator will also ask you to overwrite your existing initializer - just
|
|
82
|
-
reject this pressing 'n' for not overwriting your settings. Don't forget to run
|
|
83
|
-
|
|
84
|
+
again. This generator will also ask you to overwrite your existing initializer - just
|
|
85
|
+
reject this pressing 'n' for not overwriting your settings. Don't forget to run
|
|
86
|
+
|
|
84
87
|
rake db:migrate
|
|
85
88
|
|
|
86
|
-
in context of your mother app afterwards. See also section "Some thoughts about Performance"
|
|
89
|
+
in context of your mother app afterwards. See also section "Some thoughts about Performance"
|
|
87
90
|
for more details about new data organization.
|
|
88
91
|
|
|
89
92
|
|
data/lib/best_boy/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: best_boy
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.1.
|
|
4
|
+
version: 2.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Christoph Seydel, Robin Neumann, Daniel Schoppmann
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-
|
|
11
|
+
date: 2014-04-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|
|
@@ -17,6 +17,9 @@ dependencies:
|
|
|
17
17
|
- - ~>
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
19
|
version: 4.0.0
|
|
20
|
+
- - <
|
|
21
|
+
- !ruby/object:Gem::Version
|
|
22
|
+
version: '5.0'
|
|
20
23
|
type: :runtime
|
|
21
24
|
prerelease: false
|
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -24,6 +27,9 @@ dependencies:
|
|
|
24
27
|
- - ~>
|
|
25
28
|
- !ruby/object:Gem::Version
|
|
26
29
|
version: 4.0.0
|
|
30
|
+
- - <
|
|
31
|
+
- !ruby/object:Gem::Version
|
|
32
|
+
version: '5.0'
|
|
27
33
|
- !ruby/object:Gem::Dependency
|
|
28
34
|
name: kaminari
|
|
29
35
|
requirement: !ruby/object:Gem::Requirement
|