iftttify 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 (75) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/Rakefile +32 -0
  4. data/lib/iftttify/exceptions.rb +8 -0
  5. data/lib/iftttify/exceptions.rb~ +3 -0
  6. data/lib/iftttify/iftttify-test.rb~ +2 -0
  7. data/lib/iftttify/iftttify.rb +71 -0
  8. data/lib/iftttify/iftttify.rb~ +3 -0
  9. data/lib/iftttify/version.rb +3 -0
  10. data/lib/iftttify.rb +5 -0
  11. data/lib/iftttify.rb~ +2 -0
  12. data/lib/tasks/iftttify_tasks.rake +4 -0
  13. data/test/dummy/README.rdoc +28 -0
  14. data/test/dummy/Rakefile +6 -0
  15. data/test/dummy/app/assets/javascripts/application.js +13 -0
  16. data/test/dummy/app/assets/javascripts/pages_controller.js +2 -0
  17. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  18. data/test/dummy/app/assets/stylesheets/pages_controller.css +4 -0
  19. data/test/dummy/app/controllers/application_controller.rb +5 -0
  20. data/test/dummy/app/controllers/pages_controller.rb +15 -0
  21. data/test/dummy/app/controllers/pages_controller.rb~ +10 -0
  22. data/test/dummy/app/controllers/pages_controller_controller.rb~ +4 -0
  23. data/test/dummy/app/helpers/application_helper.rb +2 -0
  24. data/test/dummy/app/helpers/pages_controller_helper.rb +2 -0
  25. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  26. data/test/dummy/app/views/pages_controller/ifttt.html.erb +2 -0
  27. data/test/dummy/bin/bundle +3 -0
  28. data/test/dummy/bin/rails +4 -0
  29. data/test/dummy/bin/rake +4 -0
  30. data/test/dummy/config/application.rb +23 -0
  31. data/test/dummy/config/boot.rb +5 -0
  32. data/test/dummy/config/database.yml +25 -0
  33. data/test/dummy/config/environment.rb +5 -0
  34. data/test/dummy/config/environments/development.rb +37 -0
  35. data/test/dummy/config/environments/production.rb +78 -0
  36. data/test/dummy/config/environments/test.rb +39 -0
  37. data/test/dummy/config/initializers/assets.rb +8 -0
  38. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  39. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  40. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  41. data/test/dummy/config/initializers/inflections.rb +16 -0
  42. data/test/dummy/config/initializers/mime_types.rb +4 -0
  43. data/test/dummy/config/initializers/session_store.rb +3 -0
  44. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  45. data/test/dummy/config/locales/en.yml +23 -0
  46. data/test/dummy/config/routes.rb +60 -0
  47. data/test/dummy/config/routes.rb~ +58 -0
  48. data/test/dummy/config/secrets.yml +22 -0
  49. data/test/dummy/config.ru +4 -0
  50. data/test/dummy/db/test.sqlite3 +0 -0
  51. data/test/dummy/log/development.log +0 -0
  52. data/test/dummy/log/test.log +5393 -0
  53. data/test/dummy/public/404.html +67 -0
  54. data/test/dummy/public/422.html +67 -0
  55. data/test/dummy/public/500.html +66 -0
  56. data/test/dummy/public/favicon.ico +0 -0
  57. data/test/dummy/test/controllers/pages_controller_controller_test.rb~ +9 -0
  58. data/test/dummy/test/controllers/pages_controller_test.rb +165 -0
  59. data/test/dummy/test/controllers/pages_controller_test.rb~ +154 -0
  60. data/test/dummy/test/helpers/pages_controller_helper_test.rb +10 -0
  61. data/test/dummy/test/helpers/pages_controller_helper_test.rb~ +4 -0
  62. data/test/dummy/tmp/cache/assets/test/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  63. data/test/dummy/tmp/cache/assets/test/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  64. data/test/dummy/tmp/cache/assets/test/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  65. data/test/dummy/tmp/cache/assets/test/sprockets/8b52dc7bef008d7a85d9ce52db12fe8c +0 -0
  66. data/test/dummy/tmp/cache/assets/test/sprockets/901165c6156d9179acf3af06ca62130a +0 -0
  67. data/test/dummy/tmp/cache/assets/test/sprockets/bd1089d505cf5d172d83615cc4a8bdcb +0 -0
  68. data/test/dummy/tmp/cache/assets/test/sprockets/be08755da3d40b9f93e34e65c8c4176d +0 -0
  69. data/test/dummy/tmp/cache/assets/test/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  70. data/test/dummy/tmp/cache/assets/test/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  71. data/test/dummy/tmp/cache/assets/test/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  72. data/test/iftttify_test.rb +13 -0
  73. data/test/iftttify_test.rb~ +7 -0
  74. data/test/test_helper.rb +15 -0
  75. metadata +207 -0
