polleverywhere 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.
- data/.gitignore +5 -0
- data/Gemfile +10 -0
- data/Guardfile +8 -0
- data/README.md +12 -0
- data/Rakefile +2 -0
- data/lib/polleverywhere.rb +3 -0
- data/lib/polleverywhere/version.rb +3 -0
- data/polleverywhere.gemspec +21 -0
- data/spec/lib/polleverywhere_spec.rb +5 -0
- data/spec/spec_helper.rb +3 -0
- metadata +78 -0
data/.gitignore
ADDED
data/Gemfile
ADDED
data/Guardfile
ADDED
@@ -0,0 +1,8 @@
|
|
1
|
+
# A sample Guardfile
|
2
|
+
# More info at https://github.com/guard/guard#readme
|
3
|
+
|
4
|
+
guard 'rspec', :version => 2, :cli => '--colour' do
|
5
|
+
watch(%r{^spec/.+_spec\.rb})
|
6
|
+
watch(%r{^lib/(.+)\.rb}) { |m| "spec/lib/#{m[1]}_spec.rb" }
|
7
|
+
watch('spec/spec_helper.rb') { "spec" }
|
8
|
+
end
|
data/README.md
ADDED
@@ -0,0 +1,12 @@
|
|
1
|
+
# Poll Everywhere API Gem
|
2
|
+
|
3
|
+
Integrate Poll Everywhere into your Ruby applications.
|
4
|
+
|
5
|
+
# TODO
|
6
|
+
A roadmap for our API:
|
7
|
+
|
8
|
+
* Build an app layer that we can put on top of a sync/async backend.
|
9
|
+
* Build out a serialization layer for the model class (to_json,from_json,etc)
|
10
|
+
* Implement specs that validate app layer
|
11
|
+
* Implement specs that validate protocol/API layer
|
12
|
+
* Implement documentation system around protocol/API layer specs so that we can run our specs againts a staging environment and validate that it works.
|
data/Rakefile
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
$:.push File.expand_path("../lib", __FILE__)
|
3
|
+
require "polleverywhere/version"
|
4
|
+
|
5
|
+
Gem::Specification.new do |s|
|
6
|
+
s.name = "polleverywhere"
|
7
|
+
s.version = Polleverywhere::VERSION
|
8
|
+
s.platform = Gem::Platform::RUBY
|
9
|
+
s.authors = ["Brad Gessler, Steel Fu"]
|
10
|
+
s.email = ["geeks@polleverywhere.com"]
|
11
|
+
s.homepage = "http://www.polleverywhere.com/"
|
12
|
+
s.summary = %q{Integration Poll Everywhere into your Ruby applications}
|
13
|
+
s.description = %q{An easy way to integrate Poll Everywhere into your Ruby applications.}
|
14
|
+
|
15
|
+
s.rubyforge_project = "polleverywhere"
|
16
|
+
|
17
|
+
s.files = `git ls-files`.split("\n")
|
18
|
+
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
19
|
+
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
20
|
+
s.require_paths = ["lib"]
|
21
|
+
end
|
data/spec/spec_helper.rb
ADDED
metadata
ADDED
@@ -0,0 +1,78 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: polleverywhere
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 29
|
5
|
+
prerelease:
|
6
|
+
segments:
|
7
|
+
- 0
|
8
|
+
- 0
|
9
|
+
- 1
|
10
|
+
version: 0.0.1
|
11
|
+
platform: ruby
|
12
|
+
authors:
|
13
|
+
- Brad Gessler, Steel Fu
|
14
|
+
autorequire:
|
15
|
+
bindir: bin
|
16
|
+
cert_chain: []
|
17
|
+
|
18
|
+
date: 2011-05-24 00:00:00 -07:00
|
19
|
+
default_executable:
|
20
|
+
dependencies: []
|
21
|
+
|
22
|
+
description: An easy way to integrate Poll Everywhere into your Ruby applications.
|
23
|
+
email:
|
24
|
+
- geeks@polleverywhere.com
|
25
|
+
executables: []
|
26
|
+
|
27
|
+
extensions: []
|
28
|
+
|
29
|
+
extra_rdoc_files: []
|
30
|
+
|
31
|
+
files:
|
32
|
+
- .gitignore
|
33
|
+
- Gemfile
|
34
|
+
- Guardfile
|
35
|
+
- README.md
|
36
|
+
- Rakefile
|
37
|
+
- lib/polleverywhere.rb
|
38
|
+
- lib/polleverywhere/version.rb
|
39
|
+
- polleverywhere.gemspec
|
40
|
+
- spec/lib/polleverywhere_spec.rb
|
41
|
+
- spec/spec_helper.rb
|
42
|
+
has_rdoc: true
|
43
|
+
homepage: http://www.polleverywhere.com/
|
44
|
+
licenses: []
|
45
|
+
|
46
|
+
post_install_message:
|
47
|
+
rdoc_options: []
|
48
|
+
|
49
|
+
require_paths:
|
50
|
+
- lib
|
51
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
52
|
+
none: false
|
53
|
+
requirements:
|
54
|
+
- - ">="
|
55
|
+
- !ruby/object:Gem::Version
|
56
|
+
hash: 3
|
57
|
+
segments:
|
58
|
+
- 0
|
59
|
+
version: "0"
|
60
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
61
|
+
none: false
|
62
|
+
requirements:
|
63
|
+
- - ">="
|
64
|
+
- !ruby/object:Gem::Version
|
65
|
+
hash: 3
|
66
|
+
segments:
|
67
|
+
- 0
|
68
|
+
version: "0"
|
69
|
+
requirements: []
|
70
|
+
|
71
|
+
rubyforge_project: polleverywhere
|
72
|
+
rubygems_version: 1.4.2
|
73
|
+
signing_key:
|
74
|
+
specification_version: 3
|
75
|
+
summary: Integration Poll Everywhere into your Ruby applications
|
76
|
+
test_files:
|
77
|
+
- spec/lib/polleverywhere_spec.rb
|
78
|
+
- spec/spec_helper.rb
|