say_it_with_graphs 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (43) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +14 -0
  3. data/.rspec +2 -0
  4. data/.travis.yml +9 -0
  5. data/Gemfile +4 -0
  6. data/Guardfile +50 -0
  7. data/LICENSE.txt +22 -0
  8. data/README.md +31 -0
  9. data/Rakefile +16 -0
  10. data/bin/say-it-with-graphs +11 -0
  11. data/lib/say_it_with_graphs/brush.rb +34 -0
  12. data/lib/say_it_with_graphs/characters/a.rb +26 -0
  13. data/lib/say_it_with_graphs/characters/bang.rb +41 -0
  14. data/lib/say_it_with_graphs/characters/e.rb +36 -0
  15. data/lib/say_it_with_graphs/characters/g.rb +33 -0
  16. data/lib/say_it_with_graphs/characters/h.rb +34 -0
  17. data/lib/say_it_with_graphs/characters/i.rb +20 -0
  18. data/lib/say_it_with_graphs/characters/l.rb +25 -0
  19. data/lib/say_it_with_graphs/characters/lt.rb +28 -0
  20. data/lib/say_it_with_graphs/characters/m.rb +30 -0
  21. data/lib/say_it_with_graphs/characters/o.rb +34 -0
  22. data/lib/say_it_with_graphs/characters/p.rb +32 -0
  23. data/lib/say_it_with_graphs/characters/r.rb +40 -0
  24. data/lib/say_it_with_graphs/characters/s.rb +33 -0
  25. data/lib/say_it_with_graphs/characters/space.rb +17 -0
  26. data/lib/say_it_with_graphs/characters/three.rb +37 -0
  27. data/lib/say_it_with_graphs/characters/v.rb +18 -0
  28. data/lib/say_it_with_graphs/client.rb +22 -0
  29. data/lib/say_it_with_graphs/frame.rb +18 -0
  30. data/lib/say_it_with_graphs/framer.rb +40 -0
  31. data/lib/say_it_with_graphs/graph_controls.rb +17 -0
  32. data/lib/say_it_with_graphs/line.rb +18 -0
  33. data/lib/say_it_with_graphs/version.rb +3 -0
  34. data/lib/say_it_with_graphs.rb +12 -0
  35. data/say_it_with_graphs.gemspec +28 -0
  36. data/spec/lib/say_it_with_graphs/brush_spec.rb +27 -0
  37. data/spec/lib/say_it_with_graphs/client_spec.rb +46 -0
  38. data/spec/lib/say_it_with_graphs/frame_spec.rb +36 -0
  39. data/spec/lib/say_it_with_graphs/framer_spec.rb +44 -0
  40. data/spec/lib/say_it_with_graphs/graph_controls_spec.rb +31 -0
  41. data/spec/lib/say_it_with_graphs/line_spec.rb +29 -0
  42. data/spec/spec_helper.rb +90 -0
  43. metadata +178 -0
metadata ADDED
@@ -0,0 +1,178 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: say_it_with_graphs
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Ole Michaelis
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2015-03-08 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: httparty
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '0.13'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '0.13'
27
+ - !ruby/object:Gem::Dependency
28
+ name: bundler
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1.7'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.7'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rake
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '10.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '10.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: '3.2'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '3.2'
69
+ - !ruby/object:Gem::Dependency
70
+ name: guard
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '2.12'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '2.12'
83
+ - !ruby/object:Gem::Dependency
84
+ name: guard-rspec
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: '4.5'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: '4.5'
97
+ description: say-it-with-graphs let you actually write into a place where usually
98
+ the computer tells you something.
99
+ email:
100
+ - Ole.Michaelis@googlemail.com
101
+ executables:
102
+ - say-it-with-graphs
103
+ extensions: []
104
+ extra_rdoc_files: []
105
+ files:
106
+ - ".gitignore"
107
+ - ".rspec"
108
+ - ".travis.yml"
109
+ - Gemfile
110
+ - Guardfile
111
+ - LICENSE.txt
112
+ - README.md
113
+ - Rakefile
114
+ - bin/say-it-with-graphs
115
+ - lib/say_it_with_graphs.rb
116
+ - lib/say_it_with_graphs/brush.rb
117
+ - lib/say_it_with_graphs/characters/a.rb
118
+ - lib/say_it_with_graphs/characters/bang.rb
119
+ - lib/say_it_with_graphs/characters/e.rb
120
+ - lib/say_it_with_graphs/characters/g.rb
121
+ - lib/say_it_with_graphs/characters/h.rb
122
+ - lib/say_it_with_graphs/characters/i.rb
123
+ - lib/say_it_with_graphs/characters/l.rb
124
+ - lib/say_it_with_graphs/characters/lt.rb
125
+ - lib/say_it_with_graphs/characters/m.rb
126
+ - lib/say_it_with_graphs/characters/o.rb
127
+ - lib/say_it_with_graphs/characters/p.rb
128
+ - lib/say_it_with_graphs/characters/r.rb
129
+ - lib/say_it_with_graphs/characters/s.rb
130
+ - lib/say_it_with_graphs/characters/space.rb
131
+ - lib/say_it_with_graphs/characters/three.rb
132
+ - lib/say_it_with_graphs/characters/v.rb
133
+ - lib/say_it_with_graphs/client.rb
134
+ - lib/say_it_with_graphs/frame.rb
135
+ - lib/say_it_with_graphs/framer.rb
136
+ - lib/say_it_with_graphs/graph_controls.rb
137
+ - lib/say_it_with_graphs/line.rb
138
+ - lib/say_it_with_graphs/version.rb
139
+ - say_it_with_graphs.gemspec
140
+ - spec/lib/say_it_with_graphs/brush_spec.rb
141
+ - spec/lib/say_it_with_graphs/client_spec.rb
142
+ - spec/lib/say_it_with_graphs/frame_spec.rb
143
+ - spec/lib/say_it_with_graphs/framer_spec.rb
144
+ - spec/lib/say_it_with_graphs/graph_controls_spec.rb
145
+ - spec/lib/say_it_with_graphs/line_spec.rb
146
+ - spec/spec_helper.rb
147
+ homepage: https://github.com/nesQuick/say-it-with-graphs
148
+ licenses:
149
+ - MIT
150
+ metadata: {}
151
+ post_install_message:
152
+ rdoc_options: []
153
+ require_paths:
154
+ - lib
155
+ required_ruby_version: !ruby/object:Gem::Requirement
156
+ requirements:
157
+ - - ">="
158
+ - !ruby/object:Gem::Version
159
+ version: '0'
160
+ required_rubygems_version: !ruby/object:Gem::Requirement
161
+ requirements:
162
+ - - ">="
163
+ - !ruby/object:Gem::Version
164
+ version: '0'
165
+ requirements: []
166
+ rubyforge_project:
167
+ rubygems_version: 2.2.0
168
+ signing_key:
169
+ specification_version: 4
170
+ summary: Make more of your graphs. Write with them!
171
+ test_files:
172
+ - spec/lib/say_it_with_graphs/brush_spec.rb
173
+ - spec/lib/say_it_with_graphs/client_spec.rb
174
+ - spec/lib/say_it_with_graphs/frame_spec.rb
175
+ - spec/lib/say_it_with_graphs/framer_spec.rb
176
+ - spec/lib/say_it_with_graphs/graph_controls_spec.rb
177
+ - spec/lib/say_it_with_graphs/line_spec.rb
178
+ - spec/spec_helper.rb