boxer 1.0.1 → 1.0.2
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +7 -7
- data/boxer.gemspec +2 -2
- data/lib/boxer/version.rb +1 -1
- metadata +10 -10
data/README.md
CHANGED
@@ -84,13 +84,13 @@ within a box—it's just Ruby:
|
|
84
84
|
|
85
85
|
## More Features
|
86
86
|
|
87
|
-
See [the wiki](/
|
87
|
+
See [the wiki](/gowalla/boxer/wiki) for more features of Boxer, including:
|
88
88
|
|
89
|
-
* [Extra Arguments](/
|
90
|
-
* [Preconditions](/
|
91
|
-
* [Helper Methods in Boxes](/
|
92
|
-
* [Box Includes](/
|
93
|
-
* [Multiple Inheritance](/
|
89
|
+
* [Extra Arguments](/gowalla/boxer/wiki/Extra-Arguments)
|
90
|
+
* [Preconditions](/gowalla/boxer/wiki/Preconditions)
|
91
|
+
* [Helper Methods in Boxes](/gowalla/boxer/wiki/Helper-Methods-in-Boxes)
|
92
|
+
* [Box Includes](/gowalla/boxer/wiki/Box-Includes)
|
93
|
+
* [Multiple Inheritance](/gowalla/boxer/wiki/Multiple-Inheritance)
|
94
94
|
|
95
95
|
## Installation
|
96
96
|
|
@@ -98,7 +98,7 @@ Install the [boxer gem](http://rubygems.org/gems/boxer).
|
|
98
98
|
|
99
99
|
## Original Author
|
100
100
|
|
101
|
-
* [Brad Fults](http://h3h.net/), Gowalla Incorporated
|
101
|
+
* [Brad Fults](http://h3h.net/), [Gowalla Incorporated](http://gowalla.com/)
|
102
102
|
|
103
103
|
## Inspiration
|
104
104
|
|
data/boxer.gemspec
CHANGED
@@ -7,10 +7,10 @@ Gem::Specification.new do |s|
|
|
7
7
|
s.version = Boxer::VERSION
|
8
8
|
s.authors = ['Brad Fults']
|
9
9
|
s.email = ['bfults@gmail.com']
|
10
|
-
s.homepage = 'http://github.com/
|
10
|
+
s.homepage = 'http://github.com/gowalla/boxer'
|
11
11
|
s.license = 'MIT'
|
12
12
|
s.summary = %q{Easy custom-defined templates for JSON generation of objects in Ruby.}
|
13
|
-
s.description = %q{A composable templating system for generating JSON via Ruby hashes,
|
13
|
+
s.description = %q{A composable templating system for generating JSON via Ruby hashes, with different possible views on each object and runtime data passing.}
|
14
14
|
|
15
15
|
s.files = `git ls-files`.split("\n")
|
16
16
|
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
data/lib/boxer/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: boxer
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.2
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -13,7 +13,7 @@ date: 2011-10-18 00:00:00.000000000Z
|
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: bundler
|
16
|
-
requirement: &
|
16
|
+
requirement: &70339242551180 !ruby/object:Gem::Requirement
|
17
17
|
none: false
|
18
18
|
requirements:
|
19
19
|
- - ! '>='
|
@@ -21,10 +21,10 @@ dependencies:
|
|
21
21
|
version: 1.0.10
|
22
22
|
type: :development
|
23
23
|
prerelease: false
|
24
|
-
version_requirements: *
|
24
|
+
version_requirements: *70339242551180
|
25
25
|
- !ruby/object:Gem::Dependency
|
26
26
|
name: rspec
|
27
|
-
requirement: &
|
27
|
+
requirement: &70339242550680 !ruby/object:Gem::Requirement
|
28
28
|
none: false
|
29
29
|
requirements:
|
30
30
|
- - ! '>='
|
@@ -32,10 +32,10 @@ dependencies:
|
|
32
32
|
version: 2.0.0
|
33
33
|
type: :development
|
34
34
|
prerelease: false
|
35
|
-
version_requirements: *
|
35
|
+
version_requirements: *70339242550680
|
36
36
|
- !ruby/object:Gem::Dependency
|
37
37
|
name: activesupport
|
38
|
-
requirement: &
|
38
|
+
requirement: &70339242550220 !ruby/object:Gem::Requirement
|
39
39
|
none: false
|
40
40
|
requirements:
|
41
41
|
- - ! '>='
|
@@ -43,9 +43,9 @@ dependencies:
|
|
43
43
|
version: 3.0.0
|
44
44
|
type: :runtime
|
45
45
|
prerelease: false
|
46
|
-
version_requirements: *
|
47
|
-
description: A composable templating system for generating JSON via Ruby hashes,
|
48
|
-
possible views on each object and runtime data passing.
|
46
|
+
version_requirements: *70339242550220
|
47
|
+
description: A composable templating system for generating JSON via Ruby hashes, with
|
48
|
+
different possible views on each object and runtime data passing.
|
49
49
|
email:
|
50
50
|
- bfults@gmail.com
|
51
51
|
executables: []
|
@@ -62,7 +62,7 @@ files:
|
|
62
62
|
- lib/boxer/version.rb
|
63
63
|
- spec/boxer_spec.rb
|
64
64
|
- spec/spec_helper.rb
|
65
|
-
homepage: http://github.com/
|
65
|
+
homepage: http://github.com/gowalla/boxer
|
66
66
|
licenses:
|
67
67
|
- MIT
|
68
68
|
post_install_message:
|