icecream 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 1607aaaa8d21bc440dc77b88d623ec91912f4af6
4
+ data.tar.gz: 4e0132787951c45e1b8666df186869af8f282475
5
+ SHA512:
6
+ metadata.gz: a4bcfdb1c40b98237751715f46ef32a43f78d4f81fce04db3b777ecdf7a1898f526d05174d901c4c589241b5adb7fceb0bc6e6fc1d3da8ddc788f17928e76310
7
+ data.tar.gz: 69502e5c0bc16d6ec1818bd44730229d30fabfd841ee913c1baa16cab6c5570f6f68cb58406ed82979987e327bbe7535d848362eca3095d4028615d17731699f
data/.gitignore ADDED
@@ -0,0 +1,2 @@
1
+ *.sw*
2
+ *.gem
data/.ruby-version ADDED
@@ -0,0 +1 @@
1
+ ruby-2.0.0-p247@icecream
data/Gemfile ADDED
File without changes
data/README.md ADDED
@@ -0,0 +1,15 @@
1
+ IceCream
2
+ ==============
3
+
4
+ LICENCE
5
+ =======
6
+
7
+ Copyright 2013 Camilo Ribeiro camilo@camiloribeiro.com
8
+
9
+ This file is part of IceCream.
10
+
11
+ Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
12
+
13
+ http://www.apache.org/licenses/LICENSE-2.0
14
+
15
+ Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
data/icecream.gemspec ADDED
@@ -0,0 +1,29 @@
1
+ # -*- encoding: utf-8 -*-
2
+ $:.push File.expand_path("../lib", __FILE__)
3
+ require "icecream/version"
4
+
5
+ Gem::Specification.new do |s|
6
+ s.name = "icecream"
7
+ s.version = IceCream::VERSION
8
+ s.authors = ["Camilo Ribeiro"]
9
+ s.email = ["cribeiro@camiloribeiro.com"]
10
+ s.homepage = "http://github.com/camiloribeiro/icecream"
11
+ s.summary = %q{Simple Factory to the ones who just wanna a factory}
12
+ s.description = %q{Simple factory without any active record or external library. Just gem install and use!}
13
+
14
+ s.rubyforge_project = "cello"
15
+
16
+ s.files = `git ls-files`.split("\n")
17
+ s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
18
+ s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
19
+ s.default_executable = 'icecrem'
20
+
21
+ s.require_paths = ["lib"]
22
+
23
+ s.add_development_dependency 'pry'
24
+ s.add_development_dependency 'cucumber'
25
+ s.add_development_dependency 'rake'
26
+ s.add_development_dependency 'rspec'
27
+
28
+ s.add_dependency 'cucumber'
29
+ end
data/lib/icecream.rb ADDED
@@ -0,0 +1,11 @@
1
+ require File.join(File.dirname(__FILE__), './icecream/version')
2
+ require 'rubygems'
3
+ require 'bundler/setup'
4
+
5
+ #common dependencies
6
+
7
+ #internal dependences
8
+ require File.join(File.dirname(__FILE__), './icecream/iceman/')
9
+
10
+ module IceCream
11
+ end
@@ -0,0 +1,3 @@
1
+ module IceCream
2
+ VERSION = "0.0.1"
3
+ end
data/travis.yml ADDED
@@ -0,0 +1,8 @@
1
+ language: ruby
2
+ rvm:
3
+ - 1.8.7
4
+ - 1.9.3
5
+ - 2.0.0
6
+
7
+ before_install:
8
+ - gem update --system
metadata ADDED
@@ -0,0 +1,122 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: icecream
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Camilo Ribeiro
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2013-11-20 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: pry
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - '>='
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - '>='
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: cucumber
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - '>='
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - '>='
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rake
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - '>='
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - '>='
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: rspec
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - '>='
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - '>='
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: cucumber
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - '>='
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - '>='
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ description: Simple factory without any active record or external library. Just gem
84
+ install and use!
85
+ email:
86
+ - cribeiro@camiloribeiro.com
87
+ executables: []
88
+ extensions: []
89
+ extra_rdoc_files: []
90
+ files:
91
+ - .gitignore
92
+ - .ruby-version
93
+ - Gemfile
94
+ - README.md
95
+ - icecream.gemspec
96
+ - lib/icecream.rb
97
+ - lib/icecream/version.rb
98
+ - travis.yml
99
+ homepage: http://github.com/camiloribeiro/icecream
100
+ licenses: []
101
+ metadata: {}
102
+ post_install_message:
103
+ rdoc_options: []
104
+ require_paths:
105
+ - lib
106
+ required_ruby_version: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - '>='
109
+ - !ruby/object:Gem::Version
110
+ version: '0'
111
+ required_rubygems_version: !ruby/object:Gem::Requirement
112
+ requirements:
113
+ - - '>='
114
+ - !ruby/object:Gem::Version
115
+ version: '0'
116
+ requirements: []
117
+ rubyforge_project: cello
118
+ rubygems_version: 2.0.3
119
+ signing_key:
120
+ specification_version: 4
121
+ summary: Simple Factory to the ones who just wanna a factory
122
+ test_files: []