gruffy 0.0.1 → 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: fe116841233c7eb67535b1668d864630518a8911
4
- data.tar.gz: a1720fb1e386a4f1c1f38da35a05e6b8800a8b95
3
+ metadata.gz: 6481eb8d817e6603c19fae2efd22d1ce3ebd93bb
4
+ data.tar.gz: 0e6c504edaaf64718ec7fbfaf7705bbbaece575f
5
5
  SHA512:
6
- metadata.gz: 08f0df2cbc929ef4dd6130e186a92b719021aa877da0a6816cb89d8185f883497c5c5603e7e5950ba8240685d27e98f0dea4d03bf7a9a9228fd1f251602805d5
7
- data.tar.gz: bac6a9594190f900ef81b673061e6cd81cebea5b6746255e67ed7c305b692adbfcd487a04ef415696f6e3d196d390d250ccba5a24c730a2a8c20ce211405b9ba
6
+ metadata.gz: 0db40e6ed72ca253b73f9fae0354fb2ce2bc336696ae90c14b81e74afea30adbf28b32c6a10de7127b4b3b3489c751b3ba27f4a4cb9c85771523ce6d1d3bec98
7
+ data.tar.gz: d1776e06040bee54eb1d708fbd0c28a22764f02948de004ef05d2b523eb7be9c721a5289a5ce8e4fad66f77d2f4b23da7df53458d30f2cb7962ebca44dffd21d
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gruffy
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Wuttikrai Limsakul
@@ -61,21 +61,10 @@ dependencies:
61
61
  description: Study only.
62
62
  email:
63
63
  - hiphopskynew@gmail.com
64
- executables:
65
- - console
66
- - setup
64
+ executables: []
67
65
  extensions: []
68
66
  extra_rdoc_files: []
69
- files:
70
- - ".gitignore"
71
- - Gemfile
72
- - README.md
73
- - Rakefile
74
- - bin/console
75
- - bin/setup
76
- - gruffy.gemspec
77
- - lib/gruffy.rb
78
- - lib/gruffy/version.rb
67
+ files: []
79
68
  homepage: https://rubygems.org/gems/gruffy
80
69
  licenses:
81
70
  - MIT
data/.gitignore DELETED
@@ -1,9 +0,0 @@
1
- /.bundle/
2
- /.yardoc
3
- /Gemfile.lock
4
- /_yardoc/
5
- /coverage/
6
- /doc/
7
- /pkg/
8
- /spec/reports/
9
- /tmp/
data/Gemfile DELETED
@@ -1,4 +0,0 @@
1
- source 'http://rubygems.org'
2
-
3
- # Specify your gem's dependencies in gruffy.gemspec
4
- gemspec
data/README.md DELETED
@@ -1,39 +0,0 @@
1
- # Gruffy
2
-
3
- Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/gruffy`. To experiment with that code, run `bin/console` for an interactive prompt.
4
-
5
- TODO: Delete this and the text above, and describe your gem
6
-
7
- ## Installation
8
-
9
- Add this line to your application's Gemfile:
10
-
11
- ```ruby
12
- gem 'gruffy'
13
- ```
14
-
15
- And then execute:
16
-
17
- $ bundle
18
-
19
- Or install it yourself as:
20
-
21
- $ gem install gruffy
22
-
23
- ## Usage
24
-
25
- TODO: Write usage instructions here
26
-
27
- ## Development
28
-
29
- After checking out the repo, run `bin/setup` to install dependencies. Then, run `bin/console` for an interactive prompt that will allow you to experiment.
30
-
31
- To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release` to create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
32
-
33
- ## Contributing
34
-
35
- 1. Fork it ( https://github.com/[my-github-username]/gruffy/fork )
36
- 2. Create your feature branch (`git checkout -b my-new-feature`)
37
- 3. Commit your changes (`git commit -am 'Add some feature'`)
38
- 4. Push to the branch (`git push origin my-new-feature`)
39
- 5. Create a new Pull Request
data/Rakefile DELETED
@@ -1,12 +0,0 @@
1
- require 'rubygems'
2
- require 'bundler/gem_tasks'
3
- require 'rake/testtask'
4
- require 'rake/clean'
5
- require 'time'
6
- require 'date'
7
- require 'uri'
8
- require 'net/http'
9
- require 'net/https'
10
- require 'openssl'
11
- require 'yaml'
12
- require 'highline/import'
@@ -1,14 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- require "bundler/setup"
4
- require "gruffy"
5
-
6
- # You can add fixtures and/or initialization code here to make experimenting
7
- # with your gem easier. You can also use a different console, if you like.
8
-
9
- # (If you use this, don't forget to add pry to your Gemfile!)
10
- # require "pry"
11
- # Pry.start
12
-
13
- require "irb"
14
- IRB.start
data/bin/setup DELETED
@@ -1,7 +0,0 @@
1
- #!/bin/bash
2
- set -euo pipefail
3
- IFS=$'\n\t'
4
-
5
- bundle install
6
-
7
- # Do any other automated setup that you need to do here
@@ -1,32 +0,0 @@
1
- # coding: utf-8
2
- lib = File.expand_path('../lib', __FILE__)
3
- $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
- require 'date'
5
- require 'gruffy/version'
6
-
7
- Gem::Specification.new do |spec|
8
- spec.name = "gruffy"
9
- spec.version = Gruffy::VERSION
10
- spec.authors = ["Wuttikrai Limsakul"]
11
- spec.email = ["hiphopskynew@gmail.com"]
12
- spec.summary = %q{Not summary}
13
- spec.description = %q{Study only.}
14
- spec.homepage = "https://rubygems.org/gems/gruffy"
15
- spec.license = "MIT"
16
-
17
- spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
18
- spec.bindir = "bin"
19
- spec.executables = spec.files.grep(%r{^bin/}).map { |f| File.basename(f) }
20
- spec.specification_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
21
- spec.required_ruby_version = ['>= 1.9.3', '< 3']
22
- spec.require_paths = ["lib"]
23
-
24
- if defined? JRUBY_VERSION
25
- spec.platform = 'java'
26
- spec.add_dependency 'rmagick4j', '~> 0.3', '>= 0.3.9'
27
- else
28
- spec.add_dependency 'rmagick', '~> 2.13', '>= 2.13.4'
29
- end
30
- spec.add_development_dependency('rake')
31
- spec.add_development_dependency('minitest-reporters')
32
- end
@@ -1,32 +0,0 @@
1
- require './gruffy/version'
2
-
3
- # Extra full path added to fix loading errors on some installations.
4
-
5
- %w(
6
- themes
7
- base
8
- area
9
- bar
10
- bezier
11
- bullet
12
- dot
13
- line
14
- net
15
- pie
16
- scatter
17
- spider
18
- stacked_area
19
- stacked_bar
20
- side_stacked_bar
21
- side_bar
22
- accumulator_bar
23
-
24
- scene
25
-
26
- mini/legend
27
- mini/bar
28
- mini/pie
29
- mini/side_bar
30
- ).each do |filename|
31
- require "./gruffy/#{filename}"
32
- end
@@ -1,3 +0,0 @@
1
- module Gruffy
2
- VERSION = '0.0.1'
3
- end