├── .gitignore ├── .rspec ├── .rvmrc ├── .travis.yml ├── Gemfile ├── Guardfile ├── README.md ├── Rakefile ├── easystats.gemspec ├── lib ├── easystats.rb └── easystats │ └── version.rb └── spec ├── lib └── easystats_spec.rb └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- 1 | pkg/* 2 | *.gem 3 | .bundle 4 | Gemfile.lock 5 | coverage/ 6 | -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --format progress 3 | -------------------------------------------------------------------------------- /.rvmrc: -------------------------------------------------------------------------------- 1 | rvm 1.9.3 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrigajtis/easystats/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrigajtis/easystats/HEAD/Gemfile -------------------------------------------------------------------------------- /Guardfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrigajtis/easystats/HEAD/Guardfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrigajtis/easystats/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrigajtis/easystats/HEAD/Rakefile -------------------------------------------------------------------------------- /easystats.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrigajtis/easystats/HEAD/easystats.gemspec -------------------------------------------------------------------------------- /lib/easystats.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrigajtis/easystats/HEAD/lib/easystats.rb -------------------------------------------------------------------------------- /lib/easystats/version.rb: -------------------------------------------------------------------------------- 1 | module Easystats 2 | VERSION = "0.5.1" 3 | end 4 | -------------------------------------------------------------------------------- /spec/lib/easystats_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrigajtis/easystats/HEAD/spec/lib/easystats_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrigajtis/easystats/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------