social_pilot 0.1.0
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.
- checksums.yaml +7 -0
- data/Rakefile +34 -0
- data/lib/social_pilot/account.rb +12 -0
- data/lib/social_pilot/version.rb +3 -0
- data/lib/social_pilot.rb +53 -0
- data/lib/tasks/social_pilot_tasks.rake +4 -0
- data/test/dummy/Gemfile +50 -0
- data/test/dummy/Gemfile.lock +186 -0
- data/test/dummy/README.rdoc +28 -0
- data/test/dummy/Rakefile +6 -0
- data/test/dummy/app/assets/javascripts/application.js +16 -0
- data/test/dummy/app/assets/stylesheets/application.css +15 -0
- data/test/dummy/app/controllers/application_controller.rb +5 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/dummy/bin/bundle +3 -0
- data/test/dummy/bin/rails +9 -0
- data/test/dummy/bin/rake +9 -0
- data/test/dummy/bin/setup +29 -0
- data/test/dummy/bin/spring +17 -0
- data/test/dummy/config/application.rb +26 -0
- data/test/dummy/config/boot.rb +3 -0
- data/test/dummy/config/database.yml +25 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +41 -0
- data/test/dummy/config/environments/production.rb +79 -0
- data/test/dummy/config/environments/test.rb +42 -0
- data/test/dummy/config/initializers/assets.rb +11 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
- data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/test/dummy/config/initializers/inflections.rb +16 -0
- data/test/dummy/config/initializers/mime_types.rb +4 -0
- data/test/dummy/config/initializers/session_store.rb +3 -0
- data/test/dummy/config/initializers/uk_vehicle_data.rb +1 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/en.yml +23 -0
- data/test/dummy/config/routes.rb +56 -0
- data/test/dummy/config/secrets.yml +22 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/db/seeds.rb +7 -0
- data/test/dummy/public/404.html +67 -0
- data/test/dummy/public/422.html +67 -0
- data/test/dummy/public/500.html +66 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/dummy/public/robots.txt +5 -0
- data/test/dummy/test/test_helper.rb +10 -0
- data/test/test_helper.rb +20 -0
- data/test/ukvehicledata_test.rb +7 -0
- metadata +149 -0
metadata
ADDED
@@ -0,0 +1,149 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: social_pilot
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Tom Dallimore
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2018-05-15 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: rest-client
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '2'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '2'
|
27
|
+
description: A Ruby wrapper for the UK SocialPilot platform API
|
28
|
+
email:
|
29
|
+
- me@tomdallimore.com
|
30
|
+
executables: []
|
31
|
+
extensions: []
|
32
|
+
extra_rdoc_files: []
|
33
|
+
files:
|
34
|
+
- Rakefile
|
35
|
+
- lib/social_pilot.rb
|
36
|
+
- lib/social_pilot/account.rb
|
37
|
+
- lib/social_pilot/version.rb
|
38
|
+
- lib/tasks/social_pilot_tasks.rake
|
39
|
+
- test/dummy/Gemfile
|
40
|
+
- test/dummy/Gemfile.lock
|
41
|
+
- test/dummy/README.rdoc
|
42
|
+
- test/dummy/Rakefile
|
43
|
+
- test/dummy/app/assets/javascripts/application.js
|
44
|
+
- test/dummy/app/assets/stylesheets/application.css
|
45
|
+
- test/dummy/app/controllers/application_controller.rb
|
46
|
+
- test/dummy/app/helpers/application_helper.rb
|
47
|
+
- test/dummy/app/views/layouts/application.html.erb
|
48
|
+
- test/dummy/bin/bundle
|
49
|
+
- test/dummy/bin/rails
|
50
|
+
- test/dummy/bin/rake
|
51
|
+
- test/dummy/bin/setup
|
52
|
+
- test/dummy/bin/spring
|
53
|
+
- test/dummy/config.ru
|
54
|
+
- test/dummy/config/application.rb
|
55
|
+
- test/dummy/config/boot.rb
|
56
|
+
- test/dummy/config/database.yml
|
57
|
+
- test/dummy/config/environment.rb
|
58
|
+
- test/dummy/config/environments/development.rb
|
59
|
+
- test/dummy/config/environments/production.rb
|
60
|
+
- test/dummy/config/environments/test.rb
|
61
|
+
- test/dummy/config/initializers/assets.rb
|
62
|
+
- test/dummy/config/initializers/backtrace_silencers.rb
|
63
|
+
- test/dummy/config/initializers/cookies_serializer.rb
|
64
|
+
- test/dummy/config/initializers/filter_parameter_logging.rb
|
65
|
+
- test/dummy/config/initializers/inflections.rb
|
66
|
+
- test/dummy/config/initializers/mime_types.rb
|
67
|
+
- test/dummy/config/initializers/session_store.rb
|
68
|
+
- test/dummy/config/initializers/uk_vehicle_data.rb
|
69
|
+
- test/dummy/config/initializers/wrap_parameters.rb
|
70
|
+
- test/dummy/config/locales/en.yml
|
71
|
+
- test/dummy/config/routes.rb
|
72
|
+
- test/dummy/config/secrets.yml
|
73
|
+
- test/dummy/db/seeds.rb
|
74
|
+
- test/dummy/public/404.html
|
75
|
+
- test/dummy/public/422.html
|
76
|
+
- test/dummy/public/500.html
|
77
|
+
- test/dummy/public/favicon.ico
|
78
|
+
- test/dummy/public/robots.txt
|
79
|
+
- test/dummy/test/test_helper.rb
|
80
|
+
- test/test_helper.rb
|
81
|
+
- test/ukvehicledata_test.rb
|
82
|
+
homepage: https://github.com/Jellyfishboy/social_pilot
|
83
|
+
licenses:
|
84
|
+
- MIT
|
85
|
+
metadata: {}
|
86
|
+
post_install_message:
|
87
|
+
rdoc_options: []
|
88
|
+
require_paths:
|
89
|
+
- lib
|
90
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
91
|
+
requirements:
|
92
|
+
- - ">="
|
93
|
+
- !ruby/object:Gem::Version
|
94
|
+
version: '0'
|
95
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
96
|
+
requirements:
|
97
|
+
- - ">="
|
98
|
+
- !ruby/object:Gem::Version
|
99
|
+
version: '0'
|
100
|
+
requirements: []
|
101
|
+
rubyforge_project:
|
102
|
+
rubygems_version: 2.5.1
|
103
|
+
signing_key:
|
104
|
+
specification_version: 4
|
105
|
+
summary: A Ruby wrapper for the SocialPilot platform API
|
106
|
+
test_files:
|
107
|
+
- test/dummy/app/assets/javascripts/application.js
|
108
|
+
- test/dummy/app/assets/stylesheets/application.css
|
109
|
+
- test/dummy/app/controllers/application_controller.rb
|
110
|
+
- test/dummy/app/helpers/application_helper.rb
|
111
|
+
- test/dummy/app/views/layouts/application.html.erb
|
112
|
+
- test/dummy/bin/bundle
|
113
|
+
- test/dummy/bin/rails
|
114
|
+
- test/dummy/bin/rake
|
115
|
+
- test/dummy/bin/setup
|
116
|
+
- test/dummy/bin/spring
|
117
|
+
- test/dummy/config/application.rb
|
118
|
+
- test/dummy/config/boot.rb
|
119
|
+
- test/dummy/config/database.yml
|
120
|
+
- test/dummy/config/environment.rb
|
121
|
+
- test/dummy/config/environments/development.rb
|
122
|
+
- test/dummy/config/environments/production.rb
|
123
|
+
- test/dummy/config/environments/test.rb
|
124
|
+
- test/dummy/config/initializers/assets.rb
|
125
|
+
- test/dummy/config/initializers/backtrace_silencers.rb
|
126
|
+
- test/dummy/config/initializers/cookies_serializer.rb
|
127
|
+
- test/dummy/config/initializers/filter_parameter_logging.rb
|
128
|
+
- test/dummy/config/initializers/inflections.rb
|
129
|
+
- test/dummy/config/initializers/mime_types.rb
|
130
|
+
- test/dummy/config/initializers/session_store.rb
|
131
|
+
- test/dummy/config/initializers/uk_vehicle_data.rb
|
132
|
+
- test/dummy/config/initializers/wrap_parameters.rb
|
133
|
+
- test/dummy/config/locales/en.yml
|
134
|
+
- test/dummy/config/routes.rb
|
135
|
+
- test/dummy/config/secrets.yml
|
136
|
+
- test/dummy/config.ru
|
137
|
+
- test/dummy/db/seeds.rb
|
138
|
+
- test/dummy/Gemfile
|
139
|
+
- test/dummy/Gemfile.lock
|
140
|
+
- test/dummy/public/404.html
|
141
|
+
- test/dummy/public/422.html
|
142
|
+
- test/dummy/public/500.html
|
143
|
+
- test/dummy/public/favicon.ico
|
144
|
+
- test/dummy/public/robots.txt
|
145
|
+
- test/dummy/Rakefile
|
146
|
+
- test/dummy/README.rdoc
|
147
|
+
- test/dummy/test/test_helper.rb
|
148
|
+
- test/test_helper.rb
|
149
|
+
- test/ukvehicledata_test.rb
|