Skip to content

Commit

Permalink
Fix gemspec with runtimes
Browse files Browse the repository at this point in the history
  • Loading branch information
lodestone committed Jul 6, 2016
1 parent 7631ce8 commit e0b536d
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 10 deletions.
14 changes: 7 additions & 7 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
source "http://rubygems.org"

gem "gli"
gem "sqlite3"
gem "activerecord", "~>5.0.0"
gem "nokogiri"
gem "mechanize"
gem "rainbow"
gem "pry"
# gem "gli"
# gem "sqlite3"
# gem "activerecord", "~>5.0.0"
# gem "nokogiri"
# gem "mechanize"
# gem "rainbow"
# gem "pry"

group :test, :development do
gem "cucumber", '~> 2'
Expand Down
4 changes: 1 addition & 3 deletions README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,7 @@ To initialize and save your password and username:

```sh
# Option 1
kindle --username=change@your.email \
--password=yoursecret \
init
kindle --username=change@your.email --password=yoursecret init
```

**OR**
Expand Down
7 changes: 7 additions & 0 deletions kindle.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,11 @@ Gem::Specification.new do |s|
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.add_runtime_dependency = "gli"
s.add_runtime_dependency = "sqlite3"
s.add_runtime_dependency = "activerecord", "~>5.0.0"
s.add_runtime_dependency = "nokogiri"
s.add_runtime_dependency = "mechanize"
s.add_runtime_dependency = "rainbow"
s.add_runtime_dependency = "pry""
end

0 comments on commit e0b536d

Please sign in to comment.