├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── core └── src │ ├── main │ └── scala │ │ └── com │ │ └── stripe │ │ └── scrooge │ │ └── shapes │ │ ├── GenericInstances.scala │ │ ├── GenericMacros.scala │ │ └── package.scala │ └── test │ ├── scala │ └── com │ │ └── stripe │ │ └── scrooge │ │ └── shapes │ │ ├── CirceInstancesTest.scala │ │ └── GenericInstancesTest.scala │ └── thrift │ └── com │ └── stripe │ └── scrooge │ └── shapes │ └── ShapesTest.thrift ├── project ├── build.properties └── plugins.sbt └── version.sbt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/scrooge-shapes/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/scrooge-shapes/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/scrooge-shapes/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/scrooge-shapes/HEAD/README.md -------------------------------------------------------------------------------- /core/src/main/scala/com/stripe/scrooge/shapes/GenericInstances.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/scrooge-shapes/HEAD/core/src/main/scala/com/stripe/scrooge/shapes/GenericInstances.scala -------------------------------------------------------------------------------- /core/src/main/scala/com/stripe/scrooge/shapes/GenericMacros.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/scrooge-shapes/HEAD/core/src/main/scala/com/stripe/scrooge/shapes/GenericMacros.scala -------------------------------------------------------------------------------- /core/src/main/scala/com/stripe/scrooge/shapes/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/scrooge-shapes/HEAD/core/src/main/scala/com/stripe/scrooge/shapes/package.scala -------------------------------------------------------------------------------- /core/src/test/scala/com/stripe/scrooge/shapes/CirceInstancesTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/scrooge-shapes/HEAD/core/src/test/scala/com/stripe/scrooge/shapes/CirceInstancesTest.scala -------------------------------------------------------------------------------- /core/src/test/scala/com/stripe/scrooge/shapes/GenericInstancesTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/scrooge-shapes/HEAD/core/src/test/scala/com/stripe/scrooge/shapes/GenericInstancesTest.scala -------------------------------------------------------------------------------- /core/src/test/thrift/com/stripe/scrooge/shapes/ShapesTest.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/scrooge-shapes/HEAD/core/src/test/thrift/com/stripe/scrooge/shapes/ShapesTest.thrift -------------------------------------------------------------------------------- /project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.1.1 2 | -------------------------------------------------------------------------------- /project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/scrooge-shapes/HEAD/project/plugins.sbt -------------------------------------------------------------------------------- /version.sbt: -------------------------------------------------------------------------------- 1 | version in ThisBuild := "0.2.0-SNAPSHOT" 2 | --------------------------------------------------------------------------------