metadata ADDED
@@ -0,0 +1,207 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: iftttify
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Quan Sun
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-11-25 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rails
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: 4.1.6
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: 4.1.6
27
+ - !ruby/object:Gem::Dependency
28
+ name: sqlite3
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
+ description: allow IFTTT to talk to our Rails app using wordpress xmlrpc protocol
42
+ email:
43
+ - iftttify@qsun.me
44
+ executables: []
45
+ extensions: []
46
+ extra_rdoc_files: []
47
+ files:
48
+ - MIT-LICENSE
49
+ - Rakefile
50
+ - lib/iftttify.rb
51
+ - lib/iftttify.rb~
52
+ - lib/iftttify/exceptions.rb
53
+ - lib/iftttify/exceptions.rb~
54
+ - lib/iftttify/iftttify-test.rb~
55
+ - lib/iftttify/iftttify.rb
56
+ - lib/iftttify/iftttify.rb~
57
+ - lib/iftttify/version.rb
58
+ - lib/tasks/iftttify_tasks.rake
59
+ - test/dummy/README.rdoc
60
+ - test/dummy/Rakefile
61
+ - test/dummy/app/assets/javascripts/application.js
62
+ - test/dummy/app/assets/javascripts/pages_controller.js
63
+ - test/dummy/app/assets/stylesheets/application.css
64
+ - test/dummy/app/assets/stylesheets/pages_controller.css
65
+ - test/dummy/app/controllers/application_controller.rb
66
+ - test/dummy/app/controllers/pages_controller.rb
67
+ - test/dummy/app/controllers/pages_controller.rb~
68
+ - test/dummy/app/controllers/pages_controller_controller.rb~
69
+ - test/dummy/app/helpers/application_helper.rb
70
+ - test/dummy/app/helpers/pages_controller_helper.rb
71
+ - test/dummy/app/views/layouts/application.html.erb
72
+ - test/dummy/app/views/pages_controller/ifttt.html.erb
73
+ - test/dummy/bin/bundle
74
+ - test/dummy/bin/rails
75
+ - test/dummy/bin/rake
76
+ - test/dummy/config.ru
77
+ - test/dummy/config/application.rb
78
+ - test/dummy/config/boot.rb
79
+ - test/dummy/config/database.yml
80
+ - test/dummy/config/environment.rb
81
+ - test/dummy/config/environments/development.rb
82
+ - test/dummy/config/environments/production.rb
83
+ - test/dummy/config/environments/test.rb
84
+ - test/dummy/config/initializers/assets.rb
85
+ - test/dummy/config/initializers/backtrace_silencers.rb
86
+ - test/dummy/config/initializers/cookies_serializer.rb
87
+ - test/dummy/config/initializers/filter_parameter_logging.rb
88
+ - test/dummy/config/initializers/inflections.rb
89
+ - test/dummy/config/initializers/mime_types.rb
90
+ - test/dummy/config/initializers/session_store.rb
91
+ - test/dummy/config/initializers/wrap_parameters.rb
92
+ - test/dummy/config/locales/en.yml
93
+ - test/dummy/config/routes.rb
94
+ - test/dummy/config/routes.rb~
95
+ - test/dummy/config/secrets.yml
96
+ - test/dummy/db/test.sqlite3
97
+ - test/dummy/log/development.log
98
+ - test/dummy/log/test.log
99
+ - test/dummy/public/404.html
100
+ - test/dummy/public/422.html
101
+ - test/dummy/public/500.html
102
+ - test/dummy/public/favicon.ico
103
+ - test/dummy/test/controllers/pages_controller_controller_test.rb~
104
+ - test/dummy/test/controllers/pages_controller_test.rb
105
+ - test/dummy/test/controllers/pages_controller_test.rb~
106
+ - test/dummy/test/helpers/pages_controller_helper_test.rb
107
+ - test/dummy/test/helpers/pages_controller_helper_test.rb~
108
+ - test/dummy/tmp/cache/assets/test/sprockets/13fe41fee1fe35b49d145bcc06610705
109
+ - test/dummy/tmp/cache/assets/test/sprockets/2f5173deea6c795b8fdde723bb4b63af
110
+ - test/dummy/tmp/cache/assets/test/sprockets/357970feca3ac29060c1e3861e2c0953
111
+ - test/dummy/tmp/cache/assets/test/sprockets/8b52dc7bef008d7a85d9ce52db12fe8c
112
+ - test/dummy/tmp/cache/assets/test/sprockets/901165c6156d9179acf3af06ca62130a
113
+ - test/dummy/tmp/cache/assets/test/sprockets/bd1089d505cf5d172d83615cc4a8bdcb
114
+ - test/dummy/tmp/cache/assets/test/sprockets/be08755da3d40b9f93e34e65c8c4176d
115
+ - test/dummy/tmp/cache/assets/test/sprockets/cffd775d018f68ce5dba1ee0d951a994
116
+ - test/dummy/tmp/cache/assets/test/sprockets/d771ace226fc8215a3572e0aa35bb0d6
117
+ - test/dummy/tmp/cache/assets/test/sprockets/f7cbd26ba1d28d48de824f0e94586655
118
+ - test/iftttify_test.rb
119
+ - test/iftttify_test.rb~
120
+ - test/test_helper.rb
121
+ homepage: https://github.com/qsun/iftttify
122
+ licenses:
123
+ - MIT
124
+ metadata: {}
125
+ post_install_message:
126
+ rdoc_options: []
127
+ require_paths:
128
+ - lib
129
+ required_ruby_version: !ruby/object:Gem::Requirement
130
+ requirements:
131
+ - - ">="
132
+ - !ruby/object:Gem::Version
133
+ version: '0'
134
+ required_rubygems_version: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - ">="
137
+ - !ruby/object:Gem::Version
138
+ version: '0'
139
+ requirements: []
140
+ rubyforge_project:
141
+ rubygems_version: 2.2.2
142
+ signing_key:
143
+ specification_version: 4
144
+ summary: allow IFTTT to talk to our Rails app
145
+ test_files:
146
+ - test/iftttify_test.rb
147
+ - test/iftttify_test.rb~
148
+ - test/test_helper.rb
149
+ - test/dummy/public/404.html
150
+ - test/dummy/public/favicon.ico
151
+ - test/dummy/public/500.html
152
+ - test/dummy/public/422.html
153
+ - test/dummy/Rakefile
154
+ - test/dummy/bin/rails
155
+ - test/dummy/bin/bundle
156
+ - test/dummy/bin/rake
157
+ - test/dummy/db/test.sqlite3
158
+ - test/dummy/app/helpers/application_helper.rb
159
+ - test/dummy/app/helpers/pages_controller_helper.rb
160
+ - test/dummy/app/assets/javascripts/application.js
161
+ - test/dummy/app/assets/javascripts/pages_controller.js
162
+ - test/dummy/app/assets/stylesheets/application.css
163
+ - test/dummy/app/assets/stylesheets/pages_controller.css
164
+ - test/dummy/app/controllers/pages_controller.rb
165
+ - test/dummy/app/controllers/pages_controller_controller.rb~
166
+ - test/dummy/app/controllers/application_controller.rb
167
+ - test/dummy/app/controllers/pages_controller.rb~
168
+ - test/dummy/app/views/layouts/application.html.erb
169
+ - test/dummy/app/views/pages_controller/ifttt.html.erb
170
+ - test/dummy/log/development.log
171
+ - test/dummy/log/test.log
172
+ - test/dummy/config/boot.rb
173
+ - test/dummy/config/environments/production.rb
174
+ - test/dummy/config/environments/development.rb
175
+ - test/dummy/config/environments/test.rb
176
+ - test/dummy/config/initializers/filter_parameter_logging.rb
177
+ - test/dummy/config/initializers/inflections.rb
178
+ - test/dummy/config/initializers/backtrace_silencers.rb
179
+ - test/dummy/config/initializers/cookies_serializer.rb
180
+ - test/dummy/config/initializers/mime_types.rb
181
+ - test/dummy/config/initializers/session_store.rb
182
+ - test/dummy/config/initializers/wrap_parameters.rb
183
+ - test/dummy/config/initializers/assets.rb
184
+ - test/dummy/config/environment.rb
185
+ - test/dummy/config/secrets.yml
186
+ - test/dummy/config/routes.rb
187
+ - test/dummy/config/locales/en.yml
188
+ - test/dummy/config/routes.rb~
189
+ - test/dummy/config/database.yml
190
+ - test/dummy/config/application.rb
191
+ - test/dummy/config.ru
192
+ - test/dummy/README.rdoc
193
+ - test/dummy/tmp/cache/assets/test/sprockets/8b52dc7bef008d7a85d9ce52db12fe8c
194
+ - test/dummy/tmp/cache/assets/test/sprockets/2f5173deea6c795b8fdde723bb4b63af
195
+ - test/dummy/tmp/cache/assets/test/sprockets/d771ace226fc8215a3572e0aa35bb0d6
196
+ - test/dummy/tmp/cache/assets/test/sprockets/357970feca3ac29060c1e3861e2c0953
197
+ - test/dummy/tmp/cache/assets/test/sprockets/be08755da3d40b9f93e34e65c8c4176d
198
+ - test/dummy/tmp/cache/assets/test/sprockets/f7cbd26ba1d28d48de824f0e94586655
199
+ - test/dummy/tmp/cache/assets/test/sprockets/cffd775d018f68ce5dba1ee0d951a994
200
+ - test/dummy/tmp/cache/assets/test/sprockets/13fe41fee1fe35b49d145bcc06610705
201
+ - test/dummy/tmp/cache/assets/test/sprockets/bd1089d505cf5d172d83615cc4a8bdcb
202
+ - test/dummy/tmp/cache/assets/test/sprockets/901165c6156d9179acf3af06ca62130a
203
+ - test/dummy/test/helpers/pages_controller_helper_test.rb~
204
+ - test/dummy/test/helpers/pages_controller_helper_test.rb
205
+ - test/dummy/test/controllers/pages_controller_test.rb~
206
+ - test/dummy/test/controllers/pages_controller_test.rb
207
+ - test/dummy/test/controllers/pages_controller_controller_test.rb~