frosting 0.0.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.
Files changed (3) hide show
  1. checksums.yaml +15 -0
  2. data/lib/frosting.rb +6 -0
  3. metadata +46 -0
checksums.yaml ADDED
@@ -0,0 +1,15 @@
1
+ ---
2
+ !binary "U0hBMQ==":
3
+ metadata.gz: !binary |-
4
+ MmFhNmU5YjBjNGVhZWJiZDk3YmYzNWMzZGRmZGNlNTk0MTMwYmRkNw==
5
+ data.tar.gz: !binary |-
6
+ MGI1YTg1YWIxNWRlNTk5MWM2Njc4YTU4YWJkYzcwNzBlNWNlZTdjZQ==
7
+ SHA512:
8
+ metadata.gz: !binary |-
9
+ ZjU5NDIwMDQyNDg1OGI4YjZhMzEyOGRmYzgxNGY5ZDQyYzJhZDc0NmNkZTA3
10
+ Yzk2NzRlMDI5ZmFjY2FlNDgxNDZkMDU1NWFiNzNjNzNkY2EyYjA3ZjhmZGVi
11
+ MjMwYWNmYTRhNzgwYTNmMDZjNzA3Mzg2OWM3OTk2NjM3MWU5N2M=
12
+ data.tar.gz: !binary |-
13
+ ODI4NDU0ZDk1MTFkYWM5M2UyY2M2ZDJiMDkxZjVhNmYzMzU3NGU0ZmZiZWJk
14
+ NGY5YmQzY2E3ZWE3OTI5YTQzNTNkZTNkMTcyZTQ0NTVhNGUyM2JhZjhiMGVi
15
+ YTFjODk5ZWFhY2Q2MWU3MjlhNDg3ZTQ2ZWRmOTc0NmIwZDc0MWE=
data/lib/frosting.rb ADDED
@@ -0,0 +1,6 @@
1
+ require 'frosting/version'
2
+ require 'frosting/base_presenter'
3
+ require 'frosting/integration/rails' if defined?(Rails)
4
+
5
+ module Frosting
6
+ end
metadata ADDED
@@ -0,0 +1,46 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: frosting
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Ben Eddy
8
+ - Jon Evans
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2014-02-04 00:00:00.000000000 Z
13
+ dependencies: []
14
+ description: Adds some methods to your controllers and a base presenter. Get that
15
+ presentation logic out of your models.
16
+ email: rubygems@foraker.com
17
+ executables: []
18
+ extensions: []
19
+ extra_rdoc_files: []
20
+ files:
21
+ - lib/frosting.rb
22
+ homepage: http://www.github.com/foraker/frosting
23
+ licenses:
24
+ - MIT
25
+ metadata: {}
26
+ post_install_message:
27
+ rdoc_options: []
28
+ require_paths:
29
+ - lib
30
+ required_ruby_version: !ruby/object:Gem::Requirement
31
+ requirements:
32
+ - - ! '>='
33
+ - !ruby/object:Gem::Version
34
+ version: '0'
35
+ required_rubygems_version: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - ! '>='
38
+ - !ruby/object:Gem::Version
39
+ version: '0'
40
+ requirements: []
41
+ rubyforge_project:
42
+ rubygems_version: 2.2.1
43
+ signing_key:
44
+ specification_version: 4
45
+ summary: Let's make presenters easy.
46
+ test_files: []