dotiw 4.0.1 → 5.0.0
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 +4 -4
- data/.github/workflows/ruby.yml +45 -0
- data/.rspec +2 -0
- data/Appraisals +19 -0
- data/CHANGELOG.md +20 -6
- data/Gemfile +2 -0
- data/MIT-LICENSE +1 -1
- data/README.markdown +131 -62
- data/Rakefile +3 -1
- data/dotiw.gemspec +16 -18
- data/gemfiles/rails_4.gemfile +5 -3
- data/gemfiles/rails_5.0.gemfile +5 -3
- data/gemfiles/rails_5.1.gemfile +5 -3
- data/gemfiles/rails_5.2.gemfile +9 -0
- data/gemfiles/rails_6.0.gemfile +9 -0
- data/lib/dotiw.rb +22 -11
- data/lib/dotiw/action_view/helpers/date_helper.rb +24 -0
- data/lib/dotiw/locale/ar.yml +34 -27
- data/lib/dotiw/locale/pl.yml +7 -0
- data/lib/dotiw/methods.rb +91 -0
- data/lib/dotiw/time_hash.rb +38 -32
- data/lib/dotiw/version.rb +2 -2
- data/spec/lib/dotiw_spec.rb +197 -155
- data/spec/spec_helper.rb +2 -9
- metadata +35 -31
- data/.travis.yml +0 -27
- data/lib/dotiw/action_view_ext/helpers/date_helper.rb +0 -103
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 268158a7bbfdd70af4db14b42aa6f0bf24869a4eda6cefd0eb528598e1f0dfbd
|
4
|
+
data.tar.gz: 9ee5ba47781f5aa16796641251a02e68997dae148f1b3f4b36f7f7a98a3d7ba6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4c376145f1d7e62acb4ed59e2ff6ed0a2fd427507a72c69785fd4d01b6efa6a5269f3d1979ce7b3087608d537bc3857c6298b93beafdbca10c701d870578cb0f
|
7
|
+
data.tar.gz: ab46caf7a03f8ccd459948d3102a363eb0a3978b1e9a76c1344682a89f9b3bd5691090024860a58668ccb89e4566c13b996ae56cc9f64fd8e673b8bdce1da9d3
|
@@ -0,0 +1,45 @@
|
|
1
|
+
name: Ruby
|
2
|
+
|
3
|
+
on:
|
4
|
+
push:
|
5
|
+
branches:
|
6
|
+
- master
|
7
|
+
pull_request:
|
8
|
+
branches:
|
9
|
+
- master
|
10
|
+
|
11
|
+
jobs:
|
12
|
+
build:
|
13
|
+
runs-on: ubuntu-latest
|
14
|
+
strategy:
|
15
|
+
fail-fast: false
|
16
|
+
matrix:
|
17
|
+
include:
|
18
|
+
- ruby-version: 2.5.x
|
19
|
+
- ruby-version: 2.6.x
|
20
|
+
- ruby-version: 2.4.x
|
21
|
+
bundler-version: 1.17.3
|
22
|
+
gemfile: gemfiles/rails_4.gemfile
|
23
|
+
- ruby-version: 2.6.x
|
24
|
+
gemfile: gemfiles/rails_5.0.gemfile
|
25
|
+
- ruby-version: 2.6.x
|
26
|
+
gemfile: gemfiles/rails_5.1.gemfile
|
27
|
+
- ruby-version: 2.6.x
|
28
|
+
gemfile: gemfiles/rails_5.2.gemfile
|
29
|
+
- ruby-version: 2.6.x
|
30
|
+
gemfile: gemfiles/rails_6.0.gemfile
|
31
|
+
steps:
|
32
|
+
- uses: actions/checkout@v2
|
33
|
+
- name: Set up Ruby
|
34
|
+
uses: actions/setup-ruby@v1
|
35
|
+
with:
|
36
|
+
ruby-version: ${{ matrix.ruby-version }}
|
37
|
+
- name: Build and test
|
38
|
+
env:
|
39
|
+
BUNDLE_GEMFILE: ${{ matrix.gemfile }}
|
40
|
+
BUNDLER: ${{ matrix.bundler-version }}
|
41
|
+
run: |
|
42
|
+
gem uninstall bundler
|
43
|
+
gem install bundler -v ${BUNDLER:-2.1.4}
|
44
|
+
bundle install --jobs 4 --retry 3
|
45
|
+
bundle exec rake
|
data/.rspec
ADDED
data/Appraisals
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
appraise 'rails_4' do
|
2
|
+
gem 'rails', '~> 4.0'
|
3
|
+
end
|
4
|
+
|
5
|
+
appraise 'rails_5.0' do
|
6
|
+
gem 'rails', '~> 5.0.0'
|
7
|
+
end
|
8
|
+
|
9
|
+
appraise 'rails_5.1' do
|
10
|
+
gem 'rails', '~> 5.1.0'
|
11
|
+
end
|
12
|
+
|
13
|
+
appraise 'rails_5.2' do
|
14
|
+
gem 'rails', '~> 5.2.0'
|
15
|
+
end
|
16
|
+
|
17
|
+
appraise 'rails_6.0' do
|
18
|
+
gem 'rails', '~> 6.0.0'
|
19
|
+
end
|
data/CHANGELOG.md
CHANGED
@@ -1,10 +1,24 @@
|
|
1
|
+
## 5.0.0 (2020/05/07)
|
2
|
+
|
3
|
+
* [#105](https://github.com/radar/distance_of_time_in_words/pull/105): Support for Ruby w/o Rails - [@dblock](https://github.com/dblock).
|
4
|
+
* [#108](https://github.com/radar/distance_of_time_in_words/pull/108): Fix negative weeks - [@ivanovaleksey](https://github.com/ivanovaleksey).
|
5
|
+
|
6
|
+
## 4.0.1 (2018/06/01)
|
7
|
+
|
1
8
|
## 3.1.1 (2016/03/08)
|
2
|
-
* Add CHANGELOG.md
|
3
9
|
|
4
10
|
## 3.1.0 (2016/03/07)
|
5
11
|
|
6
|
-
* [#68](https://github.com/radar/dotiw/pull/68): Add support for weeks - [@lauranjansen](https://github.com/lauranjansen)
|
7
|
-
* [#69](https://github.com/radar/dotiw/pull/69): Add Indonesian language support - [@avidmaulanas](https://github.com/avidmaulanas)
|
8
|
-
* [#70](https://github.com/radar/dotiw/pull/70): Add French language support - [@geo1004](https://github.com/geo1004)
|
9
|
-
* [#72](https://github.com/radar/dotiw/pull/72): Add Danish language support - [@kaspernj](https://github.com/kaspernj)
|
10
|
-
* [#71](https://github.com/radar/dotiw/pull/71): Update bundler and ruby versions for Travis CI - [@lauranjansen](https://github.com/lauranjansen)
|
12
|
+
* [#68](https://github.com/radar/dotiw/pull/68): Add support for weeks - [@lauranjansen](https://github.com/lauranjansen).
|
13
|
+
* [#69](https://github.com/radar/dotiw/pull/69): Add Indonesian language support - [@avidmaulanas](https://github.com/avidmaulanas).
|
14
|
+
* [#70](https://github.com/radar/dotiw/pull/70): Add French language support - [@geo1004](https://github.com/geo1004).
|
15
|
+
* [#72](https://github.com/radar/dotiw/pull/72): Add Danish language support - [@kaspernj](https://github.com/kaspernj).
|
16
|
+
* [#71](https://github.com/radar/dotiw/pull/71): Update bundler and ruby versions for Travis CI - [@lauranjansen](https://github.com/lauranjansen).
|
17
|
+
|
18
|
+
## 3.0.1 (2015/04/09)
|
19
|
+
|
20
|
+
## 3.0 (2015/04/09)
|
21
|
+
|
22
|
+
## 0.2.4 (2009/10/18)
|
23
|
+
|
24
|
+
* Initial public release - [@radar](https://github.com/radar).
|
data/Gemfile
CHANGED
data/MIT-LICENSE
CHANGED
data/README.markdown
CHANGED
@@ -1,54 +1,83 @@
|
|
1
|
-
# dotiw
|
1
|
+
# dotiw 
|
2
2
|
|
3
|
-
dotiw
|
3
|
+
The `dotiw` library that adds `distance_of_time_in_words` to any Ruby project, or overrides the default implementation in Rails with more accurate output.
|
4
4
|
|
5
|
-
|
6
|
-
|
5
|
+
Do you crave accuracy down to the second? So do I. That's why I made this gem.
|
6
|
+
|
7
|
+
## Install
|
8
|
+
|
9
|
+
Add to your `Gemfile`.
|
10
|
+
|
11
|
+
```ruby
|
12
|
+
gem 'dotiw'
|
13
|
+
```
|
14
|
+
|
15
|
+
Run `bundle install`.
|
16
|
+
|
17
|
+
### Pure Ruby
|
18
|
+
|
19
|
+
```ruby
|
20
|
+
require 'dotiw'
|
21
|
+
|
22
|
+
include DOTIW::Methods
|
23
|
+
```
|
24
|
+
|
25
|
+
### Rails
|
26
|
+
|
27
|
+
```ruby
|
28
|
+
require 'dotiw'
|
29
|
+
|
30
|
+
include ActionView::Helpers::DateHelper
|
31
|
+
include ActionView::Helpers::TextHelper
|
32
|
+
include ActionView::Helpers::NumberHelper
|
33
|
+
```
|
34
|
+
|
35
|
+
## distance\_of\_time\_in\_words
|
36
|
+
|
37
|
+
Take this for a totally kick-ass example:
|
38
|
+
|
39
|
+
```ruby
|
40
|
+
>> distance_of_time_in_words(Time.now, Time.now + 1.year + 2.months + 3.weeks + 4.days + 5.hours + 6.minutes + 7.seconds, true)
|
41
|
+
=> "1 year, 2 months, 3 weeks, 4 days, 5 hours, 6 minutes, and 7 seconds"
|
42
|
+
```
|
7
43
|
|
8
44
|
Also if one of the measurement is zero it will not output it:
|
9
45
|
|
10
|
-
|
11
|
-
|
46
|
+
```ruby
|
47
|
+
>> distance_of_time_in_words(Time.now, Time.now + 1.year + 2.months + 5.hours + 6.minutes + 7.seconds, true)
|
48
|
+
=> "1 year, 2 months, 4 days, 6 minutes, and 7 seconds"
|
49
|
+
```
|
12
50
|
|
13
51
|
Better than "about 1 year", am I right? Of course I am.
|
14
52
|
|
15
53
|
"But Ryan!", you say, "What happens if the time is only in seconds but because of the default the seconds aren't shown? Won't it be blank?"
|
16
54
|
"No!" I triumphantly reply:
|
17
55
|
|
18
|
-
|
19
|
-
|
56
|
+
```ruby
|
57
|
+
>> distance_of_time_in_words(Time.now, Time.now + 1.second, false)
|
58
|
+
=> "1 second"
|
59
|
+
```
|
20
60
|
|
21
61
|
The third argument for this method is whether or not to include seconds. By default this is `false` (because in Rails' `distance_of_time_in_words` it is), you can turn it on though by passing `true` as the third argument:
|
22
62
|
|
23
|
-
|
24
|
-
|
63
|
+
```ruby
|
64
|
+
>> distance_of_time_in_words(Time.now, Time.now + 1.year + 1.second, true)
|
65
|
+
=> "1 year, and 1 second"
|
66
|
+
```
|
25
67
|
|
26
|
-
Yes this could just be merged into the options hash but I'm leaving it here to ensure "backwards-compatibility",
|
27
|
-
because that's just an insanely radical thing to do. \m/
|
68
|
+
Yes this could just be merged into the options hash but I'm leaving it here to ensure "backwards-compatibility", because that's just an insanely radical thing to do. \m/
|
28
69
|
|
29
70
|
The last argument is an optional options hash that can be used to manipulate behavior and (which uses `to_sentence`).
|
30
71
|
|
31
72
|
Don't like having to pass in `Time.now` all the time? Then use `time_ago_in_words` which also will *rock your
|
32
73
|
world*:
|
33
74
|
|
34
|
-
>> time_ago_in_words(Time.now + 3.days + 1.second)
|
35
|
-
=> "3 days, and 1 second"
|
36
|
-
|
37
|
-
Oh, and did I mention it supports I18n? Oh yeah. Rock on!
|
38
|
-
|
39
|
-
## Install
|
40
|
-
|
41
|
-
Install it as a gem:
|
42
|
-
|
43
75
|
```ruby
|
44
|
-
|
76
|
+
>> time_ago_in_words(Time.now + 3.days + 1.second)
|
77
|
+
=> "3 days, and 1 second"
|
45
78
|
```
|
46
79
|
|
47
|
-
|
48
|
-
|
49
|
-
```ruby
|
50
|
-
gem 'dotiw', github: 'radar/dotiw'
|
51
|
-
```
|
80
|
+
Oh, and did I mention it supports I18n? Oh yeah. Rock on!
|
52
81
|
|
53
82
|
### Options
|
54
83
|
|
@@ -56,10 +85,12 @@ gem 'dotiw', github: 'radar/dotiw'
|
|
56
85
|
|
57
86
|
You can pass in a locale and it'll output it in whatever language you want (provided you have translations, otherwise it'll default to your app's default locale (the `config.i18n.default_locale` you have set in `/config/application.rb`):
|
58
87
|
|
59
|
-
|
60
|
-
|
88
|
+
```ruby
|
89
|
+
>> distance_of_time_in_words(Time.now, Time.now + 1.minute, false, locale: :es)
|
90
|
+
=> "1 minuto"
|
91
|
+
```
|
61
92
|
|
62
|
-
This will also be passed to `to_sentence
|
93
|
+
This will also be passed to `to_sentence`.
|
63
94
|
|
64
95
|
#### :vague
|
65
96
|
|
@@ -67,46 +98,60 @@ Specify this if you want it to use the old `distance_of_time_in_words`. The valu
|
|
67
98
|
|
68
99
|
#### :accumulate_on
|
69
100
|
|
70
|
-
Specifies the maximum output unit which will accumulate all the surplus. Say you set it to seconds and your time difference is of 2 minutes then the output would be 120 seconds.
|
101
|
+
Specifies the maximum output unit which will accumulate all the surplus. Say you set it to seconds and your time difference is of 2 minutes then the output would be 120 seconds.
|
71
102
|
|
72
|
-
|
73
|
-
|
103
|
+
```ruby
|
104
|
+
>> distance_of_time_in_words(Time.now, Time.now + 2.hours + 70.seconds, true, accumulate_on: :minutes)
|
105
|
+
=> "121 minutes and 10 seconds"
|
106
|
+
```
|
74
107
|
|
75
108
|
#### :only
|
76
109
|
|
77
110
|
Only want a specific measurement of time? No problem!
|
78
111
|
|
79
|
-
|
80
|
-
|
112
|
+
```ruby
|
113
|
+
>> distance_of_time_in_words(Time.now, Time.now + 1.hour + 1.minute, false, only: :minutes)
|
114
|
+
=> "1 minute"
|
115
|
+
```
|
81
116
|
|
82
117
|
You only want some? No problem too!
|
83
118
|
|
84
|
-
|
85
|
-
|
119
|
+
```ruby
|
120
|
+
>> distance_of_time_in_words(Time.now, Time.now + 1.hour + 1.day + 1.minute, false, only: [:minutes, :hours])
|
121
|
+
=> "1 hour and 1 minute"
|
122
|
+
```
|
86
123
|
|
87
124
|
#### :except
|
88
125
|
|
89
126
|
Don't want a measurement of time? No problem!
|
90
127
|
|
91
|
-
|
92
|
-
|
128
|
+
```ruby
|
129
|
+
>> distance_of_time_in_words(Time.now, Time.now + 1.hour + 1.minute, false, except: :minutes)
|
130
|
+
=> "1 hour"
|
131
|
+
```
|
93
132
|
|
94
133
|
Culling a whole group of measurements of time:
|
95
134
|
|
96
|
-
|
97
|
-
|
135
|
+
```ruby
|
136
|
+
>> distance_of_time_in_words(Time.now, Time.now + 1.hour + 1.day + 1.minute, false, except: [:minutes, :hours])
|
137
|
+
=> "1 day"
|
138
|
+
```
|
98
139
|
|
99
140
|
#### :highest\_measure\_only
|
100
141
|
|
101
142
|
For times when Rails `distance_of_time_in_words` is not precise enough and `DOTIW` is too precise. For instance, if you only want to know the highest time part (measure) that elapsed between two dates.
|
102
143
|
|
103
|
-
|
104
|
-
|
144
|
+
```ruby
|
145
|
+
>> distance_of_time_in_words(Time.now, Time.now + 1.hour + 1.minute + 1.second, true, highest_measure_only: true)
|
146
|
+
=> "1 hour"
|
147
|
+
```
|
105
148
|
|
106
149
|
Notice how minutes and seconds were removed from the output. Another example:
|
107
150
|
|
108
|
-
|
109
|
-
|
151
|
+
```ruby
|
152
|
+
>> distance_of_time_in_words(Time.now, Time.now + 1.minute + 1.second, true, highest_measure_only: true)
|
153
|
+
=> "1 minute"
|
154
|
+
```
|
110
155
|
|
111
156
|
Minutes are the highest measure, so seconds were discarded from the output.
|
112
157
|
|
@@ -114,58 +159,81 @@ Minutes are the highest measure, so seconds were discarded from the output.
|
|
114
159
|
|
115
160
|
When you want variable precision from `DOTIW`:
|
116
161
|
|
117
|
-
|
118
|
-
|
162
|
+
```ruby
|
163
|
+
>> distance_of_time_in_words(Time.now, Time.now + 1.hour + 1.minute + 1.second, true, highest_measures: 2)
|
164
|
+
=> "1 hour and 1 minute"
|
165
|
+
```
|
119
166
|
|
120
167
|
#### :words_connector
|
121
168
|
|
122
|
-
|
169
|
+
This is an option for `to_sentence`, defaults to ', '.
|
123
170
|
|
124
171
|
Using something other than a comma:
|
125
172
|
|
126
|
-
|
127
|
-
|
173
|
+
```ruby
|
174
|
+
>> distance_of_time_in_words(Time.now, Time.now + 1.hour + 1.minute + 1.second, true, words_connector: ' - ')
|
175
|
+
=> "1 hour - 1 minute, and 1 second"
|
176
|
+
```
|
128
177
|
|
129
178
|
#### :two\_words\_connector
|
130
179
|
|
131
|
-
|
180
|
+
This is an option for `to_sentence`, defaults to ' and '.
|
132
181
|
|
133
182
|
Using something other than 'and':
|
134
183
|
|
135
|
-
|
136
|
-
|
184
|
+
```ruby
|
185
|
+
>> distance_of_time_in_words(Time.now, Time.now + 1.hour + 1.minute, true, two_words_connector: ' plus ')
|
186
|
+
=> "1 hour plus 1 minute"
|
187
|
+
```
|
137
188
|
|
138
189
|
#### :last\_word\_connector
|
139
190
|
|
140
|
-
|
191
|
+
This is an option for `to_sentence`, defaults to ', and '.
|
141
192
|
|
142
193
|
Using something other than ', and':
|
143
194
|
|
144
|
-
|
145
|
-
|
195
|
+
```ruby
|
196
|
+
>> distance_of_time_in_words(Time.now, Time.now + 1.hour + 1.minute + 1.second, true, last_word_connector: ', finally ')
|
197
|
+
=> "1 hour, 1 minute, finally 1 second"
|
198
|
+
```
|
146
199
|
|
147
200
|
## distance\_of\_time
|
148
201
|
|
149
202
|
If you have simply a number of seconds you can get the "stringified" version of this by using `distance_of_time`:
|
150
203
|
|
151
|
-
|
152
|
-
|
204
|
+
```ruby
|
205
|
+
>> distance_of_time(300)
|
206
|
+
=> "5 minutes"
|
207
|
+
```
|
153
208
|
|
154
209
|
## distance\_of\_time\_in\_words\_hash
|
155
210
|
|
156
211
|
Don't like any format you're given? That's cool too! Here, have an indifferent hash version:
|
157
212
|
|
158
|
-
|
159
|
-
|
213
|
+
```ruby
|
214
|
+
>> distance_of_time_in_words_hash(Time.now, Time.now + 1.year + 2.months + 3.weeks + 4.days + 5.hours + 6.minutes + 7.seconds)
|
215
|
+
=> { days: 4, weeks: 3, seconds: 7, minutes: 6, years: 1, hours: 5, months: 2 }
|
216
|
+
```
|
160
217
|
|
161
218
|
Indifferent means that you can access all keys by their `String` or `Symbol` version.
|
162
219
|
|
163
220
|
## distance\_of\_time\_in\_percent
|
164
221
|
|
165
|
-
|
222
|
+
This method is only available with Rails ActionView.
|
166
223
|
|
167
|
-
|
224
|
+
If you want to calculate a distance of time in percent, use `distance_of_time_in_percent`. The first argument is the beginning time, the second argument the "current" time and the third argument is the end time.
|
168
225
|
|
226
|
+
```ruby
|
227
|
+
>> distance_of_time_in_percent("04-12-2009".to_time, "29-01-2010".to_time, "04-12-2010".to_time)
|
228
|
+
=> '15%'
|
229
|
+
```
|
230
|
+
|
231
|
+
This method takes the same options as [`number_with_precision`](http://api.rubyonrails.org/classes/ActionView/Helpers/NumberHelper.html#method-i-number_with_precision).
|
232
|
+
|
233
|
+
```ruby
|
234
|
+
>> distance_of_time_in_percent("04-12-2009".to_time, "29-01-2010".to_time, "04-12-2010".to_time, precision: 1)
|
235
|
+
=> '15.3%'
|
236
|
+
```
|
169
237
|
|
170
238
|
## Contributors
|
171
239
|
|
@@ -173,3 +241,4 @@ If you want to calculate a distance of time in percent, use `distance_of_time_in
|
|
173
241
|
* [Derander](http://github.com/derander) - correct Spanish translations
|
174
242
|
* [DBA](http://github.com/dba) - commits leading up to the 0.7 release
|
175
243
|
* [Sija](http://github.com/Sija) - rails 4 support, v2.0 release
|
244
|
+
* [dblock](http://github.com/dblock) - Ruby w/o Rails support
|
data/Rakefile
CHANGED
data/dotiw.gemspec
CHANGED
@@ -1,37 +1,35 @@
|
|
1
|
-
#
|
2
|
-
# -*- encoding: utf-8 -*-
|
1
|
+
# frozen_string_literal: true
|
3
2
|
|
4
|
-
|
3
|
+
$LOAD_PATH.push File.expand_path('lib', __dir__)
|
5
4
|
require 'dotiw/version'
|
6
5
|
|
7
6
|
Gem::Specification.new do |s|
|
8
7
|
s.name = 'dotiw'
|
9
8
|
s.version = DOTIW::VERSION
|
10
|
-
s.licenses = [
|
9
|
+
s.licenses = ['MIT']
|
11
10
|
|
12
11
|
s.authors = ["Ryan Bigg", "Lauran Jansen"]
|
13
|
-
s.date = %q{2016-03-08}
|
14
12
|
s.description = "dotiw is a gem for Rails that overrides the
|
15
13
|
default distance_of_time_in_words and provides
|
16
14
|
a more accurate output. Do you crave accuracy
|
17
15
|
down to the second? So do I. That's why I made
|
18
16
|
this gem. - Ryan"
|
19
|
-
s.summary =
|
20
|
-
s.email = [
|
21
|
-
s.homepage =
|
17
|
+
s.summary = 'Better distance_of_time_in_words for Rails'
|
18
|
+
s.email = ['radarlistener@gmail.com', 'github@lauranjansen.com']
|
19
|
+
s.homepage = 'https://github.com/radar/distance_of_time_in_words'
|
22
20
|
|
23
|
-
s.add_dependency
|
24
|
-
s.add_dependency
|
21
|
+
s.add_dependency 'i18n'
|
22
|
+
s.add_dependency 'activesupport'
|
25
23
|
|
26
|
-
s.add_development_dependency
|
27
|
-
s.add_development_dependency
|
28
|
-
s.add_development_dependency
|
29
|
-
s.add_development_dependency
|
30
|
-
s.add_development_dependency
|
31
|
-
s.add_development_dependency
|
24
|
+
s.add_development_dependency 'appraisal'
|
25
|
+
s.add_development_dependency 'bundler'
|
26
|
+
s.add_development_dependency 'pry'
|
27
|
+
s.add_development_dependency 'rake'
|
28
|
+
s.add_development_dependency 'rspec', '~> 3.0'
|
29
|
+
s.add_development_dependency 'tzinfo', '~> 1.2.7'
|
32
30
|
|
33
31
|
s.files = `git ls-files`.split("\n")
|
34
32
|
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
35
|
-
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
36
|
-
s.require_paths = [
|
33
|
+
s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
|
34
|
+
s.require_paths = ['lib']
|
37
35
|
end
|