├── .gitignore ├── .rspec ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── Gemfile ├── LICENSE ├── LICENSE.txt ├── README.md ├── Rakefile ├── bin ├── console └── setup ├── examples ├── comparing_ints.gif ├── comparing_ints.html └── comparing_ints.rb ├── graph-function.gemspec ├── lib └── graph │ ├── function.rb │ └── function │ ├── comparison.rb │ ├── ints_comparison.rb │ ├── plot_config.rb │ ├── reformat_string.rb │ └── version.rb └── spec ├── graph ├── comparison.gif ├── faker.gif ├── function_spec.rb ├── memory.gif ├── multitrial.gif ├── proc_v_method.gif ├── rantly.gif ├── two_func.gif └── two_func.txt └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mooreniemi/graph-function/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --format documentation 2 | --color 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mooreniemi/graph-function/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mooreniemi/graph-function/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mooreniemi/graph-function/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mooreniemi/graph-function/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mooreniemi/graph-function/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mooreniemi/graph-function/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mooreniemi/graph-function/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mooreniemi/graph-function/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mooreniemi/graph-function/HEAD/bin/setup -------------------------------------------------------------------------------- /examples/comparing_ints.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mooreniemi/graph-function/HEAD/examples/comparing_ints.gif -------------------------------------------------------------------------------- /examples/comparing_ints.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mooreniemi/graph-function/HEAD/examples/comparing_ints.html -------------------------------------------------------------------------------- /examples/comparing_ints.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mooreniemi/graph-function/HEAD/examples/comparing_ints.rb -------------------------------------------------------------------------------- /graph-function.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mooreniemi/graph-function/HEAD/graph-function.gemspec -------------------------------------------------------------------------------- /lib/graph/function.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mooreniemi/graph-function/HEAD/lib/graph/function.rb -------------------------------------------------------------------------------- /lib/graph/function/comparison.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mooreniemi/graph-function/HEAD/lib/graph/function/comparison.rb -------------------------------------------------------------------------------- /lib/graph/function/ints_comparison.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mooreniemi/graph-function/HEAD/lib/graph/function/ints_comparison.rb -------------------------------------------------------------------------------- /lib/graph/function/plot_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mooreniemi/graph-function/HEAD/lib/graph/function/plot_config.rb -------------------------------------------------------------------------------- /lib/graph/function/reformat_string.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mooreniemi/graph-function/HEAD/lib/graph/function/reformat_string.rb -------------------------------------------------------------------------------- /lib/graph/function/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mooreniemi/graph-function/HEAD/lib/graph/function/version.rb -------------------------------------------------------------------------------- /spec/graph/comparison.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mooreniemi/graph-function/HEAD/spec/graph/comparison.gif -------------------------------------------------------------------------------- /spec/graph/faker.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mooreniemi/graph-function/HEAD/spec/graph/faker.gif -------------------------------------------------------------------------------- /spec/graph/function_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mooreniemi/graph-function/HEAD/spec/graph/function_spec.rb -------------------------------------------------------------------------------- /spec/graph/memory.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mooreniemi/graph-function/HEAD/spec/graph/memory.gif -------------------------------------------------------------------------------- /spec/graph/multitrial.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mooreniemi/graph-function/HEAD/spec/graph/multitrial.gif -------------------------------------------------------------------------------- /spec/graph/proc_v_method.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mooreniemi/graph-function/HEAD/spec/graph/proc_v_method.gif -------------------------------------------------------------------------------- /spec/graph/rantly.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mooreniemi/graph-function/HEAD/spec/graph/rantly.gif -------------------------------------------------------------------------------- /spec/graph/two_func.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mooreniemi/graph-function/HEAD/spec/graph/two_func.gif -------------------------------------------------------------------------------- /spec/graph/two_func.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mooreniemi/graph-function/HEAD/spec/graph/two_func.txt -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mooreniemi/graph-function/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------