Skip to content

Commit a39dae2

Browse files
committed
Gems updates
Signed-off-by: Yury Kaliada <fut.wrk@gmail.com>
1 parent d3a3f2b commit a39dae2

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

notes/6 Gems.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,10 @@ Gem::Specification.new do |s|
5252
s.email = 'nick@quaran.to'
5353
s.homepage = 'http://example.com/freewill'
5454
s.files = ["lib/freewill.rb", ...]
55+
s.add_runtime_dependency "daemons", ["= 1.1.0"]
56+
s.add_development_dependency "bourne", [">= 0"]
57+
s.add_development_dependency "devise", ["~> 2.2"]
58+
5559
end
5660
```
5761

@@ -70,6 +74,13 @@ end
7074
* net-http-digest_auth => require 'net/http/digest_auth'
7175
* Don’t use UPPERCASE letters
7276

77+
## Версионирование
78+
```
79+
PATCH 0.0.x level changes for implementation level detail changes, such as small bug fixes
80+
MINOR 0.x.0 level changes for any backwards compatible API changes, such as new functionality/features
81+
MAJOR x.0.0 level changes for backwards incompatible API changes, such as changes that will break existing users code if they update
82+
```
83+
7384
## Gemfile & bundler
7485

7586
```

0 commit comments

Comments
 (0)