Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added type coercion for booleans #27

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject google-apps-clj "0.6.1"
(defproject google-apps-clj "0.6.2"
:description "A Clojure library that wraps the Google Java API"
:url "https://github.com/SparkFund/google-apps-clj"
:license {:name "Apache License, Version 2.0"
Expand Down
6 changes: 6 additions & 0 deletions src/google_apps_clj/google_sheets_v4.clj
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,12 @@
(.setUserEnteredValue
(-> (ExtendedValue.)
(.setNumberValue (double n))))))
Boolean
(->cell-data [b]
(-> (CellData.)
(.setUserEnteredValue
(-> (ExtendedValue.)
(.setBoolValue b)))))
String
(->cell-data [s]
(-> (CellData.)
Expand Down
1 change: 1 addition & 0 deletions test/google_apps_clj/google_sheets_v4_test.clj
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
(deftest test-cell-conversion
(is (= "foo" (cell->clj "foo")))
(is (= 2.0 (cell->clj 2.0)))
(is (= true (cell->clj true)))
(is (= (time/date-time 1950 6 15)
(cell->clj (time/date-time 1950 6 15))))
(is (= "foo" (cell->clj (coerce-to-cell "foo"))))
Expand Down