aids_info 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1 @@
1
+ require 'autotest/bundler'
File without changes
@@ -0,0 +1,41 @@
1
+ !.gitignore
2
+ *.gem
3
+ *.rbc
4
+ *.sw[a-p]
5
+ *.tmproj
6
+ *.tmproject
7
+ *.un~
8
+ *~
9
+ .DS_Store
10
+ .Spotlight-V100
11
+ .Trashes
12
+ ._*
13
+ .bundle
14
+ .config
15
+ .directory
16
+ .elc
17
+ .redcar
18
+ .yardoc
19
+ /.emacs.desktop
20
+ /.emacs.desktop.lock
21
+ Desktop.ini
22
+ Gemfile.lock
23
+ Icon?
24
+ InstalledFiles
25
+ Session.vim
26
+ Thumbs.db
27
+ \#*\#
28
+ _yardoc
29
+ auto-save-list
30
+ coverage
31
+ doc/
32
+ lib/bundler/man
33
+ pkg
34
+ pkg/*
35
+ rdoc
36
+ spec/reports
37
+ test/tmp
38
+ test/version_tmp
39
+ tmp
40
+ tmtags
41
+ tramp
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --color
2
+ --format=nested
3
+ --backtrace
@@ -0,0 +1,3 @@
1
+ --markup markdown
2
+ -
3
+ LICENSE.md
data/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source 'http://rubygems.org'
2
+
3
+ gemspec
@@ -0,0 +1,10 @@
1
+ Copyright (c) 2011, Code for America
2
+ All rights reserved.
3
+
4
+ Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
5
+
6
+ * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
7
+ * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
8
+ * Neither the name of Code for America nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
9
+
10
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
@@ -0,0 +1,32 @@
1
+ # The Code for America RubyGem template
2
+
3
+ If you want to create a new Code for America gem, you can use this gem as a template.
4
+ It's similar to [suspenders][suspenders], but for RubyGems instead of Rails.
5
+
6
+ [suspenders]: https://github.com/thoughtbot/suspenders
7
+
8
+ For more information on RubyGems, you should read the [RubyGems Manuals][manuals].
9
+
10
+ [manuals]: http://docs.rubygems.org/
11
+
12
+ After cloning this gem, you'll want to make the following changes:
13
+
14
+ 1. Replace all instances of api_gem_template and ApiGemTemplate with the snake_case and CamelCase name of your gem, respectively
15
+ 2. Add a summary and description to the [gemspec][gemspec] file
16
+
17
+ [gemspec]: https://github.com/codeforamerica/api_gem_template/blob/master/api_gem_template.gemspec
18
+
19
+ This template includes:
20
+
21
+ * [RSpec][rspec] for isolation testing
22
+ * [SimpleCov][simplecov] for C0 code coverage
23
+ * [ZenTest][zentest] for continuous testing
24
+ * [YARD][yard] for documentation
25
+
26
+ [rspec]: https://github.com/rspec/rspec
27
+ [simplecov]: https://github.com/colszowka/simplecov
28
+ [zentest]: https://github.com/seattlerb/zentest
29
+ [yard]: https://github.com/lsegal/yard
30
+
31
+
32
+ [![Code for America Tracker](http://stats.codeforamerica.org/codeforamerica/api_gem_template.png)](http://stats.codeforamerica.org/projects/api_gem_template)
@@ -0,0 +1,18 @@
1
+ #!/usr/bin/env rake
2
+
3
+ require 'bundler'
4
+ Bundler::GemHelper.install_tasks
5
+
6
+ require 'rspec/core/rake_task'
7
+ RSpec::Core::RakeTask.new(:spec)
8
+
9
+ task :default => :spec
10
+ task :test => :spec
11
+
12
+ require 'yard'
13
+ namespace :doc do
14
+ YARD::Rake::YardocTask.new do |task|
15
+ task.files = ['LICENSE.md', 'lib/**/*.rb']
16
+ task.options = ['--markup', 'markdown']
17
+ end
18
+ end
@@ -0,0 +1,31 @@
1
+ # -*- encoding: utf-8 -*-
2
+ require File.expand_path('../lib/aids_info/version', __FILE__)
3
+
4
+ Gem::Specification.new do |gem|
5
+ gem.name = 'aids_info'
6
+ gem.version = AidsInfo::VERSION
7
+ gem.author = "Code for America"
8
+ gem.email = 'info@codeforamerica.org'
9
+ gem.homepage = ''
10
+ gem.summary = %q{A very small wrapper around the AidsInfo Drug Info database}
11
+ gem.description = %q{A very small wrapper around the AidsInfo Drug Info database}
12
+
13
+ gem.files = `git ls-files`.split("\n")
14
+ gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
15
+ gem.executables = `git ls-files -- bin/*`.split("\n").map{|f| File.basename(f)}
16
+ gem.require_paths = ['lib']
17
+
18
+ gem.add_development_dependency 'ZenTest', '~> 4.5'
19
+ gem.add_development_dependency 'maruku', '~> 0.6'
20
+ gem.add_development_dependency 'rake', '~> 0.9'
21
+ gem.add_development_dependency 'rspec', '~> 2.6'
22
+ gem.add_development_dependency 'simplecov', '~> 0.4'
23
+ gem.add_development_dependency 'yard', '~> 0.7'
24
+ gem.add_development_dependency 'webmock', '~> 1.6'
25
+
26
+ gem.add_runtime_dependency 'faraday', '~> 0.6.1'
27
+ gem.add_runtime_dependency 'faraday_middleware', '~> 0.6.3'
28
+ gem.add_runtime_dependency 'hashie', '~> 1.0.0'
29
+ gem.add_runtime_dependency 'multi_xml', '~> 0.2.2'
30
+ gem.add_runtime_dependency 'rash', '~> 0.3.0'
31
+ end
@@ -0,0 +1,18 @@
1
+ require 'aids_info/client'
2
+
3
+ module AidsInfo
4
+
5
+ def self.client
6
+ AidsInfo::Client.new
7
+ end
8
+
9
+ def self.method_missing(method, *args, &block)
10
+ return super unless client.respond_to?(method)
11
+ client.send(method, *args, &block)
12
+ end
13
+
14
+ def self.respond_to?(method, include_private=false)
15
+ client.respond_to?(method, include_private) || super(method, include_private)
16
+ end
17
+
18
+ end
@@ -0,0 +1,12 @@
1
+ require 'aids_info/client'
2
+ require 'aids_info/client/connection'
3
+ require 'aids_info/client/request'
4
+ require 'aids_info/client/api'
5
+
6
+ module AidsInfo
7
+ class Client
8
+ include AidsInfo::Client::Connection
9
+ include AidsInfo::Client::Request
10
+ include AidsInfo::Client::API
11
+ end
12
+ end
@@ -0,0 +1,9 @@
1
+ module AidsInfo
2
+ class Client
3
+ module API
4
+ def search(drug)
5
+ get("DrugsNew/drug.aspx?displayxml=true&name=#{drug.to_s}")
6
+ end
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,19 @@
1
+ require 'faraday_middleware'
2
+
3
+ module AidsInfo
4
+ class Client
5
+ module Connection
6
+ private
7
+
8
+ def connection
9
+ Faraday.new(:url => 'http://aidsinfo.nih.gov') do |connection|
10
+ connection.use Faraday::Request::UrlEncoded
11
+ connection.use Faraday::Response::RaiseError
12
+ connection.use Faraday::Response::Rashify
13
+ connection.use Faraday::Response::ParseXml
14
+ connection.adapter(Faraday.default_adapter)
15
+ end
16
+ end
17
+ end
18
+ end
19
+ end
@@ -0,0 +1,18 @@
1
+ module AidsInfo
2
+ class Client
3
+ module Request
4
+ def get(path)
5
+ request(:get, path)
6
+ end
7
+
8
+ private
9
+
10
+ def request(method, path)
11
+ response = connection.send(method) do |request|
12
+ request.url(path)
13
+ end
14
+ response.body
15
+ end
16
+ end
17
+ end
18
+ end
@@ -0,0 +1,3 @@
1
+ module AidsInfo
2
+ VERSION = "1.0.0"
3
+ end
@@ -0,0 +1,12 @@
1
+ require 'helper'
2
+
3
+ describe AidsInfo::Client::API do
4
+ context 'search' do
5
+ it 'returns the the resutlt' do
6
+ stub_get('DrugsNew/drug.aspx?displayxml=true&name=combivir').
7
+ to_return(:status => 200, :body => "", :headers => {})
8
+ AidsInfo::Client.new.search('combivir')
9
+ a_get('DrugsNew/drug.aspx?displayxml=true&name=combivir').should have_been_made
10
+ end
11
+ end
12
+ end
@@ -0,0 +1,10 @@
1
+ # -*- encoding: utf-8 -*-
2
+ require 'helper'
3
+
4
+ describe AidsInfo do
5
+ describe ".client" do
6
+ it "should be a AidsInfo::Client" do
7
+ AidsInfo.client.should be_a AidsInfo::Client
8
+ end
9
+ end
10
+ end
@@ -0,0 +1,177 @@
1
+ <?xml version="1.0" encoding="utf-8"?><!DOCTYPE drug SYSTEM "drug.dtd"><drug xmlns=""><names><name type="Spanish Generic" pronunciation="">Lamivudina/ zidovudina</name><name type="Generic" pronunciation="la-MI-vyoo-deen, zye-DOE-vyoo-deen">Lamivudine/Zidovudine</name><name type="Brand" pronunciation="">Combivir</name><name type="AKA" pronunciation="">ZDV/3TC</name></names><drugType>FDA-approved</drugType><drugClass>Nucleoside Reverse Transcriptase Inhibitors</drugClass><chemistry><casName>Zidovudine: Thymidine, 3'-azido-3'-deoxy- </casName><casNumber>Zidovudine: 30516-87-1 </casNumber><formula>Lamivudine: C8-H11-N3-O3-S ; Zidovudine: C10-H13-N5-O4 </formula><elemComposition>Lamivudine: C41.91%, H4.84%, N18.33%, O20.94%, S13.99%; Zidovudine: C44.94%, H4.90%, N26.21%, O23.95%</elemComposition><meltPoint>Lamivudine: 160 to 162&amp;deg;C; Zidovudine: 106 to 112&amp;deg;C</meltPoint><boilPoint></boilPoint><weight>Lamivudine: 229.3 ; Zidovudine: 267.24 </weight></chemistry><summaries><summary type="Patient"><description>Lamivudine/zidovudine is a fixed-dose combination tablet of two antiretroviral medicines, called nucleoside reverse transcriptase inhibitors (NRTIs). Lamivudine/zidovudine works by disrupting one of the early steps in the HIV life cycle, called reverse transcription. During normal reverse transcription, HIV&amp;rsquo;s reverse transcriptase enzyme (a type of protein) converts HIV&amp;rsquo;s RNA&amp;mdash;a single strand of genetic information&amp;mdash;into DNA&amp;mdash;a double strand of genetic information. It does this by recoding the RNA building blocks into complimentary DNA building blocks. As the HIV life cycle proceeds, the newly formed DNA is used to make more copies of HIV virus.
2
+
3
+ When lamivudine/zidovudine is present, however, it competes with two of the available DNA building blocks called deoxycytidine triphosphate and thymidine triphosphate. By replacing these building blocks in the newly developing HIV DNA, lamivudine/zidovudine is able to stop reverse transcriptase from completing its job. This prevents the HIV DNA strand from being formed and halts the HIV life cycle.</description><relatedUse>Lamivudine/zidovudine (Combivir) was originally approved by the U.S. Food and Drug Administration (FDA) on September 27, 1997. It is currently approved for use in combination with other antiretroviral agents for the treatment of HIV infection in adults and children weighing greater than or equal to 30 kg (66 pounds).
4
+
5
+ Lamivudine/zidovudine does not cure or prevent HIV infection or AIDS and does not reduce the risk of passing the virus to other people.</relatedUse><dosingInformation><dosageForm>Always take this medication as your doctor instructs. Lamivudine/zidovudine is taken by mouth, without regard to food, and it is always used with other anti-HIV medications.
6
+
7
+ Dosage forms and strengths:
8
+
9
+ Tablet: lamivudine 150 mg and zidovudine 300 mg
10
+
11
+ What storage conditions are needed for this medication?
12
+
13
+ Store lamivudine/zidovudine tablets between 36&amp;deg;F to 86&amp;deg;F (2&amp;deg;C to 30&amp;deg;C).
14
+
15
+ Keep this medication in the container it came in, tightly closed, and out of reach of children. Throw away any medication that is outdated or no longer needed. Talk to your pharmacist about the proper disposal of your medication.
16
+ In case of emergency/overdose:
17
+
18
+ In case of overdose, call your local poison control center at 1-800-222-1222. If the victim has collapsed or is not breathing, call local emergency services at 911.
19
+
20
+ What other information should I know?
21
+
22
+ Do not let anyone else take your medication. Ask your pharmacist any questions you have about refilling your prescription.
23
+ &amp;nbsp;
24
+ It is important for you to keep a written list of all of the prescription and nonprescription (over-the-counter) medicines you are taking, as well as any products such as vitamins, minerals, or other dietary supplements. You should bring this list with you each time you visit a doctor or if you are admitted to a hospital. It is also important information to carry with you in case of emergencies.
25
+
26
+ </dosageForm><dailyDose>The recommended dose of lamivudine/zidovudine in HIV-1-infected adults and children weighing greater than or equal to 30 kg (66 pounds) is 1 tablet (containing 150 mg of lamivudine and 300 mg of zidovudine) taken twice daily by mouth.
27
+ Note:
28
+
29
+ Depending on certain factors, such as kidney function, liver problems, and possible side effects of the medicine, lamivudine/zidovudine may not be right for you. Your doctor will determine if it is appropriate for you to take this medicine. Always take lamivudine/zidovudine exactly as prescribed by your doctor.
30
+ &amp;nbsp;
31
+ Because lamivudine/zidovudine is a fixed-dose combination tablet, it should not be used in children weighing less than 30 kg (66 pounds).
32
+
33
+
34
+ What should I do if I forget a dose?
35
+ Take the missed dose as soon as you remember it. However, if it is almost time for the next dose, skip the missed dose and continue your regular dosing schedule. Do not take a double dose to make up for a missed dose.</dailyDose></dosingInformation><contraindications>What special precautions should I follow?&amp;nbsp;
36
+ &amp;nbsp;
37
+ Before taking lamivudine/zidovudine,
38
+
39
+ Tell your doctor and pharmacist if you are allergic to lamivudine, zidovudine, or any other medications.
40
+ &amp;nbsp;
41
+ Tell your doctor and pharmacist what other prescription and nonprescription medications, vitamins, nutritional supplements, and herbal products you are taking or plan to take. Your doctor may need to change the doses of your medications or monitor you more carefully for side effects.
42
+ &amp;nbsp;
43
+ Note that lamivudine/zidovudine should not be used if you are taking certain other medicines (see Drug and Food Interactions).
44
+ &amp;nbsp;
45
+ Tell your doctor if you are pregnant or plan to become pregnant. If you become pregnant while taking lamivudine/zidovudine, call your doctor. Tell your doctor if you are breastfeeding. You should not breastfeed if you are infected with HIV or if you are taking lamivudine/zidovudine.
46
+ &amp;nbsp;
47
+ Tell your doctor about any medical problems you may have had or currently have, including kidney or liver problems (such as hepatitis or cirrhosis), pancreas problems (pancreatitis), alcohol use, and low red/white blood cell counts.
48
+ </contraindications><sideEffects>Lamivudine/zidovudine may cause side effects.
49
+ The following life-threatening or serious side effects have been reported. Contact your doctor immediately if you experience:
50
+
51
+ &amp;bull; Low White and Red Blood Cell Counts (Neutropenia and Anemia). Because zidovudine, one of the active ingredients of lamivudine/zidovudine, has been associated with blood cell problems, it is extremely important to have frequent tests to monitor blood cell counts while taking lamivudine/zidovudine. If you experience any of the following symptoms, let your doctor know right away:
52
+
53
+ fatigue
54
+ shortness of breath
55
+ dizziness or light-headedness
56
+ headache
57
+ chest pain
58
+ pale skin
59
+ rapid heart rate
60
+ fever
61
+ sores (ulcers) around the mouth
62
+ chills
63
+ cough
64
+
65
+ &amp;bull; Serious Allergic Reaction (Hypersensitivity Reaction). If you develop symptoms of an allergic reaction, seek medical attention immediately:
66
+
67
+ rash
68
+ itching or swelling of the face, tongue, or throat
69
+ severe dizziness
70
+ trouble breathing
71
+ peeling skin
72
+
73
+ &amp;bull; Lactic acidosis (buildup of lactic acid in the blood). This can be a medical emergency and may require treatment in the hospital. Call your healthcare provider right away if you experience any of the following symptoms of lactic acidosis:
74
+
75
+ feeling weak or tired
76
+ unusual muscle pain
77
+ trouble breathing
78
+ unusual stomach pain or discomfort
79
+ nausea
80
+ vomiting
81
+ a cold sensation, especially in your arms or legs
82
+ dizziness or lightheadedness
83
+ fast or irregular heart beat
84
+ unexplained weight loss
85
+
86
+ &amp;bull; Hepatotoxicity (serious liver problem). Hepatotoxicity with hepatomegaly (liver enlargement) and steatosis (fat in the liver) has been reported in patients taking nucleoside antiretroviral medicines, including lamivudine and zidovudine. Call your healthcare provider right away if you experience the following signs/symptoms of liver problems:
87
+
88
+ skin or white part of the eyes appearing yellow (jaundice)
89
+ dark colored urine
90
+ bowel movements turning light in color
91
+ loss of appetite
92
+ nausea
93
+ lower stomach area pain
94
+
95
+ &amp;bull; Pancreatitis (dangerous inflammation of the pancreas). Tell your doctor if you have ever had pancreatitis, regularly drink alcoholic beverages, or have gallstones, as pancreatitis occurs more often in patients with these conditions. Call your doctor immediately if you develop any of the following symptoms of pancreatitis:
96
+
97
+ stomach pain
98
+ nausea
99
+ vomiting
100
+
101
+ &amp;bull; Myopathy and myositis (muscle disorders and inflammation of muscles). Contact your doctor if you develop:
102
+
103
+ muscle weakness
104
+ muscle cramps
105
+ muscle stiffness or spasms
106
+
107
+ &amp;bull; Worsening of liver disease. Patients co-infected with HIV and HBV may experience a worsening of their liver disease upon discontinuation of lamivudine, an active ingredient of Combivir. Talk to your doctor about any changes in your antiretroviral medicines.
108
+
109
+ &amp;bull; Changes in Body Fat. Changes may include an increased amount of fat in the upper back and neck (buffalo hump), breast, and around the middle of your body (trunk). Loss of fat from the legs, arms, and face may also occur. The exact cause and long-term health effects of these problems are not known.
110
+
111
+ &amp;bull; Changes in your Immune System (Immune Reconstitution Syndrome). This can occur when you start HIV medicines. As your immune system becomes stronger, your body may begin to fight infections that have been &amp;ldquo;hidden&amp;rdquo; in your body for a long time. Call your doctor immediately if you start having any new symptoms after starting your HIV medicine.
112
+ Common side effects that may be associated with lamivudine/zidovudine&amp;nbsp;include the following. Let your doctor know if any of these side effects do not go away or worsen:
113
+
114
+ headache
115
+ nausea
116
+ fatigue
117
+ diarrhea
118
+ cough
119
+ nasal symptoms (such as stuffy nose)
120
+ general feeling of discomfort, illness, or lack of well-being
121
+
122
+ Lamivudine/zidovudine may cause other side effects. Call your doctor if you have any unusual problems while taking this medication.
123
+ If you experience a serious side effect, you or your doctor may send a report to the U.S. FDA&amp;rsquo;s MedWatch Adverse Event Reporting program online at http://www.fda.gov/Safety/MedWatch or by phone at 1-800-332-1088.</sideEffects></summary><summary type="Professional"><description>Lamivudine/zidovudine is a fixed-dose combination tablet containing two synthetic nucleoside analogues: lamivudine and zidovudine. Each tablet contains 150 mg of lamivudine and 300 mg of zidovudine, each of which inhibits HIV-1 viral reverse transcriptase. </description><relatedUse>Lamivudine/zidovudine was originally approved by the U.S. Food and Drug Administration (FDA) on September 27, 1997. Lamivudine/zidovudine is currently indicated in combination with other antiretroviral agents for the treatment of HIV-1 infection. </relatedUse><dosingInformation><modeOfDelivery>Oral. </modeOfDelivery><dosageForm>Film-coated tablets containing lamivudine 150 mg and zidovudine 300 mg.
124
+ The recommended dose of lamivudine/zidovudine for adults and adolescents weighing greater than or equal to 30 kg is one tablet twice daily.
125
+ The recommended oral dosage of scored lamivudine/zidovudine tablets for pediatric patients who weigh greater than or equal to 30 kg and for whom a solid oral dosage form is appropriate is one tablet administered twice daily. Before prescribing lamivudine/zidovudine tablets, children should be assessed for the ability to swallow tablets. If a child is unable to reliably swallow a lamivudine/zidovudine tablet, the liquid oral formulations should be prescribed: lamivudine oral solution and zidovudine syrup.
126
+ Because lamivudine/zidovudine is a fixed-dose combination tablet, it should not be prescribed for pediatric patients weighing less than 30 kg or patients requiring dosage adjustment, such as those with reduced renal function (creatinine clearance less than 50 mL/min), those experiencing dose-limiting adverse events, or those with impaired hepatic function or liver cirrhosis. Liquid and solid oral formulations of the individual components of lamivudine/zidovudine are available for these populations. </dosageForm><storageInstructions>Store between 2&amp;deg;C and 30&amp;deg;C (36&amp;deg;F to 86&amp;deg;F). </storageInstructions></dosingInformation><pharmacology>Lamivudine is a synthetic nucleoside analogue that is phosphorylated intracellularly to its active 5'-triphosphate metabolite, lamivudine triphosphate (3TC-TP). The principal mode of action of 3TC-TP is inhibition of reverse transcriptase (RT) via DNA chain termination after incorporation of the nucleotide analogue. 3TC-TP is a weak inhibitor of cellular DNA polymerases &amp;alpha;, &amp;beta;, and &amp;gamma;. In vitro, lamivudine with zidovudine had synergistic antiretroviral activity.
127
+ Following oral dosing, lamivudine is rapidly absorbed and extensively distributed. Binding to plasma protein is low. Approximately 70% of an intravenous dose of lamivudine is recovered as unchanged drug in the urine. Metabolism of lamivudine is a minor route of elimination. In humans, the only known metabolite is the trans-sulfoxide metabolite (approximately 5% of an oral dose after 12 hours). The mean oral bioavailability, mean apparent volume of distribution, plasma protein binding, median CSF:plasma ratio, mean systemic clearance, mean renal clearance, and elimination half-life (approximate range) of lamivudine in fasting patients are 86%, 1.3 L/kg, less than 36%, 0.12, 0.33 L/hr/kg, 0.22 L/hr/kg and 5 to 7 hrs, respectively.
128
+ Zidovudine is also a synthetic nucleoside analogue that is phosphorylated intracellularly to its active 5'-triphosphate metabolite, zidovudine triphosphate (ZDV-TP). The principal mode of action of ZDV-TP is inhibition of RT via DNA chain termination after incorporation of the nucleotide analogue. ZDV-TP is a weak inhibitor of the cellular DNA polymerases &amp;alpha; and &amp;gamma; and has been reported to be incorporated into the DNA of cells in culture. In cell culture drug combination studies, zidovudine demonstrates synergistic activity with the nucleoside reverse transcriptase inhibitors (NRTIs) abacavir, didanosine, lamivudine, and zalcitabine; the non-nucleoside reverse transcriptase inhibitors (NNRTIs) delavirdine and nevirapine; and the protease inhibitors (PIs) indinavir, nelfinavir, ritonavir, and saquinavir; and additive activity with interferon alfa. Ribavirin has been found to inhibit the phosphorylation of zidovudine in cell culture.
129
+ Following oral administration, zidovudine is rapidly absorbed and extensively distributed. Binding to plasma protein is low. Zidovudine is eliminated primarily by hepatic metabolism. The major metabolite of zidovudine is 3&amp;prime;-azido-3&amp;prime;-deoxy-5&amp;prime;-O-&amp;beta;-D-glucopyranuronosylthymidine (GZDV). GZDV area under the curve (AUC) is about 3-fold greater than the zidovudine AUC. Urinary recovery of zidovudine and GZDV accounts for 14% and 74% of the dose following oral administration, respectively. A second metabolite, 3&amp;prime;-amino-3&amp;prime;-deoxythymidine (AMT), has been identified in plasma. The AMT AUC was one fifth of the zidovudine AUC. The pharmacokinetic properties (mean oral bioavailability, mean apparent volume of distribution, plasma protein binding, median CSF:plasma ratio, mean systemic clearance, mean renal clearance, and elimination half-life [approximate range]) of zidovudine in fasting patients are 64%, 1.6 L/kg, less than 38%, 0.60, 1.6 L/hr/kg, 0.34 L/hr/kg and 0.5 to 3 hrs, respectively.
130
+ One lamivudine/zidovudine tablet is bioequivalent to one lamivudine tablet (150 mg) plus one zidovudine tablet (300 mg) following single-dose administration to fasting healthy adults (n = 24). Lamivudine/zidovudine may be administered with or without food. The lamivudine and zidovudine AUC following administration of lamivudine/zidovudine (Combivir) with food was similar when compared to fasting healthy subjects (n = 24).
131
+ Lamivudine/zidovudine is in FDA Pregnancy Category C. No adequate or well-controlled studies of the combination drug have been done in pregnant women. Clinical trial data demonstrate that maternal zidovudine treatment during pregnancy reduces vertical transmission of HIV-1 infection to the fetus. Animal reproduction studies performed with lamivudine and zidovudine showed increased embryotoxicity and fetal malformations (zidovudine), and increased embryolethality (lamivudine). Lamivudine/zidovudine should be used during pregnancy only if the potential benefit justifies the potential risk to the fetus. To monitor maternal-fetal outcomes of pregnant women exposed to lamivudine/zidovudine and other antiretroviral agents, an Antiretroviral Pregnancy Registry (APR) has been established. Physicians are encouraged to register patients by calling 1-800-258-4263 or online at http://www.APRegistry.com.
132
+ Lamivudine pharmacokinetics were studied in pregnant women during 2 clinical studies conducted in South Africa. The study assessed pharmacokinetics in: 16 women at 36 weeks gestation using 150 mg lamivudine twice daily with zidovudine, 10 women at 38 weeks gestation using 150 mg lamivudine twice daily with zidovudine, and 10 women at 38 weeks gestation using lamivudine 300 mg twice daily without other antiretrovirals. Lamivudine pharmacokinetics in pregnant women were similar to those seen in nonpregnant adults and in postpartum women. Lamivudine concentrations were generally similar in maternal, neonatal, and umbilical cord serum samples.
133
+ A randomized, double-blind, placebo-controlled trial was conducted in HIV-1-infected pregnant women to determine the utility of zidovudine for the prevention of maternal-fetal HIV-1 transmission. Zidovudine treatment during pregnancy reduced the rate of maternal-fetal HIV-1 transmission from 24.9% for infants born to placebo-treated mothers to 7.8% for infants born to mothers treated with zidovudine. There were no differences in pregnancy-related adverse events between the treatment groups. Congenital abnormalities occurred with similar frequency between neonates born to mothers who received zidovudine and neonates born to mothers who received placebo. The observed abnormalities included problems in embryogenesis (prior to 14 weeks) or were recognized on ultrasound before or immediately after initiation of study drug.
134
+ Zidovudine pharmacokinetics were studied in a Phase 1 study of 8 women during the last trimester of pregnancy. As pregnancy progressed, there was no evidence of drug accumulation. The pharmacokinetics of zidovudine were similar to that of nonpregnant adults. Consistent with passive transmission of the drug across the placenta, zidovudine concentrations in neonatal plasma at birth were essentially equal to those in maternal plasma at delivery.
135
+ Animal reproduction studies performed at oral doses up to 130 and 60 times the adult dose in rats and rabbits, respectively, revealed no evidence of teratogenicity due to lamivudine. Increased early embryolethality occurred in rabbits at exposure levels similar to those in humans. However, there was no indication of this effect in rats at exposure levels up to 35 times those in humans. Based on animal studies, lamivudine crosses the placenta and is transferred to the fetus.
136
+ Increased fetal resorptions occurred in pregnant rats and rabbits treated with doses of zidovudine that produced drug plasma concentrations 66 to 226 times (rats) and 12 to 87 times (rabbits) the mean steady-state peak human plasma concentration following a single 100-mg dose of zidovudine. There were no other reported developmental anomalies. In another developmental toxicity study, pregnant rats received zidovudine up to near-lethal doses that produced peak plasma concentrations 350 times peak human plasma concentrations (300 times the daily exposure [AUC] in humans given 600 mg/day zidovudine). This dose was associated with marked maternal toxicity and an increased incidence of fetal malformations. However, there were no signs of teratogenicity at doses up to one fifth the lethal dose.
137
+ The Centers for Disease Control and Prevention recommend that HIV-1-infected mothers in the United States not breastfeed their infants to avoid risking postnatal transmission of HIV-1 infection. Because of both the potential for HIV-1 transmission and serious adverse reactions in nursing infants, mothers should be instructed not to breastfeed if they are receiving lamivudine/zidovudine. Although no studies of lamivudine/zidovudine excretion in breast milk have been performed, lactation studies performed with lamivudine and zidovudine show that both drugs are excreted in human breast milk. Samples of breast milk obtained from 20 mothers receiving lamivudine monotherapy (300 mg twice daily) or combination therapy (150 mg lamivudine twice daily and 300 mg zidovudine twice daily) had measurable concentrations of lamivudine. In another study, after administration of a single dose of 200 mg zidovudine to 13 HIV-1-infected women, the mean concentration of zidovudine was similar in human milk and serum.
138
+ In patients receiving lamivudine monotherapy or combination therapy with lamivudine plus zidovudine, HIV-1 isolates from most patients became phenotypically and genotypically resistant to lamivudine within 12 weeks. In some patients harboring zidovudine-resistant virus at baseline, phenotypic sensitivity to zidovudine was restored by 12 weeks of treatment with zidovudine and lamivudine. Lamivudine/zidovudine combination therapy delayed the emergence of mutations conferring zidovudine resistance. HIV strains resistant to both lamivudine and zidovudine have been isolated from patients after prolonged lamivudine/zidovudine therapy. Dual resistance required the presence of multiple amino acid substitutions, the most essential of which may be G333E. The incidence of dual resistance and the duration of combination therapy required before dual resistance occurs are unknown.
139
+ Lamivudine-resistant isolates of HIV-1 have been selected in cell culture and have also been recovered from patients treated with lamivudine or lamivudine plus zidovudine. Genotypic analysis of isolates selected in cell culture and recovered from lamivudine-treated patients showed that the resistance was due to a specific amino acid substitution in the HIV-1 reverse transcriptase at codon 184 changing the methionine to either isoleucine or valine (M184V/I).
140
+ HIV-1 isolates with reduced susceptibility to zidovudine have been selected in cell culture and were also recovered from patients treated with zidovudine. Genotypic analyses of the isolates selected in cell culture and recovered from zidovudine-treated patients showed substitutions in the HIV-1 RT gene resulting in 6 amino acid substitutions (M41L, D67N, K70R, L210W, T215Y or F, and K219Q) that confer zidovudine resistance. In general, higher levels of resistance were associated with greater number of amino acid substitutions.
141
+ Cross-resistance between lamivudine and zidovudine has not been reported. In some patients treated with lamivudine alone or in combination with zidovudine, isolates have emerged with a substitution at codon 184, which confers resistance to lamivudine. Cross-resistance to abacavir, didanosine, tenofovir, and zalcitabine has been observed in some patients harboring lamivudine-resistant HIV-1 isolates. In some patients treated with zidovudine plus didanosine or zalcitabine, isolates resistant to multiple drugs, including lamivudine, have emerged.
142
+ In a study of 167 HIV-1-infected patients, isolates (n = 2) with multi-drug resistance to didanosine, lamivudine, stavudine, zalcitabine, and zidovudine were recovered from patients treated for &amp;ge;1 year with zidovudine plus didanosine or zidovudine plus zalcitabine. The pattern of resistance-associated amino acid substitutions with such combination therapies was different (A62V, V75I, F77L, F116Y, Q151M) from the pattern with zidovudine monotherapy, with the Q151M substitution being most commonly associated with multi-drug resistance. The substitution at codon 151 in combination with substitutions at 62, 75, 77, and 116 results in a virus with reduced susceptibility to didanosine, lamivudine, stavudine, zalcitabine, and zidovudine. Thymidine analogue mutations (TAMs) are selected by zidovudine and confer cross-resistance to abacavir, didanosine, stavudine, tenofovir, and zalcitabine. </pharmacology><adverseEvents>Lactic acidosis and severe hepatomegaly with steatosis have been reported with the use of nucleoside analogues alone or in combination, including lamivudine, zidovudine, and other antiretrovirals. These conditions are sometimes fatal. A majority of these cases have been in women. Obesity and prolonged nucleoside exposure may be risk factors. Caution should be exercised when administering lamivudine/zidovudine to any patient with known risk factors for liver disease; however, cases have been reported in patients with no known risk factors. Treatment with lamivudine/zidovudine should be suspended in any patient who develops clinical or laboratory findings that suggest the presence of lactic acidosis or pronounced hepatotoxicity (which may include hepatomegaly and steatosis even in the absence of marked transaminase elevations).
143
+ Zidovudine has been associated with hematologic toxicity, including neutropenia and severe anemia, particularly in patients with advanced HIV disease. Lamivudine/zidovudine should be used with caution in patients who have bone marrow compromise evidenced by granulocyte count less than 1,000 cells/mm3 or hemoglobin less than 9.5 g/dL. Frequent blood counts are strongly recommended in patients with advanced HIV-1 disease who are treated with lamivudine/zidovudine. Periodic blood counts are recommended for other HIV-1-infected patients. If anemia or neutropenia develops, dosage interruption may be needed.
144
+ Myopathy and myositis have occurred with prolonged use of zidovudine and may occur during therapy with lamivudine/zidovudine.
145
+ Acute exacerbations of hepatitis B have been reported in patients who are co-infected with hepatitis B virus (HBV) and HIV-1 and have discontinued lamivudine, which is one component of lamivudine/zidovudine. Hepatic function should be monitored closely with both clinical and laboratory follow-up for at least several months in patients who discontinue lamivudine/zidovudine and are co-infected with HIV-1 and HBV. If appropriate, initiation of anti-hepatitis B therapy may be warranted.
146
+ Post treatment Exacerbations of Hepatitis: In clinical trials in non-HIV-1-infected patients treated with lamivudine for chronic HBV, clinical and laboratory evidence of exacerbations of hepatitis have occurred after discontinuation of lamivudine. These exacerbations have been detected primarily by serum ALT elevations in addition to re-emergence of hepatitis B viral DNA (HBV DNA). Although most events appear to have been self-limited, fatalities have been reported in some cases. Similar events have been reported from post-marketing experience after changes from lamivudine-containing HIV-1 treatment regimens to non-lamivudine-containing regimens in patients infected with both HIV-1 and HBV. The causal relationship to discontinuation of lamivudine treatment is unknown. Patients should be closely monitored with both clinical and laboratory follow-up for at least several months after stopping treatment. There is insufficient evidence to determine whether re-initiation of lamivudine alters the course of posttreatment exacerbations of hepatitis.
147
+ Important Differences Among Lamivudine-Containing Products: Combivir tablets contain a higher dose of the same active ingredient (lamivudine) than Epivir-HBV (lamivudine) tablets and oral solution. Epivir-HBV was developed for treating chronic hepatitis B. Safety and efficacy of lamivudine have not been established for treatment of chronic hepatitis B in patients co-infected with HIV-1 and HBV.
148
+ Emergence of Lamivudine-Resistant HBV: In non-HIV-infected patients treated with lamivudine for chronic hepatitis B, emergence of lamivudine-resistant HBV has been detected and has been associated with diminished treatment response (see full prescribing information for EPIVIR-HBV for additional information). Emergence of hepatitis B virus variants associated with resistance to lamivudine has also been reported in HIV-1-infected patients who have received lamivudine-containing antiretroviral regimens in the presence of concurrent infection with hepatitis B virus.
149
+ Lamivudine/zidovudine should be used with caution in patients with a history of pancreatitis or other significant risk factors for the development of pancreatitis. Treatment with lamivudine/zidovudine should be stopped immediately if clinical signs, symptoms, or laboratory abnormalities suggestive of pancreatitis occur.
150
+ Immune reconstitution syndrome has been reported in patients receiving anti-HIV therapy, including lamivudine/zidovudine. Patients who exhibit an inflammatory response to indolent or residual opportunistic infections may require further evaluation before initiating certain anti-HIV regimens.
151
+ Redistribution/accumulation of body fat including central obesity, dorsocervical fat enlargement (buffalo hump), peripheral wasting, facial wasting, breast enlargement, and &amp;ldquo;cushingoid appearance&amp;rdquo; have been observed in patients receiving antiretroviral therapy. The mechanism and long-term consequences of these events are currently unknown. A causal relationship has not been established.
152
+ Reported adverse events occurring in clinical trials of lamivudine/zidovudine affected the following body systems: body as a whole (headache, malaise, fatigue, fever, chills); digestive (nausea, diarrhea, vomiting, anorexia and/or decreased appetite, abdominal pain and cramps, dyspepsia); nervous system (neuropathy, insomnia and other sleep disorders, dizziness, depressive disorders); respiratory (nasal signs and symptoms, cough); skin (rash); and musculoskeletal (musculoskeletal pain, myalgia, arthralgia).
153
+ Adverse events reported during post-approval use of lamivudine/zidovudine or either of the component drugs occurred in the following body systems: body as a whole (redistribution or accumulation of body fat); cardiovascular (cardiomyopathy); endocrine and metabolic (gynecomastia, hyperglycemia); gastrointestinal (oral mucosal pigmentation, stomatitis); general (vasculitis, weakness); hemic and lymphatic (anemia [including pure red cell aplasia and anemias progressing on therapy], lymphadenopathy, splenomegaly); hepatic and pancreatic (lactic acidosis and hepatic steatosis, pancreatitis, posttreatment exacerbation of hepatitis B); hypersensitivity (sensitization reactions [including anaphylaxis], urticaria); musculoskeletal (muscle weakness, creatine phosphokinase elevation, rhabdomyolysis); nervous (paresthesia, peripheral neuropathy, seizures); respiratory (abnormal breath sounds, wheezing ); and skin (alopecia, erythema multiform, Stevens-Johnson syndrome).
154
+ The most commonly reported adverse reactions (incidence greater than or equal to 15%) in adult and pediatric HIV-1 clinical studies of combination lamivudine and zidovudine were headache, nausea, malaise and fatigue, nasal signs and symptoms, diarrhea, and cough. </adverseEvents><drugInteractions>Lamivudine/zidovudine tablets may be administered with or without food. Administering the drug with food did not alter the area under the concentration-time curve (AUC) for lamivudine or zidovudine, as compared to administration under fasting conditions.
155
+ Lamivudine/zidovudine is a fixed-dose combination of lamivudine and zidovudine. Lamivudine/zidovudine should not be administered concomitantly with other lamivudine- or zidovudine-containing products including Epivir (lamivudine) tablets and oral solution, Epivir-HBV tablets and oral solution, Retrovir (zidovudine) tablets, capsules, syrup, and IV infusion, Epzicom (abacavir sulfate and lamivudine) tablets, or Trizivir (abacavir sulfate, lamivudine, and zidovudine) tablets; or emtricitabine-containing products, including Atripla (efavirenz, emtricitabine, and tenofovir), Emtriva (emtricitabine), or Truvada (emtricitabine and tenofovir).
156
+ In vitro studies have shown ribavirin can reduce the phosphorylation of pyrimidine nucleoside analogues such as lamivudine and zidovudine. Although no evidence of a pharmacokinetic or pharmacodynamic interaction (e.g., loss of HIV-1/HCV virologic suppression) was seen when ribavirin was coadministered with lamivudine or zidovudine in HIV-1/HCV co-infected patients, hepatic decompensation (some fatal) has occurred in HIV-1/HCV co-infected patients receiving combination antiretroviral therapy for HIV-1 and interferon alfa with or without ribavirin. Patients receiving interferon alfa with or without ribavirin and lamivudine/zidovudine should be closely monitored for treatment-associated toxicities, especially hepatic decompensation, neutropenia, and anemia. Discontinuation of lamivudine/zidovudine should be considered as medically appropriate. Dose reduction or discontinuation of interferon alfa, ribavirin, or both should also be considered if worsening clinical toxicities are observed, including hepatic decompensation (e.g., Child-Pugh greater than 6) (see the complete prescribing information for interferon and ribavirin). Exacerbation of anemia has been reported in HIV-1/HCV co-infected patients receiving ribavirin and zidovudine. Co-administration of ribavirin and zidovudine is not advised.
157
+ Antiretroviral agents: Lamivudine and zalcitabine may inhibit the intracellular phosphorylation of one another. Therefore, use of lamivudine/zidovudine in combination with zalcitabine is not recommended. Concomitant use of lamivudine/zidovudine with stavudine should be avoided since an antagonistic relationship with zidovudine has been demonstrated in vitro. Some nucleoside analogues affecting DNA replication, such as ribavirin, antagonize the in vitro antiviral activity of zidovudine against HIV-1; concomitant use of such drugs should be avoided.
158
+ Doxorubicin: Concomitant use of lamivudine/zidovudine with doxorubicin should be avoided since an antagonistic relationship with zidovudine has been demonstrated in vitro.
159
+ Hematologic/bone marrow suppressive/cytotoxic agents: Coadministration of ganciclovir, interferon alfa, ribavirin, and other bone marrow suppressive or cytotoxic agents may increase the hematologic toxicity of zidovudine.
160
+ Trimethoprim/Sulfamethoxazole (TMP/SMX): No change in dose of either TMP/SMX or lamivudine is recommended. There is no information regarding the effect on lamivudine pharmacokinetics of higher doses of TMP/SMX such as those used to treat PCP. </drugInteractions><contraindications>Lamivudine/zidovudine tablets are contraindicated in patients with previously demonstrated clinically significant hypersensitivity (e.g., anaphylaxis, Stevens-Johnson syndrome) to any of the components of the products. </contraindications><solubility>Lamivudine: 70 mg/mL in water at 20&amp;deg;C.&amp;nbsp;
161
+
162
+ Zidovudine: 20.1 mg/mL in water at 25&amp;deg;C. </solubility><stability></stability><physicalDescription>Lamivudine: White to off-white crystalline solid.
163
+
164
+ Zidovudine: White to beige, odorless, crystalline solid </physicalDescription><furtherReading>
165
+
166
+ Combivir Prescribing Information from the FDA Web site [PDF]. A more current version may be available on the manufacturer's Web site.
167
+ Castillo SA, Hernandez JE, Brothers CH. Long-term safety and tolerability of the lamivudine/abacavir combination as components of highly active antiretroviral therapy. Drug Saf. 2006;29(9):811-26.
168
+ Fischl MA, Burnside AE Jr, Farthing CE, Thompson MA, Bellos NC, Williams VC, Kauf TL, Wannamaker PG, Shaefer MS; ESS40005 Study Team. Twice-daily Trizivir versus Combivir-abacavir in antiretroviral-experienced adults with human immunodeficiency virus-1 infection: a formulation-switch trial. Pharmacotherapy. 2003 Nov;23(11):1432-40.
169
+ Kumar P, Rodriguez-French A, Thompson M, Tashima K, Averitt D, Wannamaker P, Williams V, Shaefer M, Pakes G, Pappa K; ESS40002 Study Team. A prospective, 96-week study of the impact of Trizivir, Combivir/nelfinavir, and lamivudine/staviudine/nelfinavir on lipids, metabolic parameters and efficacy in antiviral-na&amp;iuml;ve patients: effect of sex and ethnicity. HIV Med. 2006 Mar;7(2):85-98.
170
+ Matheron S, Descamps D, Boue F, Livrozet JM, Lafeuillade A, Aquilina C, Troisvallets D, Goetschel A, Brun-Vezinet F, Mamet JP, Thiaux C; CNA3007 Study Group. Triple nucleoside combination zidovudine/lamivudine/abacavir versus zidovudine/lamivudine/nelfinavir as first-line therapy in HIV-1-infected adults: a randomized trial. Antivir Ther. 2003 Apr;8(2):163-71.
171
+ Ruane PJ, Parenti DM, Margolis DM, Shepp DH, Babinchak TJ, Van Kempen AS, Kauf TL, Danehower SA, Yau L, Hessenthaler SM, Goodwin D, Hernandez JE; COL30336 Study Team. Compact quadruple therapy with the lamivudine/zidovudine combination tablet plus abacavir and efavirenz, followed by the lamivudine/zidovudine/abacavir triple nucleoside tablet plus efavirenz in treatment-naive HIV-infected adults. HIV Clin Trials. 2003 Jul-Aug;4(4):231-43.</furtherReading></summary><summary type="Spanish"><description>El Combivir es una combinación de dos medicamentos contra el VIH: la lamivudina (Epivir) y la zidovudina (Retrovir). Ambos productos pertenecen a la clase de antirretrovirales llamados inhibidores de la transcriptasa inversa análogos de los nucleósidos (NRTI, por sus siglas en inglés). Estos medicamentos bloquean la transcriptasa inversa, una proteína que el VIH necesita para multiplicarse.</description><relatedUse>La lamivudina y la zidovudina están autorizadas independientemente por la Administración de Alimentos y Medicamentos (FDA, por sus siglas en inglés) para el tratamiento de la infección por el VIH en adultos y niños. Debido a que estos dos medicamentos con frecuencia se recetan juntos, el fabricante los ha combinado en una sola tableta. El Combivir fue aprobado por la FDA el 27 de septiembre de 1997 para empleo junto con otros antirretrovirales para el tratamiento de la infección por el VIH en adultos y niños mayores de 12 años. Este medicamento no cura ni previene la infección por el VIH o el SIDA ni reduce el riesgo de transmisión del virus a otras personas.</relatedUse><dosingInformation><dosageForm>El Combivir se fabrica en tabletas para tomarse por vía oral.</dosageForm><dailyDose>La dosis recomendada de Combivir para adultos y adolescentes de por lo menos de 12 años de edad es una tableta (150 mg de lamivudina y 300 mg de zidovudina) dos veces al día.Algunos pacientes pueden necesitar una dosis diferente de lamivudina o zidovudina. Ellos no deben tomar Combivir.</dailyDose></dosingInformation><contraindications>Las personas deben informarle al médico sobre cualquier problema médico que tengan antes de tomar este medicamento.Las advertencias y los efectos secundarios del compuesto de lamivudina/zidovudina pueden ser similares a los de cada uno de esos productos por separado. (Para más información véanse los resúmenes particulares de la lamivudina y la zidovudina.) Los niños menores de 12 años no deben tomar lamivudina/zidovudina. Las personas con enfermedad de la sangre, enfermedad de los riñones o del hígado o inflamación del páncreas deben informarle al médico antes de tomar este medicamento.</contraindications><sideEffects>Además de sus efectos deseables, el compuesto de lamivudina/zidovudina puede causar algunos efectos adversos. Los efectos secundarios graves de este medicamento incluyen: ardor, hormigueo o dolor de las manos, los brazos, los pies o las piernas; escalofrío; problemas del oído, de la nariz o de la garganta; fiebre; dolores musculares; náusea; palidez de la piel; intenso dolor de estómago; erupción de la piel; cansancio o debilidad poco comunes; vómito o amarillamiento de los ojos o la piel. Es preciso informarle al médico si padece cualquiera de estos efectos secundarios.Otros efectos secundarios pueden ser leves y disminuir o desaparecer con el uso continuo del medicamento. Entre los efectos secundarios leves de este medicamento están: tos, diarrea, mareo, dolor de cabeza, falta de apetito, cólico o dolor de estómago leve; y dificultad para dormir. Es preciso informarle al médico si estos efectos secundarios continúan o son molestos.</sideEffects></summary></summaries><manufacturers><pharm><pharmDrug>Combivir</pharmDrug><company>GlaxoSmithKline</company><address>5 Moore Drive
172
+ Research Triangle Park, NC 27709
173
+ Phone: 888-825-5249</address></pharm><pharm><pharmDrug>Lamivudine/Zidovudine</pharmDrug><company>GlaxoSmithKline</company><address>5 Moore Drive
174
+ Research Triangle Park, NC 27709
175
+ Phone: 888-825-5249</address></pharm><pharm><pharmDrug>Lamivudine/Zidovudine</pharmDrug><company>Teva Pharmaceuticals USA</company><address>1090 Horsham Rd. P.O.B. 1090
176
+ North Wales, PA 19454
177
+ Phone: 888-TEVA-USA (838-2872)</address></pharm></manufacturers></drug>
@@ -0,0 +1,48 @@
1
+ $:.unshift File.expand_path('..', __FILE__)
2
+ $:.unshift File.expand_path('../../lib', __FILE__)
3
+ require 'simplecov'
4
+ SimpleCov.start
5
+ require 'aids_info'
6
+ require 'rspec'
7
+
8
+ require 'webmock/rspec'
9
+
10
+ def a_delete(path)
11
+ a_request(:delete, 'http://aidsinfo.nih.gov/' + path)
12
+ end
13
+
14
+ def a_get(path)
15
+ a_request(:get, 'http://aidsinfo.nih.gov/' + path)
16
+ end
17
+
18
+ def a_post(path)
19
+ a_request(:post, 'http://aidsinfo.nih.gov/' + path)
20
+ end
21
+
22
+ def a_put(path)
23
+ a_request(:put, 'http://aidsinfo.nih.gov/' + path)
24
+ end
25
+
26
+ def stub_delete(path)
27
+ stub_request(:delete, 'http://aidsinfo.nih.gov/' + path)
28
+ end
29
+
30
+ def stub_get(path)
31
+ stub_request(:get, 'http://aidsinfo.nih.gov/' + path)
32
+ end
33
+
34
+ def stub_post(path)
35
+ stub_request(:post, 'http://aidsinfo.nih.gov/' + path)
36
+ end
37
+
38
+ def stub_put(path)
39
+ stub_request(:put, 'http://aidsinfo.nih.gov/' + path)
40
+ end
41
+
42
+ def fixture_path
43
+ File.expand_path('../fixtures', __FILE__)
44
+ end
45
+
46
+ def fixture(file)
47
+ File.new(fixture_path + '/' + file)
48
+ end
metadata ADDED
@@ -0,0 +1,196 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: aids_info
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Code for America
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2011-08-22 00:00:00.000000000Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: ZenTest
16
+ requirement: &21264640 !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ~>
20
+ - !ruby/object:Gem::Version
21
+ version: '4.5'
22
+ type: :development
23
+ prerelease: false
24
+ version_requirements: *21264640
25
+ - !ruby/object:Gem::Dependency
26
+ name: maruku
27
+ requirement: &21264140 !ruby/object:Gem::Requirement
28
+ none: false
29
+ requirements:
30
+ - - ~>
31
+ - !ruby/object:Gem::Version
32
+ version: '0.6'
33
+ type: :development
34
+ prerelease: false
35
+ version_requirements: *21264140
36
+ - !ruby/object:Gem::Dependency
37
+ name: rake
38
+ requirement: &21263680 !ruby/object:Gem::Requirement
39
+ none: false
40
+ requirements:
41
+ - - ~>
42
+ - !ruby/object:Gem::Version
43
+ version: '0.9'
44
+ type: :development
45
+ prerelease: false
46
+ version_requirements: *21263680
47
+ - !ruby/object:Gem::Dependency
48
+ name: rspec
49
+ requirement: &21263220 !ruby/object:Gem::Requirement
50
+ none: false
51
+ requirements:
52
+ - - ~>
53
+ - !ruby/object:Gem::Version
54
+ version: '2.6'
55
+ type: :development
56
+ prerelease: false
57
+ version_requirements: *21263220
58
+ - !ruby/object:Gem::Dependency
59
+ name: simplecov
60
+ requirement: &21262760 !ruby/object:Gem::Requirement
61
+ none: false
62
+ requirements:
63
+ - - ~>
64
+ - !ruby/object:Gem::Version
65
+ version: '0.4'
66
+ type: :development
67
+ prerelease: false
68
+ version_requirements: *21262760
69
+ - !ruby/object:Gem::Dependency
70
+ name: yard
71
+ requirement: &21262300 !ruby/object:Gem::Requirement
72
+ none: false
73
+ requirements:
74
+ - - ~>
75
+ - !ruby/object:Gem::Version
76
+ version: '0.7'
77
+ type: :development
78
+ prerelease: false
79
+ version_requirements: *21262300
80
+ - !ruby/object:Gem::Dependency
81
+ name: webmock
82
+ requirement: &21261840 !ruby/object:Gem::Requirement
83
+ none: false
84
+ requirements:
85
+ - - ~>
86
+ - !ruby/object:Gem::Version
87
+ version: '1.6'
88
+ type: :development
89
+ prerelease: false
90
+ version_requirements: *21261840
91
+ - !ruby/object:Gem::Dependency
92
+ name: faraday
93
+ requirement: &21261380 !ruby/object:Gem::Requirement
94
+ none: false
95
+ requirements:
96
+ - - ~>
97
+ - !ruby/object:Gem::Version
98
+ version: 0.6.1
99
+ type: :runtime
100
+ prerelease: false
101
+ version_requirements: *21261380
102
+ - !ruby/object:Gem::Dependency
103
+ name: faraday_middleware
104
+ requirement: &21260920 !ruby/object:Gem::Requirement
105
+ none: false
106
+ requirements:
107
+ - - ~>
108
+ - !ruby/object:Gem::Version
109
+ version: 0.6.3
110
+ type: :runtime
111
+ prerelease: false
112
+ version_requirements: *21260920
113
+ - !ruby/object:Gem::Dependency
114
+ name: hashie
115
+ requirement: &21260460 !ruby/object:Gem::Requirement
116
+ none: false
117
+ requirements:
118
+ - - ~>
119
+ - !ruby/object:Gem::Version
120
+ version: 1.0.0
121
+ type: :runtime
122
+ prerelease: false
123
+ version_requirements: *21260460
124
+ - !ruby/object:Gem::Dependency
125
+ name: multi_xml
126
+ requirement: &21260000 !ruby/object:Gem::Requirement
127
+ none: false
128
+ requirements:
129
+ - - ~>
130
+ - !ruby/object:Gem::Version
131
+ version: 0.2.2
132
+ type: :runtime
133
+ prerelease: false
134
+ version_requirements: *21260000
135
+ - !ruby/object:Gem::Dependency
136
+ name: rash
137
+ requirement: &21259540 !ruby/object:Gem::Requirement
138
+ none: false
139
+ requirements:
140
+ - - ~>
141
+ - !ruby/object:Gem::Version
142
+ version: 0.3.0
143
+ type: :runtime
144
+ prerelease: false
145
+ version_requirements: *21259540
146
+ description: A very small wrapper around the AidsInfo Drug Info database
147
+ email: info@codeforamerica.org
148
+ executables: []
149
+ extensions: []
150
+ extra_rdoc_files: []
151
+ files:
152
+ - .autotest
153
+ - .gemtest
154
+ - .gitignore
155
+ - .rspec
156
+ - .yardopts
157
+ - Gemfile
158
+ - LICENSE.md
159
+ - README.md
160
+ - Rakefile
161
+ - aids_info.gemspec
162
+ - lib/aids_info.rb
163
+ - lib/aids_info/client.rb
164
+ - lib/aids_info/client/api.rb
165
+ - lib/aids_info/client/connection.rb
166
+ - lib/aids_info/client/request.rb
167
+ - lib/aids_info/version.rb
168
+ - spec/aids_info/api_spec.rb
169
+ - spec/aids_info_spec.rb
170
+ - spec/fixtures/combivir.xml
171
+ - spec/helper.rb
172
+ homepage: ''
173
+ licenses: []
174
+ post_install_message:
175
+ rdoc_options: []
176
+ require_paths:
177
+ - lib
178
+ required_ruby_version: !ruby/object:Gem::Requirement
179
+ none: false
180
+ requirements:
181
+ - - ! '>='
182
+ - !ruby/object:Gem::Version
183
+ version: '0'
184
+ required_rubygems_version: !ruby/object:Gem::Requirement
185
+ none: false
186
+ requirements:
187
+ - - ! '>='
188
+ - !ruby/object:Gem::Version
189
+ version: '0'
190
+ requirements: []
191
+ rubyforge_project:
192
+ rubygems_version: 1.8.6
193
+ signing_key:
194
+ specification_version: 3
195
+ summary: A very small wrapper around the AidsInfo Drug Info database
196
+ test_files: []