4info 1.0.0 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
data/4info.gemspec ADDED
@@ -0,0 +1,75 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = %q{4info}
8
+ s.version = "1.0.1"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["Jack Danger Canty"]
12
+ s.date = %q{2010-02-10}
13
+ s.description = %q{A complete Ruby API for handling SMS messages via 4info.com}
14
+ s.email = %q{gitcommit@6brand.com}
15
+ s.extra_rdoc_files = [
16
+ "README.markdown"
17
+ ]
18
+ s.files = [
19
+ "4info.gemspec",
20
+ "MIT-LICENSE",
21
+ "README.markdown",
22
+ "Rakefile",
23
+ "VERSION",
24
+ "init.rb",
25
+ "lib/contactable.rb",
26
+ "lib/controller.rb",
27
+ "lib/four_info.rb",
28
+ "lib/request.rb",
29
+ "lib/response.rb",
30
+ "lib/templates/confirm.haml",
31
+ "lib/templates/deliver.haml",
32
+ "lib/templates/unblock.haml",
33
+ "test/.gitignore",
34
+ "test/database.yml",
35
+ "test/four_info_contactable_test.rb",
36
+ "test/four_info_controller_test.rb",
37
+ "test/four_info_module_test.rb",
38
+ "test/sms.yml",
39
+ "test/test_helper.rb"
40
+ ]
41
+ s.homepage = %q{http://github.com/JackDanger/4info}
42
+ s.rdoc_options = ["--charset=UTF-8"]
43
+ s.require_paths = ["lib"]
44
+ s.rubygems_version = %q{1.3.5}
45
+ s.summary = %q{Send and receive SMS messages via 4info.com}
46
+ s.test_files = [
47
+ "test/four_info_contactable_test.rb",
48
+ "test/four_info_controller_test.rb",
49
+ "test/four_info_module_test.rb",
50
+ "test/test_helper.rb"
51
+ ]
52
+
53
+ if s.respond_to? :specification_version then
54
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
55
+ s.specification_version = 3
56
+
57
+ if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
58
+ s.add_runtime_dependency(%q<hpricot>, [">= 0"])
59
+ s.add_runtime_dependency(%q<haml>, [">= 0"])
60
+ s.add_development_dependency(%q<shoulda>, [">= 0"])
61
+ s.add_development_dependency(%q<mocha>, [">= 0"])
62
+ else
63
+ s.add_dependency(%q<hpricot>, [">= 0"])
64
+ s.add_dependency(%q<haml>, [">= 0"])
65
+ s.add_dependency(%q<shoulda>, [">= 0"])
66
+ s.add_dependency(%q<mocha>, [">= 0"])
67
+ end
68
+ else
69
+ s.add_dependency(%q<hpricot>, [">= 0"])
70
+ s.add_dependency(%q<haml>, [">= 0"])
71
+ s.add_dependency(%q<shoulda>, [">= 0"])
72
+ s.add_dependency(%q<mocha>, [">= 0"])
73
+ end
74
+ end
75
+
@@ -50,9 +50,8 @@ that receives data from 4info.com
50
50
  end
51
51
 
52
52
  Now anything posted to the index (or create, if you've hooked this up RESTfully) action
53
- will automatically work. If 4info.com sends you a response from a user the user record
54
- will be found by their phone number and, if User has a 'receive_sms' method defined,
55
- the record will receive the message that's just been sent.
53
+ will automatically work. If a user sends 4info.com a message their user record on your site
54
+ will (if User has a 'receive_sms' method defined) receive the message directly.
56
55
 
57
56
  That's it. Patches welcome, forks celebrated.
58
57
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.0
1
+ 1.0.1
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: 4info
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jack Danger Canty
@@ -59,10 +59,11 @@ executables: []
59
59
  extensions: []
60
60
 
61
61
  extra_rdoc_files:
62
- - README
62
+ - README.markdown
63
63
  files:
64
+ - 4info.gemspec
64
65
  - MIT-LICENSE
65
- - README
66
+ - README.markdown
66
67
  - Rakefile
67
68
  - VERSION
68
69
  - init.rb