Created
December 26, 2013 02:26
-
-
Save gam0022/8128983 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[~/Downloads]$ gem install -l unicode_math-1.2.0.gem | |
Successfully installed unicode_math-1.2.0 | |
Parsing documentation for unicode_math-1.2.0 | |
Installing ri documentation for unicode_math-1.2.0 | |
1 gem installed |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[~/Downloads]$ gem unpack unicode_math-1.2.0.gem | |
Unpacked gem: '/Users/gam0022/Downloads/unicode_math-1.2.0' | |
[~/Downloads]$ | |
[~/Downloads]$ tree unicode_math-1.2.0 | |
unicode_math-1.2.0 | |
├── Gemfile | |
├── LICENSE.txt | |
├── README.md | |
├── Rakefile | |
├── lib | |
│ ├── unicode_math | |
│ │ ├── constants.rb | |
│ │ ├── division.rb | |
│ │ ├── exponents.rb | |
│ │ ├── fractions.rb | |
│ │ ├── multiplication.rb | |
│ │ ├── roots.rb | |
│ │ ├── set.rb | |
│ │ ├── sigma.rb | |
│ │ └── trigonometry.rb | |
│ └── unicode_math.rb | |
├── spec | |
│ ├── spec_helper.rb | |
│ ├── support | |
│ │ └── random.rb | |
│ └── unicode_math | |
│ ├── constants_spec.rb | |
│ ├── division_spec.rb | |
│ ├── exponents_spec.rb | |
│ ├── fractions_spec.rb | |
│ ├── multiplication_spec.rb | |
│ ├── root_spec.rb | |
│ ├── set_spec.rb | |
│ ├── sigma_spec.rb | |
│ └── trigonometry_spec.rb | |
└── unicode_math.gemspec | |
5 directories, 26 files |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment