congress_forms 0.1.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.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 511a14df45a39ea5d0ec33cc0508b301f43ebdf9
4
+ data.tar.gz: 6c94d1b1e1cee5254c7079ca890638ce757230e2
5
+ SHA512:
6
+ metadata.gz: f615b6a22e8ec1b9ce816c0b54c89cdc5a28741cb2d190dbb5b39430669b7f171606da8ed1fa0c96181ea246b0d858bd37a41460ec881602489b741c4c9553e5
7
+ data.tar.gz: ba60c49d93426e5674ebd59e41159601502b2d10dbd799b7d66febf1b708de8cca75e136730f998d41f456b61fefe23986a934723fd5f1f16b3f3713d200fecf
data/.env.example ADDED
@@ -0,0 +1,14 @@
1
+ CWC_API_KEY=abc123
2
+ CWC_HOST=https://cwc.house.gov/
3
+ CWC_DELIVERY_AGENT=Agent
4
+ CWC_DELIVERY_AGENT_ACK_EMAIL=email@example.org
5
+ CWC_DELIVERY_AGENT_CONTACT_NAME=Name
6
+ CWC_DELIVERY_AGENT_CONTACT_EMAIL=email@example.org
7
+ CWC_DELIVERY_AGENT_CONTACT_PHONE=555-555-5555
8
+
9
+ # Optional Sentry configuration.
10
+ SENTRY_DSN=
11
+
12
+ # Save screenshots of form errors.
13
+ CONGRESS_FORMS_SCREENSHOT_LOCATION=
14
+ SERVER_HOST=
data/.gitignore ADDED
@@ -0,0 +1,14 @@
1
+ /.env
2
+ /contact_congress
3
+
4
+ /.bundle/
5
+ /.yardoc
6
+ /Gemfile.lock
7
+ /_yardoc/
8
+ /coverage/
9
+ /doc/
10
+ /pkg/
11
+ /spec/reports/
12
+ /tmp/
13
+
14
+ /*.gem
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --format documentation
2
+ --color
data/.travis.yml ADDED
@@ -0,0 +1,5 @@
1
+ sudo: false
2
+ language: ruby
3
+ rvm:
4
+ - 2.3.1
5
+ before_install: gem install bundler -v 1.12.5
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in congress_forms.gemspec
4
+ gemspec