Sha256: ba79de5a24b92c6e3ee9c701b3f9dcb25932a0a249137dcc0c8462c3ebc154f7

Contents?: true

Size: 1.49 KB

Versions: 1

Compression:

Stored size: 1.49 KB

Contents

= frozen_gems

{<img src="https://badge.fury.io/rb/frozen_gems.png" alt="Gem Version" />}[http://badge.fury.io/rb/frozen_gems]

Write installed gems' versions in a Gemfile.

  source 'http://rubygems.org'

  gem 'thor'

  group :development do
    gem 'rspec'
    gem 'rdoc'
    gem 'bundler'
    gem 'jeweler'
    gem 'simplecov'
  end

freeze gems:

  source 'http://rubygems.org'

  gem 'thor', '0.18.1'

  group :development do
    gem 'rspec', '2.8.0'
    gem 'rdoc', '3.12.2'
    gem 'bundler', '1.5.2'
    gem 'jeweler', '2.0.1'
    gem 'simplecov', '0.8.2'
  end

== Installation

  $ gem install frozen_gems

or

  $ git clone https://github.com/calorie/frozen_gems.git
  $ cd frozen_gems
  $ bundle install
  $ rake install

== Command

  $ freeze

== Contributing to frozen_gems

* Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet.
* Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it.
* Fork the project.
* Start a feature/bugfix branch.
* Commit and push until you are happy with your contribution.
* Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
* Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.

== Copyright

Copyright (c) 2014 Yuu Shigetani. See LICENSE.txt for
further details.

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
frozen_gems-0.0.2 README.rdoc