attributer 0.0.1 → 0.1.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.
- data/.travis.yml +2 -1
- data/CONTRIBUTING.md +2 -2
- data/Guardfile +1 -1
- data/README.md +12 -2
- data/lib/attributer/version.rb +1 -1
- metadata +3 -3
data/.travis.yml
CHANGED
data/CONTRIBUTING.md
CHANGED
@@ -1,8 +1,8 @@
|
|
1
|
-
# Contributing to
|
1
|
+
# Contributing to attributer
|
2
2
|
|
3
3
|
1. Fork it
|
4
4
|
2. Create your feature branch (`git checkout -b my-new-feature`)
|
5
5
|
3. Commit your changes (`git commit -am 'Added some feature'`)
|
6
|
-
4. Make sure all tests
|
6
|
+
4. Make sure all tests pass!
|
7
7
|
5. Push to the branch (`git push origin my-new-feature`)
|
8
8
|
6. Create new Pull Request
|
data/Guardfile
CHANGED
data/README.md
CHANGED
@@ -11,9 +11,13 @@ Useful for example as a callback with WYSIWYG editors that don't automatically a
|
|
11
11
|
or CMS posts with img tag attributes for speed and standarts compliance.
|
12
12
|
|
13
13
|
[](http://travis-ci.org/tarakanbg/attributer)
|
14
|
-
[](https://codeclimate.com/github/tarakanbg/attributer)
|
15
14
|
[](https://gemnasium.com/tarakanbg/attributer)
|
16
15
|
[](http://badge.fury.io/rb/attributer)
|
16
|
+
[](https://codeclimate.com/github/tarakanbg/attributer)
|
17
|
+
|
18
|
+
## Requirements
|
19
|
+
|
20
|
+
[Ruby 1.9.3](http://www.ruby-lang.org/en/downloads/) or higher | **Supports Ruby 2.0!**
|
17
21
|
|
18
22
|
## Installation
|
19
23
|
|
@@ -112,6 +116,12 @@ html.image_attributes(:domain => "http://my-domain.com") # =>
|
|
112
116
|
# </div>
|
113
117
|
```
|
114
118
|
|
119
|
+
## Changelog
|
120
|
+
|
121
|
+
### v. 0.1.0 - 1 March 2013
|
122
|
+
|
123
|
+
* Ruby 2.0 compatibility
|
124
|
+
|
115
125
|
## Contributing
|
116
126
|
|
117
127
|
1. Fork it
|
@@ -130,4 +140,4 @@ Copyright © 2013 [Svilen Vassilev](http://svilen.rubystudio.net)
|
|
130
140
|
[](http://coderwall.com/svilenv)
|
131
141
|
[](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=5FR7AQA4PLD8A)
|
132
142
|
|
133
|
-
Released under the [MIT LICENSE](https://github.com/tarakanbg/attributer/blob/master/LICENSE.txt)
|
143
|
+
Released under the [MIT LICENSE](https://github.com/tarakanbg/attributer/blob/master/LICENSE.txt)
|
data/lib/attributer/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: attributer
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0
|
4
|
+
version: 0.1.0
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-01
|
12
|
+
date: 2013-03-01 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rspec
|
@@ -168,7 +168,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
168
168
|
version: '0'
|
169
169
|
requirements: []
|
170
170
|
rubyforge_project:
|
171
|
-
rubygems_version: 1.8.
|
171
|
+
rubygems_version: 1.8.25
|
172
172
|
signing_key:
|
173
173
|
specification_version: 3
|
174
174
|
summary: Ruby gem for adding width and height attributes to image tags within HTML
|